:root {
  /* Updated Color Palette - Purple/Black/White/Blue Theme */
  --primary-purple: #5e25e4;
  --light-purple: #a78bfa;
  --dark-purple: #9400fe;
  --accent-blue: #1d33fa;
  --light-blue: #4073ff;
  --dark-blue: #2563eb;
  --text-white: #ffffff;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --black-primary: #0f0f23;
  --black-secondary: #1e1e3f;
  --black-tertiary: #2d2d5a;
  
  /* Background Colors */
  --dark-bg: #0f0f23;
  --darker-bg: #0a0a1a;
  --card-bg: #1e1e3f;
  --card-bg-hover: #2d2d5a;
  
  /* Gradients */
  --purple-gradient: linear-gradient(145deg, var(--dark-purple), var(--primary-purple), var(--light-purple));
  --blue-gradient: linear-gradient(145deg, var(--dark-blue), var(--accent-blue), var(--light-blue));
  --dark-gradient: linear-gradient(145deg, var(--darker-bg), var(--dark-bg), var(--black-secondary));
  --card-gradient: linear-gradient(145deg, rgba(30, 30, 63, 0.8), rgba(45, 45, 90, 0.9));
  
  /* Effects */
  --glow-purple: 0 0 15px rgba(139, 92, 246, 0.5);
  --glow-blue: 0 0 15px rgba(59, 130, 246, 0.5);
  
  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 12px 28px rgba(0, 0, 0, 0.3);
  --shadow-purple: 0 5px 15px rgba(139, 92, 246, 0.2);
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --header-height: 70px;
  --section-spacing: 5rem;
  --container-padding: 2rem;
  --max-content-width: 1400px;
}

/* ---------- GLOBAL STYLES ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark-gradient);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'), var(--dark-gradient);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: var(--primary-purple);
  transition: var(--transition-fast);
}

a:hover {
  color: var(--light-purple);
  text-shadow: var(--glow-purple);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Typography utilities */
.text-purple {
  color: var(--primary-purple);
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
}

.text-2xl {
  font-size: 2rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.highlight-code {
  color: var(--primary-purple);
  font-weight: 700;
  background: rgba(139, 92, 246, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius-sm);
  display: inline-block;
}

/* ---------- PARTICLES CONTAINER ---------- */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

/* ---------- HEADER & NAVIGATION ---------- */
.header {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  height: var(--header-height);
  transition: transform 0.3s ease-in-out;
}

.header.scroll-down {
  transform: translateY(-100%);
}

.header.scroll-up {
  transform: translateY(0);
}

.nav-container {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: space-between;
}

.logo-container {
  margin-right: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.logo-text {
  background: linear-gradient(90deg, var(--text-light), var(--primary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.logo:hover .logo-text {
  text-shadow: var(--glow-purple);
}

.highlight {
  color: var(--primary-purple);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--purple-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.logo:hover .highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--purple-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary-purple);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link i {
  margin-right: 5px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  color: var(--primary-purple);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  padding: 2rem;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
  transition: right 0.4s ease-out;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.close-menu {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-menu:hover {
  color: var(--primary-purple);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.mobile-nav-link i {
  margin-right: 10px;
  font-size: 1.2rem;
  min-width: 24px;
  text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary-purple);
  border-bottom-color: var(--primary-purple);
  transform: translateX(5px);
}

/* ---------- HERO BANNER ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.8) 20%, rgba(30, 30, 63, 0.7) 80%);
  z-index: -1;
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-img {
  position: absolute;
  opacity: 0.4;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
  animation: float-animation 12s infinite ease-in-out;
}

.float-1 {
  width: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  width: 100px;
  top: 25%;
  right: 15%;
  animation-delay: -3s;
}

.float-3 {
  width: 140px;
  bottom: 18%;
  left: 18%;
  animation-delay: -6s;
}

.float-4 {
  width: 130px;
  bottom: 22%;
  right: 12%;
  animation-delay: -9s;
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(15px) rotate(-3deg);
  }
}

.hero-content {
  max-width: 900px;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(15, 15, 35, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), var(--glow-purple);
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  transform: translateZ(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
  }
  100% {
    text-shadow: var(--glow-purple), 0 0 30px rgba(139, 92, 246, 0.4);
  }
}

.highlight-text {
  display: inline-block;
  position: relative;
  color: var(--primary-purple);
  text-shadow: var(--glow-purple);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    color: var(--primary-purple);
  }
  50% {
    color: var(--light-purple);
  }
  100% {
    color: var(--primary-purple);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-out;
}

.hero-btn {
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 160px;
  text-transform: uppercase;
  border: 2px solid transparent;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: -1;
}

.hero-btn:hover::before {
  left: 100%;
}

.leaderboard-btn {
  background: var(--purple-gradient);
  color: var(--text-white);
}

.leaderboard-btn:hover {
  box-shadow: var(--glow-purple);
  transform: translateY(-5px) scale(1.03);
  color: var(--text-white);
}

.rewards-btn {
  background: var(--blue-gradient);
  color: var(--text-white);
}

.rewards-btn:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-5px) scale(1.03);
  color: var(--text-white);
}

.signup-btn {
  background: linear-gradient(145deg, var(--black-secondary), var(--black-tertiary));
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.signup-btn:hover {
  background: var(--primary-purple);
  color: var(--text-white);
  box-shadow: var(--glow-purple);
  transform: translateY(-5px) scale(1.03);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  z-index: 1;
  animation: fadeInUpDelayed 2s ease-out;
}

@keyframes fadeInUpDelayed {
  0% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  50% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-purple);
  border-radius: 25px;
  margin-bottom: 10px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-purple);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrows span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid var(--primary-purple);
  border-right: 2px solid var(--primary-purple);
  transform: rotate(45deg);
  margin: -8px 0;
  animation: arrows 2s infinite;
}

.arrows span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrows span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes arrows {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-text {
  position: relative;
  display: inline-block;
  color: var(--text-light);
  padding: 0 1rem;
  background: linear-gradient(to right, var(--dark-purple), var(--primary-purple), var(--light-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-text::before, .title-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary-purple);
  box-shadow: var(--glow-purple);
}

.title-text::before {
  left: -50px;
  animation: expandLeft 1.5s ease-out forwards;
}

.title-text::after {
  right: -50px;
  animation: expandRight 1.5s ease-out forwards;
}

@keyframes expandLeft {
  from {
    width: 0;
    left: -20px;
    opacity: 0;
  }
  to {
    width: 30px;
    left: -50px;
    opacity: 1;
  }
}

@keyframes expandRight {
  from {
    width: 0;
    right: -20px;
    opacity: 0;
  }
  to {
    width: 30px;
    right: -50px;
    opacity: 1;
  }
}

.title-underline {
  height: 3px;
  width: 0;
  background: var(--purple-gradient);
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
  animation: expandWidth 1.5s ease-out forwards;
  box-shadow: var(--glow-purple);
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  max-width: 700px;
  margin: 0 auto;
}

.featured-wins {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
  position: relative;
}

.wins-slider {
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.wins-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.wins-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.win-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.win-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
  z-index: 0;
}

.win-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease;
  z-index: 0;
}

.win-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-purple);
  border-color: rgba(139, 92, 246, 0.4);
}

.win-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.win-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  text-shadow: var(--glow-purple);
  animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(139, 92, 246, 0.3);
  }
  100% {
    text-shadow: var(--glow-purple), 0 0 30px rgba(139, 92, 246, 0.4);
  }
}

.win-game {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.win-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.win-multiplier {
  background: var(--purple-gradient);
  color: var(--text-white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.win-card:hover .win-multiplier {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), var(--glow-purple);
}

.social-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--darker-bg), var(--dark-bg));
  position: relative;
}

.social-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.social-grid.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--glow-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

.social-card:hover::before {
  opacity: 0.2;
}

.youtube::before {
  background: linear-gradient(135deg, #ff0000, #990000);
}

.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.kick::before {
  background: linear-gradient(135deg, #53b848, #209c3c);
}

.discord::before {
  background: linear-gradient(135deg, #7289da, #4e5d94);
}

.twitter::before {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-icon-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.youtube .social-icon-container {
  background: rgba(255, 0, 0, 0.2);
}

.instagram .social-icon-container {
  background: rgba(225, 48, 108, 0.2);
}

.kick .social-icon-container {
  background: rgba(83, 184, 72, 0.2);
}

.discord .social-icon-container {
  background: rgba(114, 137, 218, 0.2);
}

.twitter .social-icon-container {
  background: rgba(29, 161, 242, 0.2);
}

.social-icon {
  font-size: 1.8rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.youtube .social-icon {
  color: #ff0000;
}

.instagram .social-icon {
  color: #e1306c;
}

.kick .social-icon {
  color: #53b848;
}

.discord .social-icon {
  color: #7289da;
}

.twitter .social-icon {
  color: #1da1f2;
}

.social-info {
  position: relative;
  z-index: 1;
}

.social-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.social-card:hover .social-name {
  color: var(--primary-purple);
}

.social-handle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.newsletter-section {
  padding: 5rem 2rem;
  background: linear-gradient(0deg, var(--darker-bg), var(--dark-bg));
  position: relative;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.newsletter-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.newsletter-form {
  background: rgba(30, 30, 63, 0.6);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.newsletter-form:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-purple);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
}

.form-group {
  display: flex;
  margin-bottom: 1.5rem;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 1px var(--primary-purple), var(--glow-purple);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  padding: 1rem 2rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  background: var(--purple-gradient);
  color: var(--text-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.newsletter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: 1;
}

.newsletter-btn:hover::before {
  left: 100%;
}

.newsletter-btn:hover {
  box-shadow: var(--glow-purple);
  transform: scale(1.05);
}

.newsletter-terms {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  position: relative;
  top: 3px;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 3px;
  margin-right: 10px;
  display: inline-block;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkbox-custom {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  box-shadow: var(--glow-purple);
}

.checkbox-custom:after {
  content: "";
  position: absolute;
  display: none;
  transition: all 0.2s ease;
}

.checkbox-label input:checked ~ .checkbox-custom:after {
  display: block;
  animation: checkmark 0.2s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
}

.checkbox-label .checkbox-custom:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--text-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkbox-text {
  color: var(--text-light);
}

.footer {
  background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2rem;
  color: var(--text-light);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  animation: shiftBackground 15s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.footer::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, 
    transparent 0%, var(--primary-purple) 30%, 
    var(--accent-blue) 50%, var(--primary-purple) 70%, 
    transparent 100%);
  opacity: 0.7;
  filter: blur(1px);
  transform: translateY(-50%);
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.footer-logo {
  position: relative;
}

.logo-text {
  background: linear-gradient(90deg, var(--text-light), var(--primary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.logo:hover .logo-text {
  text-shadow: var(--glow-purple);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--primary-purple);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-link:hover {
  color: var(--primary-purple);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.footer-social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
  transition: all 0.6s ease;
}

.footer-social-icon:hover {
  color: var(--primary-purple);
  border-color: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-icon:hover::before {
  left: 100%;
}

.youtube:hover {
  background: rgba(255, 0, 0, 0.1);
}

.instagram:hover {
  background: linear-gradient(45deg, rgba(245, 133, 41, 0.1), rgba(254, 218, 117, 0.1), rgba(221, 42, 123, 0.1));
}

.kick:hover {
  background: rgba(83, 235, 144, 0.1);
}

.discord:hover {
  background: rgba(114, 137, 218, 0.1);
}

.twitter:hover {
  background: rgba(29, 161, 242, 0.1);
}

.gamble-aware {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.gamble-aware::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent, 
    rgba(139, 92, 246, 0.05), 
    transparent);
  background-size: 200% 200%;
  animation: shimmerEffect 6s infinite linear;
  pointer-events: none;
}

@keyframes shimmerEffect {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gamble-aware-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.2rem;
  box-shadow: var(--glow-purple);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
  }
}

.gamble-aware-text {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.gamble-aware-link {
  color: var(--primary-purple);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
}

.gamble-aware-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-purple);
  transition: all 0.3s ease;
}

.gamble-aware-link:hover {
  color: var(--light-purple);
}

.gamble-aware-link:hover::after {
  width: 100%;
}

.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.7);
  margin-top: 1.5rem;
  position: relative;
  padding-top: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

@keyframes shiftBackground {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .win-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-buttons {
    gap: 0.8rem;
  }
  
  .hero-btn {
    min-width: 140px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .float-img {
    opacity: 0.3;
  }
  
  .float-1, .float-2, .float-3, .float-4 {
    width: 100px;
  }
  
  .social-icon-container {
    width: 50px;
    height: 50px;
  }
  
  .social-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .title-text::before, .title-text::after {
    width: 20px;
  }
  
  .title-text::before {
    left: -30px;
  }
  
  .title-text::after {
    right: -30px;
  }
  
  .featured-wins, .social-section, .newsletter-section {
    padding: 4rem 1.5rem;
  }
  
  .wins-container, .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .win-card, .social-card {
    padding: 1.5rem;
  }
  
  .win-amount {
    font-size: 2rem;
  }
  
  .newsletter-form {
    padding: 2rem 1.5rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-btn {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .gamble-aware {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .gamble-aware-badge {
    margin-bottom: 1rem;
  }
  
  .header {
    padding: 0.75rem 1rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    padding: 1.5rem 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn {
    width: 100%;
    min-width: auto;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .wins-container, .social-grid {
    grid-template-columns: 1fr;
  }
  
  .win-amount {
    font-size: 1.8rem;
  }
  
  .social-name {
    font-size: 1.1rem;
  }
  
  .social-handle {
    font-size: 0.85rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .footer-social {
    width: 100%;
    justify-content: space-between;
  }
  
  .footer-copyright {
    font-size: 0.8rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .win-card, .social-card, .newsletter-form {
    padding: 1.2rem;
  }
  
  .win-amount {
    font-size: 1.6rem;
  }
  
  .win-game {
    font-size: 1.1rem;
  }
  
  .social-icon-container {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
  }
  
  .social-icon {
    font-size: 1.3rem;
  }
  
  .social-name {
    font-size: 1rem;
  }
  
  .checkbox-text {
    font-size: 0.8rem;
  }
  
  .gamble-aware-text {
    font-size: 0.8rem;
  }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
