/* ===== ICO2026 Page Sections ===== */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(93, 120, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo {
  margin-bottom: 30px;
}

.hero-logo-img {
  max-width: 380px;
  height: auto;
}

.hero-logo-svg {
  max-width: 420px;
  height: auto;
}

/* Hero Highlight Banner */
.hero-highlight {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero-highlight-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00D9FF;
  padding: 10px 28px;
  border: 1px solid rgba(0, 217, 255, 0.4);
  border-radius: 4px;
  background: rgba(0, 217, 255, 0.06);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 30px rgba(0, 217, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.15), inset 0 0 15px rgba(0, 217, 255, 0.05);
  animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.15), inset 0 0 15px rgba(0, 217, 255, 0.05);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 30px rgba(0, 217, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.08);
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8), 0 0 40px rgba(0, 217, 255, 0.4);
  }
}

.hero-tagline {
  font-size: 1.4rem;
  color: var(--ico-text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(90deg, #5D78FF 0%, #00D9FF 50%, #D4263C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.hero-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--ico-text-primary);
}

.hero-info-icon {
  font-size: 1.3rem;
}

.hero-info-divider {
  width: 1px;
  height: 24px;
  background: var(--ico-border-subtle);
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ico-text-primary);
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 90px;
  display: block;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--ico-text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ico-text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--ico-text-primary);
  border-color: var(--ico-border-subtle);
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ico-text-muted);
  font-size: 0.8rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--ico-text-muted);
  border-bottom: 2px solid var(--ico-text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* ============================================
   GUIDE BANNER (Announcement)
   ============================================ */
.guide-banner {
  background: linear-gradient(135deg, rgba(93, 120, 255, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
  border-top: 1px solid var(--ico-primary);
  border-bottom: 1px solid var(--ico-primary);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.guide-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ico-gradient-primary);
  box-shadow: 0 0 20px var(--ico-primary-glow);
}

/* RED THEME Guide Banner */
.guide-banner-red {
  background: linear-gradient(135deg, rgba(166, 25, 46, 0.25) 0%, rgba(212, 38, 60, 0.15) 100%);
  border-top: 1px solid var(--mq-red);
  border-bottom: 1px solid var(--mq-red);
}

.guide-banner-red::before {
  background: linear-gradient(90deg, transparent, var(--mq-red), var(--mq-red-light), var(--mq-red), transparent);
  box-shadow: 0 0 30px var(--mq-red-glow);
}

.guide-banner-red::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mq-red), var(--mq-red-light), var(--mq-red), transparent);
  box-shadow: 0 0 30px var(--mq-red-glow);
}

.guide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.guide-icon {
  width: 60px;
  height: 60px;
  background: rgba(93, 120, 255, 0.2);
  border: 1px solid var(--ico-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 2s ease-in-out infinite;
}

.guide-icon-red {
  background: rgba(166, 25, 46, 0.3);
  border: 1px solid var(--mq-red);
  animation: pulse-glow-red 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px var(--ico-primary-glow); }
  50% { box-shadow: 0 0 25px var(--ico-primary-glow), 0 0 40px var(--ico-primary-glow); }
}

@keyframes pulse-glow-red {
  0%, 100% { box-shadow: 0 0 15px var(--mq-red-glow); }
  50% { box-shadow: 0 0 30px var(--mq-red-glow), 0 0 50px var(--mq-red-glow); }
}

.guide-icon .neon-icon-xl {
  filter: drop-shadow(0 0 10px currentColor);
}

.guide-text {
  text-align: left;
}

.guide-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ico-text-primary);
  margin-bottom: 5px;
}

.guide-banner-red .guide-text h3 {
  color: var(--mq-red-light);
  text-shadow: 0 0 20px var(--mq-red-glow);
}

.guide-text p {
  color: var(--ico-text-secondary);
  font-size: 0.9rem;
}

/* Red Button */
.btn-red {
  background: linear-gradient(135deg, var(--mq-red) 0%, var(--mq-red-light) 100%);
  color: white;
  border: none;
}

.btn-red:hover {
  box-shadow: 0 0 30px var(--mq-red-glow);
  transform: translateY(-3px);
  color: white;
}

@media (max-width: 768px) {
  .guide-content {
    flex-direction: column;
    text-align: center;
  }

  .guide-text {
    text-align: center;
  }

  .guide-text h3 {
    font-size: 1rem;
  }
}

/* ============================================
   PARTNERS BAR (Homepage)
   ============================================ */
.partners-bar {
  background: var(--ico-bg-medium);
  padding: 30px 0;
  border-top: 1px solid var(--ico-border-subtle);
  border-bottom: 1px solid var(--ico-border-subtle);
}

.partners-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners-bar-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ico-text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.partners-bar-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.partners-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-normal);
}

.partners-bar-item:hover {
  transform: translateY(-2px);
}

.partners-bar-item img {
  height: 40px;
  width: auto;
}

.partners-bar-item .mq-logo-wrap {
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
}

.partners-bar-item .mq-logo-wrap img {
  height: 32px;
}

.partners-bar-item .asd-logo-wrap img {
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
}

.partners-bar-item:hover .asd-logo-wrap img {
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
}

.partners-bar-item-label {
  font-size: 0.65rem;
  color: var(--ico-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partners-bar-divider {
  width: 1px;
  height: 40px;
  background: var(--ico-border-subtle);
}

@media (max-width: 768px) {
  .partners-bar-content {
    flex-direction: column;
    gap: 20px;
  }

  .partners-bar-logos {
    gap: 30px;
  }
}

/* ============================================
   SPECIAL PARTNERS SECTION (Sponsors Page)
   ============================================ */
.special-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.special-partner-card {
  background: var(--ico-bg-panel);
  border: 2px solid var(--ico-border-subtle);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.special-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.special-partner-card.host-card {
  border-color: rgba(166, 25, 46, 0.3);
}

.special-partner-card.host-card::before {
  background: linear-gradient(90deg, var(--mq-red) 0%, var(--mq-red-light) 100%);
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.special-partner-card.host-card:hover {
  border-color: var(--mq-red);
  box-shadow: 0 5px 30px var(--mq-red-glow);
}

.special-partner-card.govt-card {
  border-color: rgba(93, 120, 255, 0.3);
}

.special-partner-card.govt-card::before {
  background: var(--ico-gradient-primary);
  box-shadow: 0 0 20px var(--ico-primary-glow);
}

.special-partner-card.govt-card:hover {
  border-color: var(--ico-primary);
  box-shadow: 0 5px 30px var(--ico-primary-glow);
}

.special-partner-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.host-card .special-partner-badge {
  background: rgba(166, 25, 46, 0.2);
  color: var(--mq-red-light);
  border: 1px solid rgba(166, 25, 46, 0.4);
}

.govt-card .special-partner-badge {
  background: rgba(93, 120, 255, 0.15);
  color: var(--ico-primary-light);
  border: 1px solid rgba(93, 120, 255, 0.3);
}

.special-partner-logo {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-partner-logo .mq-logo-wrap {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.special-partner-logo .mq-logo-wrap img {
  height: 60px;
  width: auto;
}

.special-partner-logo .asd-logo-wrap img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, 0.5));
}

.special-partner-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ico-text-primary);
  margin-bottom: 10px;
}

.special-partner-desc {
  font-size: 0.9rem;
  color: var(--ico-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.special-partner-link {
  font-size: 0.9rem;
  font-weight: 500;
}

.host-card .special-partner-link {
  color: var(--mq-red-light);
}

.host-card .special-partner-link:hover {
  color: var(--mq-red);
}

.govt-card .special-partner-link {
  color: var(--ico-primary-light);
}

.govt-card .special-partner-link:hover {
  color: var(--ico-primary);
}

/* Founder Card (NUS - Cyan accent) */
.special-partner-card.founder-card {
  border-color: rgba(0, 217, 255, 0.3);
}

.special-partner-card.founder-card::before {
  background: linear-gradient(90deg, var(--ico-accent) 0%, #00B4D8 100%);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.special-partner-card.founder-card:hover {
  border-color: var(--ico-accent);
  box-shadow: 0 5px 30px rgba(0, 217, 255, 0.3);
}

.founder-card .special-partner-badge {
  background: rgba(0, 217, 255, 0.15);
  color: var(--ico-accent);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.founder-card .special-partner-link {
  color: var(--ico-accent);
}

.founder-card .special-partner-link:hover {
  color: #00B4D8;
}

/* NUS Logo Text Fallback */
.nus-logo-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ico-accent);
  letter-spacing: 6px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.2);
}

/* ============================================
   INVITED ORGANISATIONS (Sponsors Page)
   ============================================ */
.invited-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  color: var(--ico-text-secondary);
  line-height: 1.7;
}

.invited-category {
  margin-bottom: 50px;
}

.invited-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ico-border-subtle);
  position: relative;
}

.invited-category-header::before {
  content: '';
  width: 4px;
  height: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.invited-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ico-text-primary);
  letter-spacing: 1px;
  padding-left: 16px;
  flex: 1;
}

.invited-category-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ico-text-muted);
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid var(--ico-border-subtle);
  border-radius: 20px;
}

/* Category color accents */
.cat-security .invited-category-header::before { background: var(--ico-cat-security); }
.cat-ctf .invited-category-header::before { background: var(--ico-cat-ctf); }
.cat-ai .invited-category-header::before { background: var(--ico-cat-ai); }
.cat-academic .invited-category-header::before { background: var(--ico-cat-academic); }

.cat-security .invited-category-header { border-bottom-color: rgba(27, 42, 74, 0.3); }
.cat-ctf .invited-category-header { border-bottom-color: rgba(42, 42, 42, 0.3); }
.cat-ai .invited-category-header { border-bottom-color: rgba(107, 63, 160, 0.3); }
.cat-academic .invited-category-header { border-bottom-color: rgba(13, 115, 119, 0.3); }

/* Invited grids */
.invited-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.invited-grid-6col {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

/* Invited tile */
.invited-tile {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.invited-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ico-primary);
  box-shadow: 0 5px 20px var(--ico-primary-glow);
}

.invited-tile-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ico-text-secondary);
  line-height: 1.3;
}

/* Enterprise CTA block */
.invited-enterprise-block {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.invited-enterprise-block p {
  color: var(--ico-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 25px;
}

/* ============================================
   BENEFITS GRID (Sponsors Page)
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  border-color: var(--ico-primary);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ico-text-primary);
}

.benefit-text {
  color: var(--ico-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .special-partners {
    grid-template-columns: 1fr;
  }

  .invited-grid-6col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .special-partners {
    grid-template-columns: 1fr;
  }

  .invited-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .invited-grid-6col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   ANNOUNCEMENTS
   ============================================ */
.announcements {
  background: var(--ico-bg-dark);
  padding: 40px 0;
  border-bottom: 1px solid var(--ico-border-subtle);
}

.announcements-header {
  margin-bottom: 20px;
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.announcement-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
  transition: var(--transition-normal);
}

.announcement-card:hover {
  border-color: var(--ico-primary);
  box-shadow: 0 0 20px rgba(93, 120, 255, 0.1);
}

.announcement-card.announcement-new {
  border-color: var(--ico-accent);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, var(--ico-bg-panel) 100%);
}

.announcement-badge {
  position: absolute;
  top: -8px;
  right: 20px;
  background: var(--ico-accent);
  color: var(--ico-bg-darkest);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.announcement-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 10px;
  background: rgba(93, 120, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.announcement-day {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ico-primary);
  line-height: 1;
}

.announcement-month {
  font-size: 0.7rem;
  color: var(--ico-text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.announcement-content {
  flex: 1;
}

.announcement-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ico-text-primary);
  margin-bottom: 8px;
}

.announcement-text {
  font-size: 0.9rem;
  color: var(--ico-text-secondary);
  line-height: 1.6;
}

.announcement-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 6px 18px 6px 14px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.12) 0%, rgba(93, 120, 255, 0.12) 100%);
  border: 1px solid rgba(0, 217, 255, 0.4);
  border-radius: 20px;
  color: var(--ico-accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.announcement-read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.15), transparent);
  animation: readMoreShimmer 2.5s ease-in-out infinite;
}

.announcement-read-more svg {
  transition: transform 0.3s ease;
}

.announcement-read-more:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.25) 0%, rgba(93, 120, 255, 0.25) 100%);
  border-color: var(--ico-accent);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.3), inset 0 0 12px rgba(0, 217, 255, 0.08);
  color: #fff;
  transform: translateX(3px);
}

.announcement-read-more:hover svg {
  transform: translateX(4px);
}

@keyframes readMoreShimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .announcement-card {
    flex-direction: column;
    gap: 15px;
  }

  .announcement-date {
    flex-direction: row;
    gap: 8px;
    width: fit-content;
  }

  .announcement-month {
    margin-top: 0;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--ico-bg-medium);
  padding: 40px 0;
  border-top: 1px solid var(--ico-border-subtle);
  border-bottom: 1px solid var(--ico-border-subtle);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ico-primary);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--ico-border-subtle);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
}

.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ico-primary);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--ico-text-secondary);
  max-width: 600px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--ico-text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--ico-text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 25px;
  transition: var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--ico-primary);
  transform: translateX(5px);
}

.feature-icon {
  margin-bottom: 15px;
  height: 48px;
  display: flex;
  align-items: center;
}

.feature-icon .neon-icon-lg {
  filter: drop-shadow(0 0 10px currentColor);
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ico-text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--ico-text-secondary);
  line-height: 1.6;
}

/* Founder Quote (inside About) */
.founder-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ico-text-muted);
  line-height: 1.7;
  margin: 25px 0 10px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 215, 0, 0.2);
}

.founder-letter-link {
  font-size: 0.8rem;
  color: var(--ico-text-muted);
  opacity: 0.6;
  transition: var(--transition-fast);
}

.founder-letter-link:hover {
  opacity: 1;
  color: var(--ico-text-secondary);
}

/* Founder Photo (right column) */
.about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-photo-img {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.about-photo-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ico-gold);
}

.founder-title {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
}

/* ============================================
   CSP 2.0 BANNER
   ============================================ */
.csp-banner {
  background: var(--ico-bg-medium);
  border-top: 1px solid var(--ico-border-subtle);
  border-bottom: 1px solid var(--ico-border-subtle);
  padding: 30px 0;
}

.csp-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.csp-flags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.csp-flag {
  width: 36px;
  height: 27px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.csp-ampersand {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
}

.csp-text h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ico-text-primary);
  margin-bottom: 6px;
}

.csp-text p {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
  line-height: 1.6;
}

.csp-text a {
  color: var(--ico-primary-light);
  font-weight: 500;
}

.csp-text a:hover {
  color: var(--ico-primary);
}

@media (max-width: 768px) {
  .csp-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ============================================
   PARTICIPATE SECTION
   ============================================ */
.participate {
  background: var(--ico-bg-medium);
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--ico-primary);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--ico-primary);
  transform: scale(1.02);
  box-shadow: var(--ico-shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.pricing-ribbon {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--ico-gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing-header {
  padding: 30px 25px 20px;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: var(--ico-gradient-primary);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-period {
  color: var(--ico-text-muted);
  font-size: 0.9rem;
}

.pricing-body {
  padding: 0 25px 25px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--ico-border-subtle);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row span:first-child {
  color: var(--ico-text-secondary);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ico-text-primary);
}

.pricing-footer {
  padding: 20px 25px;
  background: rgba(93, 120, 255, 0.05);
  text-align: center;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.participate-note {
  text-align: center;
  color: var(--ico-text-secondary);
}

.participate-note p {
  margin-bottom: 15px;
}

.link-arrow {
  color: var(--ico-primary);
  font-weight: 500;
}

.link-arrow:hover {
  color: var(--ico-primary-light);
}

/* ============================================
   VENUE SECTION (Red Team / MQ Theme)
   ============================================ */
.venue {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--ico-bg-medium) 0%, rgba(166, 25, 46, 0.08) 50%, rgba(166, 25, 46, 0.15) 100%);
  position: relative;
  overflow: hidden;
}

.venue::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mq-red), transparent);
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.venue .section-tag {
  color: var(--mq-red-light);
}

.venue .section-title {
  background: linear-gradient(135deg, #ffffff 0%, var(--mq-red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.venue-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 30px 0;
}

.venue-logo-ico {
  height: 50px;
  width: auto;
}

.venue-logo-x {
  color: var(--ico-text-muted);
  font-size: 1.5rem;
}

.venue-logo-mq {
  height: 45px;
  width: auto;
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
}

.mq-logo-bg {
  background: white;
  padding: 6px 10px;
  border-radius: 6px;
}

.venue-text {
  color: var(--ico-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.venue-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.venue-stat-card {
  background: var(--ico-bg-panel);
  border: 1px solid rgba(166, 25, 46, 0.3);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: var(--transition-normal);
}

.venue-stat-card:hover {
  border-color: var(--mq-red);
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.venue-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mq-red-light);
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 0 10px var(--mq-red-glow);
}

.venue-stat-label {
  font-size: 0.8rem;
  color: var(--ico-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Red theme button for venue */
.venue .btn-outline {
  border-color: var(--mq-red);
  color: var(--mq-red-light);
}

.venue .btn-outline:hover {
  background: var(--mq-red);
  color: white;
  box-shadow: 0 0 20px var(--mq-red-glow);
}

/* CTF Red vs Blue Banner */
.ctf-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px;
  background: linear-gradient(90deg,
    rgba(93, 120, 255, 0.1) 0%,
    transparent 40%,
    transparent 60%,
    rgba(166, 25, 46, 0.1) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ctf-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.ctf-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.blue-team .ctf-label {
  color: var(--ico-primary);
  text-shadow: 0 0 10px var(--ico-primary-glow);
}

.red-team .ctf-label {
  color: var(--mq-red-light);
  text-shadow: 0 0 10px var(--mq-red-glow);
}

.ctf-logo {
  height: 60px;
  width: auto;
}

.ctf-logo-mq {
  background: white;
  padding: 8px 12px;
  border-radius: 8px;
  height: 60px;
}

.blue-team .ctf-logo {
  filter: drop-shadow(0 0 15px var(--ico-primary-glow));
}

.red-team .ctf-logo {
  filter: drop-shadow(0 0 15px var(--mq-red-glow));
}

.ctf-vs {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ico-text-muted);
  padding: 0 25px;
  text-shadow: 0 0 20px var(--ico-primary-glow);
}

/* ============================================
   COUNTRIES SECTION
   ============================================ */
.countries {
  padding: var(--section-padding);
  background: var(--ico-bg-medium);
}

.countries-showcase {
  text-align: center;
  margin: 50px 0;
}

.country-flags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.flag-item {
  font-size: 2.5rem;
  transition: transform var(--transition-fast);
}

.flag-item:hover {
  transform: scale(1.2);
}

.countries-more {
  color: var(--ico-text-muted);
  font-style: italic;
}

.countries-cta {
  text-align: center;
}

/* ============================================
   SPONSORS SHOWCASE (Homepage)
   ============================================ */
.sponsors-showcase-section {
  padding: var(--section-padding);
  background: var(--ico-bg-dark);
}

.showcase-tier {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-tier-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.showcase-tier-label.platinum { color: #E5E4E2; }
.showcase-tier-label.gold { color: var(--ico-gold); }

.showcase-tier-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.showcase-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--ico-primary-dark) 0%, var(--ico-bg-darkest) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(93, 120, 255, 0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--ico-text-secondary);
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ico-bg-darkest);
  border-top: 1px solid var(--ico-border-subtle);
  padding: 60px 0 30px;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {}

.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-tagline {
  color: var(--ico-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.footer-location {
  color: var(--ico-text-muted);
  font-size: 0.85rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--ico-text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--ico-text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ico-primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--ico-border-subtle);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ico-text-muted);
  font-size: 0.85rem;
}

.footer-partner {
  color: var(--ico-text-secondary);
}

.footer-organizer {
  color: var(--ico-accent);
  margin-top: 5px;
}

.footer-notice {
  margin-top: 15px;
  padding: 12px 15px;
  background: rgba(93, 120, 255, 0.05);
  border-left: 3px solid var(--ico-primary);
  border-radius: 0 6px 6px 0;
  font-size: 0.8rem;
  color: var(--ico-text-muted);
  line-height: 1.6;
}

.logo-download-link {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--ico-primary);
  border: 1px solid var(--ico-primary);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.logo-download-link:hover {
  background: var(--ico-primary);
  color: white;
}

/* ============================================
   SUB-PAGE HERO (shorter)
   ============================================ */
.hero-sub {
  min-height: 50vh;
  padding-top: 120px;
}

.hero-sub .hero-badge {
  display: inline-block;
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--ico-text-secondary);
  margin-bottom: 20px;
}

.hero-sub .hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-sub .hero-title .highlight {
  background: var(--ico-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub .hero-location {
  font-size: 1.2rem;
  color: var(--ico-text-secondary);
}

/* ============================================
   HOST PARTNER SECTION (for sub-pages)
   ============================================ */
.host-partner {
  background: var(--ico-bg-medium);
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partner-logo {
  max-height: 60px;
  width: auto;
}

.partner-divider .divider-x {
  color: var(--ico-text-muted);
  font-size: 1.2rem;
}

/* ============================================
   SCHEDULE / TIMELINE SECTION
   ============================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ico-primary) 0%, var(--ico-accent) 100%);
  box-shadow: 0 0 10px var(--ico-primary-glow);
}

.timeline-day {
  position: relative;
  margin-bottom: 30px;
  padding-left: 100px;
}

.timeline-marker {
  position: absolute;
  left: 38px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: var(--ico-bg-dark);
  border: 3px solid var(--ico-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--ico-primary-glow);
}

.timeline-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.timeline-card:hover {
  border-color: var(--ico-primary);
  box-shadow: var(--ico-shadow);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.timeline-header:hover {
  background: rgba(93, 120, 255, 0.05);
}

.timeline-date {
  display: flex;
  flex-direction: column;
}

.timeline-day-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--ico-primary);
  letter-spacing: 2px;
}

.timeline-day-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ico-text-primary);
  margin-top: 5px;
}

.timeline-expand {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ico-border-subtle);
  border-radius: 6px;
  color: var(--ico-text-muted);
  transition: var(--transition-fast);
}

.timeline-expand svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.timeline-card.expanded .timeline-expand svg {
  transform: rotate(180deg);
}

.timeline-card.expanded .timeline-expand {
  background: var(--ico-primary);
  color: white;
  border-color: var(--ico-primary);
}

.timeline-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.timeline-card.expanded .timeline-content {
  max-height: 500px;
}

.timeline-events {
  padding: 0 25px 25px;
  border-top: 1px solid var(--ico-border-subtle);
}

.timeline-event {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(93, 120, 255, 0.1);
}

.timeline-event:last-child {
  border-bottom: none;
}

.timeline-event-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 120, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.timeline-event-icon img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px currentColor);
}

.timeline-event-info {
  flex: 1;
}

.timeline-event-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ico-primary);
  margin-bottom: 3px;
}

.timeline-event-title {
  font-weight: 500;
  color: var(--ico-text-primary);
  font-size: 0.95rem;
}

.timeline-event-desc {
  font-size: 0.85rem;
  color: var(--ico-text-muted);
  margin-top: 3px;
}

/* Contest Day Special Styling */
.timeline-card.contest-day {
  border-color: rgba(166, 25, 46, 0.3);
}

.timeline-card.contest-day .timeline-day-num {
  color: var(--mq-red-light);
}

.timeline-card.contest-day:hover {
  border-color: var(--mq-red);
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.timeline-card.contest-day.expanded .timeline-expand {
  background: var(--mq-red);
  border-color: var(--mq-red);
}

/* Excursion Day Styling */
.timeline-card.excursion-day {
  border-color: rgba(0, 217, 255, 0.3);
}

.timeline-card.excursion-day .timeline-day-num {
  color: var(--ico-accent);
}

.timeline-card.excursion-day:hover {
  border-color: var(--ico-accent);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ============================================
   COMPETITION PAGE STYLES
   ============================================ */
.competition-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 50px 0;
}

.mode-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 16px;
  padding: 35px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.mode-card.attack::before {
  background: linear-gradient(90deg, var(--mq-red) 0%, transparent 100%);
  box-shadow: 0 0 20px var(--mq-red-glow);
}

.mode-card.defence::before {
  background: linear-gradient(90deg, var(--ico-primary) 0%, transparent 100%);
  box-shadow: 0 0 20px var(--ico-primary-glow);
}

.mode-card:hover {
  transform: translateY(-5px);
}

.mode-card.attack:hover {
  border-color: var(--mq-red);
  box-shadow: 0 5px 30px var(--mq-red-glow);
}

.mode-card.defence:hover {
  border-color: var(--ico-primary);
  box-shadow: 0 5px 30px var(--ico-primary-glow);
}

.mode-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.mode-card.attack .mode-icon {
  background: rgba(166, 25, 46, 0.15);
  border: 1px solid rgba(166, 25, 46, 0.3);
}

.mode-card.defence .mode-icon {
  background: rgba(93, 120, 255, 0.15);
  border: 1px solid rgba(93, 120, 255, 0.3);
}

.mode-icon img {
  width: 32px;
  height: 32px;
}

.mode-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mode-card.attack .mode-title {
  color: var(--mq-red-light);
}

.mode-card.defence .mode-title {
  color: var(--ico-primary-light);
}

.mode-desc {
  color: var(--ico-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.mode-features {
  list-style: none;
}

.mode-features li {
  padding: 8px 0;
  color: var(--ico-text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mode-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mode-card.attack .mode-features li::before {
  background: var(--mq-red-light);
  box-shadow: 0 0 8px var(--mq-red-glow);
}

.mode-card.defence .mode-features li::before {
  background: var(--ico-primary);
  box-shadow: 0 0 8px var(--ico-primary-glow);
}

/* Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.rule-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: var(--transition-normal);
}

.rule-card:hover {
  border-color: var(--ico-primary);
  transform: translateY(-3px);
}

.rule-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 120, 255, 0.1);
  border-radius: 10px;
}

.rule-icon img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px currentColor);
}

.rule-title {
  font-weight: 600;
  color: var(--ico-text-primary);
  margin-bottom: 8px;
}

.rule-text {
  font-size: 0.9rem;
  color: var(--ico-text-secondary);
  line-height: 1.6;
}

/* ============================================
   COMMITTEE PAGE STYLES
   ============================================ */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.member-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.member-card:hover {
  border-color: var(--ico-primary);
  box-shadow: var(--ico-shadow);
  transform: translateY(-5px);
}

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--ico-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 20px var(--ico-primary-glow);
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ico-text-primary);
  margin-bottom: 5px;
}

.member-role {
  font-size: 0.9rem;
  color: var(--ico-primary);
  margin-bottom: 15px;
}

.member-bio {
  font-size: 0.9rem;
  color: var(--ico-text-secondary);
  line-height: 1.6;
}

/* President Card Highlight */
.member-card.president {
  border-color: var(--ico-gold);
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.05) 0%, var(--ico-bg-panel) 100%);
}

.member-card.president .member-avatar {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.member-card.president:hover {
  box-shadow: 0 5px 30px rgba(255, 215, 0, 0.2);
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.faq-category-btn {
  padding: 10px 20px;
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 30px;
  color: var(--ico-text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--ico-primary);
  border-color: var(--ico-primary);
  color: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--ico-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(93, 120, 255, 0.05);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ico-text-primary);
  margin: 0;
  flex: 1;
  padding-right: 15px;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ico-border-subtle);
  border-radius: 6px;
  color: var(--ico-text-muted);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.faq-item.expanded .faq-toggle {
  background: var(--ico-primary);
  border-color: var(--ico-primary);
  color: white;
}

.faq-item.expanded .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.expanded .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 25px 25px;
  color: var(--ico-text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--ico-border-subtle);
  padding-top: 20px;
}

/* ============================================
   EXCURSIONS PAGE STYLES
   ============================================ */
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.excursion-card {
  background: var(--ico-bg-panel);
  border: 1px solid var(--ico-border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.excursion-card:hover {
  border-color: var(--ico-accent);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.15);
  transform: translateY(-5px);
}

.excursion-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(93, 120, 255, 0.2) 0%, rgba(0, 217, 255, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.excursion-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235D78FF' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.excursion-image img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.5));
}

.excursion-content {
  padding: 25px;
}

.excursion-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ico-text-primary);
  margin-bottom: 10px;
}

.excursion-desc {
  color: var(--ico-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.excursion-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--ico-text-muted);
}

.excursion-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.excursion-meta img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .venue-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-logo-img {
    max-width: 280px;
  }

  .hero-logo-svg {
    max-width: 300px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-info {
    flex-direction: column;
    gap: 15px;
  }

  .hero-info-divider {
    display: none;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-value {
    font-size: 2rem;
    padding: 12px 15px;
    min-width: 70px;
  }

  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .venue-stats {
    grid-template-columns: 1fr 1fr;
  }

  .ctf-banner {
    gap: 20px;
    padding: 20px;
  }

  .ctf-logo {
    height: 35px;
  }

  .ctf-vs {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .ctf-label {
    font-size: 0.65rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .scroll-hint {
    display: none;
  }

  /* Timeline Responsive */
  .timeline::before {
    left: 20px;
  }

  .timeline-day {
    padding-left: 60px;
  }

  .timeline-marker {
    left: 8px;
    width: 24px;
    height: 24px;
  }

  .timeline-header {
    padding: 15px 20px;
  }

  .timeline-events {
    padding: 0 20px 20px;
  }

  /* Competition Responsive */
  .competition-modes {
    grid-template-columns: 1fr;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  /* Excursions Responsive */
  .excursion-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ Responsive */
  .faq-question h4 {
    font-size: 0.95rem;
  }
}
