/* Web3 Inspired Minimal Design */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #0f0f0f;
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.1);
  --accent-primary: #dc2626;
  --accent-secondary: #ef4444;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --glow-red: rgba(220, 38, 38, 0.3);
  --glow-red-strong: rgba(220, 38, 38, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, var(--glow-red) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--glow-red) 0%, transparent 50%);
  animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--glow-red));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px var(--glow-red));
  }

  50% {
    filter: drop-shadow(0 0 20px var(--glow-red-strong));
  }
}

.logo-text {
  font-family: 'Technos', sans-serif;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 3rem;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--glow-red);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--glow-red-strong);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border-color: var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-glass-hover);
  border-color: var(--accent-primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background: var(--bg-secondary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 40px var(--glow-red);
  background: var(--bg-glass-hover);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-grid p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.category-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-glass-hover);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.category-tag:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* Statistics Section */
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.stat-card {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border-glass);
}

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

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  opacity: 0.9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 8px var(--glow-red));
}

.stat-card:hover .stat-icon {
  transform: translateY(-3px) scale(1.1);
  opacity: 1;
}

.stat-card:hover .stat-icon svg {
  filter: drop-shadow(0 0 15px var(--glow-red-strong));
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Winners Section */
.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.winner-card {
  padding: 2.5rem;
  text-align: center;
}

.winner-rank {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 1rem;
}

.winner-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.winner-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.winner-score {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
}

.winner-gold {
  border-color: #fbbf24;
}

.winner-silver {
  border-color: #9ca3af;
}

.winner-bronze {
  border-color: #d97706;
}

/* Prizes Section */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.prize-card {
  text-align: center;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: visible;
}

.prize-card.prize-gold {
  border-top: 3px solid #fbbf24;
}

.prize-card.prize-silver {
  border-top: 3px solid #9ca3af;
}

.prize-card.prize-bronze {
  border-top: 3px solid #d97706;
}

.prize-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prize-rank i {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.prize-rank svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.prize-gold .prize-rank {
  color: #fbbf24;
}

.prize-silver .prize-rank {
  color: #9ca3af;
}

.prize-bronze .prize-rank {
  color: #d97706;
}

.prize-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.prize-sponsor {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.prize-divider {
  width: 60px;
  height: 1px;
  background: var(--border-glass);
  margin: 0 auto 1.5rem;
  position: relative;
}

.prize-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.prize-extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.prize-extra-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.prize-extra-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.sponsor-card {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sponsor-card img {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.sponsor-card:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.sponsor-card h4 {
  color: var(--text-secondary);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.sponsor-card:hover h4 {
  color: var(--text-primary);
}

.section-subgroup {
  margin-bottom: 3rem;
}

.section-subgroup:last-child {
  margin-bottom: 0;
}

.subsection-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.subsection-copy {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.section-divider {
  width: 160px;
  height: 1px;
  margin: 2rem auto 3rem;
  background: var(--border-glass);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--glow-red);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-handle {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-primary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.team-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-carousel {
  position: relative;
  margin-bottom: 3rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  opacity: 0.5;
}

.testimonial-quote i,
.testimonial-quote svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 1.5;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.team-name {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'JetBrains Mono', monospace;
}

.ratings-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.rating-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.rating-label i,
.rating-label svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-primary);
  stroke-width: 2;
}

.rating-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: 'JetBrains Mono', monospace;
}

.rating-divider {
  width: 1px;
  height: 60px;
  background: var(--border-glass);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-glass);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-indicator.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--glow-red);
  transform: scale(1.3);
}

.carousel-indicator:hover {
  background: var(--accent-primary);
  opacity: 0.7;
  transform: scale(1.1);
}

/* Carousel Controls */
.carousel-controls {
  display: none;
}

.carousel-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--bg-glass-hover);
  border-color: var(--accent-primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--glow-red);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn i,
.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-glass);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px var(--glow-red);
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: var(--accent-primary);
  opacity: 0.7;
}

/* Footer */
.footer {
  padding: 0.7rem 0;
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 1;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-img {
  height: 10px;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Bento Grid Gallery */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  padding: 0;
}

.bento-item.glass-card {
  padding: 0;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-item:hover .gallery-overlay {
  opacity: 1;
}

.bento-item .gallery-overlay h4 {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
}

/* Bento item sizes */
.bento-wide {
  grid-column: span 4;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 3;
}

.bento-portrait {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-square {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
  }

  .bento-wide {
    grid-column: span 3;
  }

  .bento-medium {
    grid-column: span 2;
  }

}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .bento-wide {
    grid-column: span 2;
  }

  .bento-medium {
    grid-column: span 2;
  }

  .bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }

}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox.active img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 3rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  color: var(--accent-primary);
  transform: rotate(90deg);
}

/* Coming Soon Section */
.coming-soon-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 59, 48, 0.03) 50%, transparent 100%);
}

.coming-soon-content {
  text-align: center;
  padding: 4rem 2rem;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 59, 48, 0.15);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.coming-soon-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 50%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.coming-soon-text {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.typing-dots {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
}

.animate-slide-up-delay {
  animation: slideUp 1s ease 0.2s forwards;
  opacity: 0;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease 0.4s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease 0.6s forwards;
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .stats-grid {
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-card {
    min-width: 120px;
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 0;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--border-glass);
    gap: 1rem;
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .stats-grid {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-card {
    width: 100%;
    padding: 1.5rem;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .stat-card:not(:last-child) {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 1.5rem;
  }

  .gallery-grid,
  .winners-grid,
  .prizes-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .ratings-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .rating-divider {
    width: 60px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2rem;
    min-height: auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .stats-grid {
    padding: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .prize-card {
    padding: 2rem 1.5rem;
  }

  .prize-amount {
    font-size: 2rem;
  }

  .winner-card {
    padding: 2rem 1.5rem;
  }

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

  .bento-item.bento-wide,
  .bento-item.bento-medium,
  .bento-item.bento-tall,
  .bento-item.bento-portrait,
  .bento-item.bento-square {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    gap: 1rem;
  }

@media (max-width: 480px) {
  .sponsors-grid {
    gap: 1rem;
  }
}

  .sponsor-card {
    padding: 1.5rem;
  }

  .sponsor-card img {
    max-width: 120px;
    max-height: 60px;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-logo .logo-img {
    height: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .prizes-grid {
    gap: 1.5rem;
  }

  .winners-grid {
    gap: 1.5rem;
  }

  .nav-logo .logo-img {
    height: 32px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .carousel-indicators {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  .ratings-container {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .rating-value {
    font-size: 1.75rem;
  }
}