/* Premium Animated Design for Bit&Chill and AstridCloud*/
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-elevated: #1a1a1a;
  --text: #ffffff;
  --text-secondary: #b0b0b0;
  --accent-1: #8b5cf6;
  --accent-2: #ec4899;
  --accent-3: #06b6d4;
  --accent-4: #10b981;
  --border: rgba(255, 255, 255, 0.1);
}

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

html,
body {
  height: 100%;
  background-color: var(--bg);
  overscroll-behavior-y: none;
  font-family: 'Outfit', sans-serif;
}

.success-message {
  background-color: #4CAF50; /* Verde */
  color: white;
  padding: 18px 24px;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  display: none; /* Oculto por defecto */
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  border: 2px solid white;
  margin-bottom: 20px; /* Espacio entre el mensaje y el formulario */
  text-align: center;
}

.success-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Animated gradient background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  animation: gradientShift 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(5deg);
  }
}

/* Floating particles effect */
.pixel-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-selector {
  position: relative;
  display: inline-block;
}

.lang-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.lang-button .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--surface-elevated);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  padding: 10px 0;
  right: 0;
  top: 100%; /* Position below the button */
}

.dropdown-content.show {
  display: block;
}

.lang-option {
  color: var(--text-secondary);
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-option:hover {
  background-color: var(--surface);
  color: var(--text);
}

.lang-option .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-1) 20%,
      var(--accent-2) 40%,
      var(--accent-3) 60%,
      var(--accent-4) 80%,
      transparent);
  opacity: 0.5;
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: -200% 0%;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-language-selector {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px; /* Add some space above it */
  margin-bottom: 20px;
  justify-content: center; /* Center the language options */
}

.footer-language-selector .lang-option {
  /* Reuse existing lang-option styles */
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-language-selector .lang-option:hover {
  color: var(--text);
}

.footer-language-selector .flag-icon {
  /* Reuse existing flag-icon styles */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 0 20px rgba(139, 92, 246, 0.3),
    0 0 40px rgba(236, 72, 153, 0.2);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow:
      0 0 20px rgba(139, 92, 246, 0.3),
      0 0 40px rgba(236, 72, 153, 0.2);
  }

  50% {
    box-shadow:
      0 0 30px rgba(139, 92, 246, 0.5),
      0 0 60px rgba(236, 72, 153, 0.3);
  }
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.brand-text h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg,
      var(--accent-1) 0%,
      var(--accent-2) 50%,
      var(--accent-3) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 4s ease infinite;
}

@keyframes gradientText {

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

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

.brand-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Main content */
main {
  position: relative;
  z-index: 2;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 120px auto 100px;
  padding: 0 48px;
  text-align: center;
}

.hero h2 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: -2px;
  background: linear-gradient(135deg,
      #ffffff 0%,
      var(--accent-1) 30%,
      var(--accent-2) 60%,
      var(--accent-3) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroGradient 8s ease-in-out infinite;
  text-shadow: 0 0 80px rgba(139, 92, 246, 0.3);
}

@keyframes heroGradient {

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

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

.subtitle {
  max-width: 700px;
  margin: 0 auto 56px;
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 400;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.cta {
  margin: 48px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-neon {
  color: #ffffff;
  background: linear-gradient(135deg,
      var(--accent-1) 0%,
      var(--accent-2) 50%,
      var(--accent-3) 100%);
  background-size: 200% 200%;
  border: none;
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.4),
    0 0 60px rgba(236, 72, 153, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.4);
  animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {

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

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

.btn-neon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 80px rgba(236, 72, 153, 0.4),
    0 12px 48px rgba(0, 0, 0, 0.5);
}

.discord-icon {
  margin-right: 8px;
  vertical-align: middle;
}

/* Social buttons */
.socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
  }

.local-video-section {
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.local-video-desktop {
  display: block; /* Default: show desktop video */
  position: relative;
  cursor: pointer;
}

.local-video-mobile {
  display: none; /* Default: hide mobile video */
  position: relative;
  cursor: pointer;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: white;
  border: 2px solid white;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-button::before {
  content: '\f04b'; /* Font Awesome play icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.local-video-section video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px; /* Añadido para bordes redondeados */
  overflow: hidden; /* Asegura que el contenido del video se recorte */
}

@media (max-width: 768px) {
  .local-video-desktop {
    display: none;
  }

  .local-video-mobile {
    display: block;
  }

  .local-video-section {
    padding: 0 16px;
  }
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(139, 92, 246, 0.2),
      transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-outline:hover::after {
  width: 300px;
  height: 300px;
}

.btn-outline:hover {
  border-color: var(--accent-1);
  transform: translateY(-3px);
  box-shadow:
    0 0 20px rgba(139, 92, 246, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline.blue:hover {
  border-color: var(--accent-3);
  box-shadow:
    0 0 20px rgba(6, 182, 212, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline.pink:hover {
  border-color: var(--accent-2);
  box-shadow:
    0 0 20px rgba(236, 72, 153, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline.lime:hover {
  border-color: var(--accent-4);
  box-shadow:
    0 0 20px rgba(16, 185, 129, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 100px auto 0;
  max-width: 1200px;
}

.feature {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 200px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-1),
      var(--accent-2),
      var(--accent-3),
      transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(139, 92, 246, 0.1),
      transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
  pointer-events: none;
}

.feature:hover::before {
  opacity: 1;
}

.feature:hover::after {
  width: 500px;
  height: 500px;
}

.feature:hover {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.2),
    0 0 60px rgba(236, 72, 153, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature h5 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.feature.blue h5 {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature.pink h5 {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature.lime h5 {
  background: linear-gradient(135deg, var(--accent-4), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact {
  margin-bottom: 40px;
  max-width: 800px;
  margin: 120px auto;
  padding: 0 48px;
}

.contact form {
  max-width: 500px;
  margin: 0 auto;
}

.contact h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: -1px;
  background: linear-gradient(135deg,
      var(--text) 0%,
      var(--accent-1) 50%,
      var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.switches {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 0 0 40px;
  flex-wrap: wrap;
}

.btn-tab {
  padding: 14px 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.btn-tab.active {
  border-color: var(--accent-1);
  background: linear-gradient(135deg,
      rgba(139, 92, 246, 0.2),
      rgba(236, 72, 153, 0.1));
  box-shadow:
    0 0 20px rgba(139, 92, 246, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2);
}

.card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(139, 92, 246, 0.05),
      transparent);
  animation: cardShimmer 3s infinite;
}

@keyframes cardShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.card h4 {
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

label {
  display: block;
  margin: 24px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
textarea,
select {
  width: 100%;
  padding: 16px 20px;
  margin-top: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-1);
  background: rgba(0, 0, 0, 0.6);
  box-shadow:
    0 0 0 4px rgba(139, 92, 246, 0.1),
    0 0 30px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Sponsors Section */
.sponsors {
  max-width: 100%;
  width: 100%;
  margin: 120px 0;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
  user-select: none;
  /* Mask for fading edges */
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.sponsors h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 64px;
  letter-spacing: -1px;
  background: linear-gradient(135deg,
      var(--text) 0%,
      var(--accent-1) 50%,
      var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sponsor-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  /* Consistent gap */
  width: max-content;
  will-change: transform;
  animation: sponsor-marquee 40s linear infinite;
  /* Slower, smoother speed */
  padding: 0 4rem 0 0;
  /* Right padding = gap for perfect loop math */
}

.sponsor-grid:hover {
  animation-play-state: paused;
  /* Pause on hover */
}

.sponsor {
  flex: 0 0 auto;
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  padding: 20px;
}

.sponsor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.sponsor:hover {
  border-color: var(--accent-1);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

@keyframes sponsor-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-25%, 0, 0);
  }
}

/* Remove old pseudo-element mask since we use mask-image now */
.sponsors::before {
  display: none;
}

/* Footer */
.site-footer {
  margin: 140px 0 60px;
  text-align: center;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 48px;
  text-align: left;
}

.footer-grid h6 {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin: 12px 0;
}

.footer-grid a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-grid a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 0.3s;
}

.footer-grid a:hover::after {
  width: 100%;
}

.footer-grid a:hover {
  color: var(--text);
}

.site-footer>p {
  font-size: 14px;
  opacity: 0.5;
}


.partner-twitch-section {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 48px;
  text-align: center;
}

.partner-twitch-section h3 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 64px;
  letter-spacing: -1px;
  background: linear-gradient(135deg,
      var(--text) 0%,
      var(--accent-1) 50%,
      var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.twitch-partner-item-link {
  text-decoration: none;
}

.twitch-partner-item {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.twitch-partner-item:hover {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.2),
    0 0 60px rgba(236, 72, 153, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.twitch-partner-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--accent-1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  transition: all 0.3s ease;
}

.twitch-partner-image:hover {
  transform: scale(1.1);
  border-color: var(--accent-2);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.7);
}

.twitch-partner-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.twitch-partner-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .partner-twitch-section h3 {
    font-size: 28px;
  }

  .partner-twitch-section {
    padding: 0 24px;
  }
}

/* Ad Section */
#instant-gaming-ad {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 48px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
  }

  .hero {
    margin: 80px auto 60px;
    padding: 0 24px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 17px;
  }

  .contact {
    margin: 80px auto;
    padding: 0 24px;
  }

  .contact h3,
  .sponsors h3 {
    font-size: 28px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature {
    padding: 28px;
  }

  .card {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 36px;
  }

  .sponsor-grid .sponsor {
    margin: 0 30px;
    width: 220px;
  }

  .btn {
    padding: 16px 28px;
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
::selection {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #ffffff;
}

::-moz-selection {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
  border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
  border-radius: 10px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
      rgba(139, 92, 246, 0.8),
      rgba(236, 72, 153, 0.8));
}

.contact form select option[value=""] {
  opacity: 0.6;
}

img {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}