/* ========================================
   SEED GLOBAL EDUCATION - MASTER STYLESHEET
   Works alongside Bootstrap 5.3
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & THEME CONFIGURATION
   ======================================== */
:root {
  /* Brand Colors */
  --primary-blue: rgb(32, 135, 203);
  --primary-orange: #e98039;
  --accent-gold: #ffd700;
  --accent-gold-dark: #ffa500;

  /* Semantic Colors */
  --light-blue: #e8f0fe;
  --light-orange: #fff4ec;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --gray-light: #f8f9fa;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  --gradient-light: linear-gradient(
    135deg,
    var(--light-blue) 0%,
    var(--light-orange) 100%
  );
  --gradient-gold: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--accent-gold-dark)
  );
  --gradient-premium: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--accent-gold-dark),
    var(--primary-orange)
  );

  /* Shadows */
  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.2);
  --shadow-colored: 0 10px 30px rgba(32, 135, 203, 0.3);
  --shadow-glow: 0 0 30px rgba(79, 139, 255, 0.4),
    0 0 60px rgba(79, 139, 255, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-2xl: 40px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-display: "Playfair Display", serif;

  /* New Variables MC */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(148, 163, 184, 0.1);
  /* Modern Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
}

/* Dark Theme */
[data-theme="dark"] {
  --primary-blue: #3d7dc7;
  --primary-orange: #ff9a5c;
  --light-blue: #1a2332;
  --light-orange: #2a1f1a;
  --text-dark: #f0f0f0;
  --text-light: #b8bcc8;
  --white: #0f1419;
  --gray-light: #1a1f2e;
  --bg-dark: #0a0e17;
  --card-bg: #1a1f2e;
  --border-color: #2a3441;
  --glass-bg: rgba(15, 23, 42, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

* {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

[data-theme="dark"] body {
  background-color: var(--bg-dark);
}

/* ========================================
   2. GLASSMORPHIC COMPONENTS
   ======================================== */
.seed-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .seed-glass {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.seed-glass-hover:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   3. BUTTONS - SEED SPECIFIC
   ======================================== */
.seed-btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Primary Gradient Button */
.seed-btn-primary {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: var(--shadow-colored);
}

.seed-btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.seed-btn-primary:hover::before {
  left: 100%;
}

.seed-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(32, 135, 203, 0.4);
  color: white;
}

/* Premium Button */
.seed-btn-premium {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.seed-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #1a1a1a;
}

/* Hero CTA Button */
.seed-btn-hero {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
}

/* ========================================
   4. CARDS & CONTAINERS
   ======================================== */

/* Base Card */
.seed-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

[data-theme="dark"] .seed-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

.seed-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* University Card */
.seed-uni-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.seed-uni-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(233, 128, 57, 0.2);
}

/* Premium University Card */
.seed-premium-card {
  background: white;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.seed-premium-card.featured {
  grid-column: span 2;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.seed-premium-card.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-premium);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ========================================
   5. BADGES & RIBBONS
   ======================================== */

/* Exclusive Ribbon */
.seed-ribbon {
  position: absolute;
  top: 30px;
  right: -50px;
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Floating Badge */
.seed-badge-floating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md) !important;
  animation: pulse 3s infinite !important;
}

[data-theme="dark"] .seed-badge-floating {
  background: rgba(0, 0, 0, 0.5) !important;
}

/* Premium Badge */
.seed-badge-premium {
  background: var(--gradient-gold);
  color: #1a1a1a;
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* ========================================
   6. HERO COMPONENTS
   ======================================== */

/* Hero Section Base */
.seed-hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

[data-theme="dark"] .seed-hero {
  background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
}

/* Floating Elements */
.seed-floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatAnimation 20s infinite ease-in-out;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Hero Title Styles */
.seed-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.seed-title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.seed-title-gradient::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: expandWidth 1.5s ease-out;
}

@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Feature Pills */
.seed-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(32, 135, 203, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  animation: slideIn 0.5s ease-out;
}

[data-theme="dark"] .seed-pill {
  background: rgba(32, 135, 203, 0.2);
}

/* ========================================
   7. SECTION COMPONENTS
   ======================================== */

/* Section Title */
.seed-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.seed-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

/* Featured Section */
.seed-featured-section {
  background: var(--gradient-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 78, 138, 0.1);
}

.seed-featured-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* ========================================
   8. STAT COMPONENTS
   ======================================== */

/* Stat Card */
.seed-stat-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.seed-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.seed-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.seed-stat-label {
  color: var(--text-light);
  font-weight: 500;
}

/* Mini Stat Card */
.seed-stat-mini {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-base);
}

.seed-stat-mini:hover {
  transform: translateY(-5px);
  border: 2px solid var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.seed-stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(32, 135, 203, 0.1),
    rgba(233, 128, 57, 0.1)
  );
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   9. COUNTDOWN COMPONENTS
   ======================================== */
.seed-countdown-box {
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--primary-blue);
}

.seed-countdown-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 5px;
}

.seed-countdown-label {
  font-size: 0.8rem;
  color: var(--primary-orange);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ========================================
   10. TESTIMONIAL COMPONENTS
   ======================================== */

/* Video Testimonial Card */
.seed-testimonial-video {
  width: 380px;
  height: 610px;
  cursor: pointer;
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.seed-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.seed-play-btn:hover {
  background: var(--primary-orange);
  transform: scale(1.1);
}

/* Text Testimonial Card */
.seed-testimonial-text {
  padding: 30px;
  height: 295px;
  position: relative;
}

.seed-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--primary-orange);
  opacity: 0.2;
}

/* ========================================
   11. FORM COMPONENTS
   ======================================== */

/* Newsletter Form */
.seed-newsletter-input {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
}

.seed-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.seed-newsletter-input:focus {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  outline: none;
}

/* ========================================
   12. BACKGROUND PATTERNS
   ======================================== */

/* Animated Grid */
.seed-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(32, 135, 203, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(32, 135, 203, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Gradient Orbs */
.seed-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

/* Diagonal Stripes */
.seed-bg-stripe {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue),
    transparent
  );
  transform: rotate(-45deg);
  opacity: 0.1;
}

/* ========================================
   14. CAROUSEL COMPONENTS
   ======================================== */

/* Carousel Navigation Button */
.seed-carousel-btn {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(32, 135, 203, 0.3);
  transition: all var(--transition-base);
  color: white;
}

.seed-carousel-btn:active {
  transform: scale(0.95);
}

/* Carousel Dots */
.seed-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.seed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  cursor: pointer;
}

.seed-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-blue);
}

/* ========================================
   15. SCHOLARSHIP COMPONENTS
   ======================================== */

/* Winner Ticker */
.seed-winner-ticker {
  overflow: hidden;
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.seed-winner-item {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  min-width: 350px;
}

.seed-winner-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-blue);
  margin-right: 15px;
}

.seed-winner-badge {
  width: 80px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

/* ========================================
   16. SERVICE FLOW COMPONENTS
   ======================================== */

/* Flow Line */
.seed-flow-line {
  position: absolute;
  width: 6px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(32, 135, 203, 0.5);
  transition: height var(--transition-base);
}

/* Service Card */
.seed-service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.seed-service-card.active {
  border: 2px solid var(--primary-orange);
  box-shadow: 0 10px 30px rgba(233, 128, 57, 0.3);
}

/* Checkpoint Dot */
.seed-checkpoint {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border: 3px solid #e0e0e0;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.seed-checkpoint.active {
  background: var(--gradient-primary);
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(32, 135, 203, 0.6);
}

/* ========================================
   17. UTILITY ANIMATIONS
   ======================================== */

@keyframes seed-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes seed-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes seed-slide-in {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes seed-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Animation Classes */
.seed-animate-pulse {
  animation: seed-pulse 3s infinite;
}
.seed-animate-float {
  animation: seed-float 4s ease-in-out infinite;
}
.seed-animate-slide-in {
  animation: seed-slide-in 0.5s ease-out;
}
.seed-animate-bounce {
  animation: seed-bounce 2s infinite;
}

/* ========================================
   19. RESPONSIVE HELPERS
   ======================================== */

/* Mobile specific adjustments */
@media (max-width: 768px) {
  .seed-hero-title {
    font-size: 2.5rem;
  }

  .seed-section-title {
    font-size: 1.875rem;
  }

  .seed-card {
    margin-bottom: 1.5rem;
  }

  .seed-testimonial-video {
    width: 320px;
    height: 500px;
  }

  .seed-flow-line {
    width: 4px;
    left: 30px;
  }
}

/* ========================================
   20. STATE MODIFIERS
   ======================================== */

.seed-loading {
  opacity: 0.6;
  pointer-events: none;
}

.seed-active {
  border-color: var(--primary-orange) !important;
}

.seed-featured {
  border: 2px solid var(--gradient-gold);
}

.seed-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   21. EVENT COMPONENTS - IN-PERSON EVENTS
   ======================================== */

/* Country Section Container */
.seed-country-section {
  margin-bottom: 2rem;
}

/* Country Header Card */
.seed-country-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.seed-country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Country Image Container */
.seed-country-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.seed-country-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Country Overlay */
.seed-country-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.seed-country-name {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Event Card - Full Featured */
.seed-event-card-full {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
}

[data-theme="dark"] .seed-event-card-full {
  background: var(--card-bg);
  border-color: var(--border-color);
}

.seed-event-card-full:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Event Image Wrapper */
.seed-event-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.seed-event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.seed-event-card-full:hover .seed-event-image-wrapper img {
  transform: scale(1.1);
}

/* Event Type Badge */
.seed-event-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.seed-event-type-badge.stem {
  background: var(--primary-orange);
}

.seed-event-type-badge.business {
  background: var(--primary-blue);
}

/* Event Details Section */
.seed-event-details {
  background: var(--light-blue);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

[data-theme="dark"] .seed-event-details {
  background: rgba(26, 35, 50, 0.5);
}

/* Event Detail Items */
.seed-detail-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.seed-detail-item:last-child {
  margin-bottom: 0;
}

.seed-detail-item i {
  font-size: 1.1rem;
  width: 20px;
  color: var(--primary-blue);
  margin-right: 10px;
}

/* Event Content Padding */
.seed-event-content {
  padding: 25px;
}

/* University Tags for Events */
.seed-event-uni-tags {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .seed-event-uni-tags {
  border-bottom-color: var(--border-color);
}

.seed-uni-tag-label {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

.seed-uni-tag-logo {
  height: 60px;
  width: auto;
  opacity: 1;
  transition: all var(--transition-base);
}

.seed-uni-tag-logo:hover {
  transform: scale(1.1);
}

/* Small University Tags */
.seed-event-uni-tags-small {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.seed-uni-tag-logo-small {
  height: 45px;
  width: auto;
  opacity: 1;
  transition: all var(--transition-base);
}

/* Featured Event Section */
.seed-featured-event {
  background: var(--gradient-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 78, 138, 0.1);
}

[data-theme="dark"] .seed-featured-event {
  background: linear-gradient(135deg, #1a2332 0%, #2a1f1a 100%);
}

.seed-featured-event::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

/* Event Badge */
.seed-event-badge-featured {
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
}

/* Mobile Event Card */
.seed-event-card-mobile {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

[data-theme="dark"] .seed-event-card-mobile {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

/* Country Events Container */
.seed-country-events {
  transition: all var(--transition-base);
  margin-top: 2rem;
}

/* Event Registration Button */
.seed-event-register-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  width: 100%;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-colored);
}

.seed-event-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(32, 135, 203, 0.4);
}

/* Mobile Specific Event Styles */
@media (max-width: 768px) {
  .seed-country-name {
    font-size: 2rem;
  }

  .seed-event-image-wrapper {
    height: 180px;
  }

  .seed-event-details {
    padding: 12px;
  }

  .seed-detail-item {
    font-size: 0.85rem;
  }

  .seed-event-content {
    padding: 20px;
  }

  .seed-uni-tag-logo {
    height: 40px;
  }

  .seed-uni-tag-logo-small {
    height: 35px;
  }
}
