@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #0066CC;
  --secondary-color: #001122;
  --third-color: #002244;
  --text-primary: #FFFFFF;
  --text-secondary: #B8D4F0;
  --accent-primary: #00BFFF;
  --wave-color-1: #0066CC;
  --wave-color-2: #004499;
  --wave-color-3: #002266;
  --wave-color-4: #001133;
  --success-color: #00FF88;
  --warning-color: #FFB800;
  --error-color: #FF4444;
  --border-radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background: linear-gradient(135deg, #000428 0%, #004e92 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Enhanced Wave Animation Keyframes */
@keyframes wave-animation {
  0% {
    transform: translateX(-100%) translateY(0) rotate(0deg) scale(1) skewX(0deg);
  }
  25% {
    transform: translateX(-75%) translateY(-20px) rotate(90deg) scale(1.1) skewX(5deg);
  }
  50% {
    transform: translateX(-50%) translateY(-40px) rotate(180deg) scale(1.3) skewX(0deg);
  }
  75% {
    transform: translateX(-25%) translateY(-20px) rotate(270deg) scale(1.1) skewX(-5deg);
  }
  100% {
    transform: translateX(0%) translateY(0) rotate(360deg) scale(1) skewX(0deg);
  }
}

@keyframes wave-flow {
  0% {
    transform: translateX(-100%) skewX(0deg);
  }
  50% {
    transform: translateX(0%) skewX(5deg);
  }
  100% {
    transform: translateX(100%) skewX(0deg);
  }
}

@keyframes wave-ripple {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(2) rotate(180deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(4) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

@keyframes wave-splash {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
}

@keyframes wave-crash {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(10px) scale(1.1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes wave-undertow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(5px) rotate(1deg);
  }
  50% {
    transform: translateY(10px) rotate(0deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Wave Background Elements */
.wave-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.wave {
  position: absolute;
  width: 300%;
  height: 300px;
  background: linear-gradient(90deg, 
    var(--wave-color-1) 0%, 
    var(--wave-color-2) 20%, 
    var(--wave-color-3) 40%, 
    var(--wave-color-4) 60%, 
    var(--wave-color-2) 80%, 
    var(--wave-color-1) 100%);
  animation: wave-animation 12s ease-in-out infinite;
  opacity: 0.4;
  border-radius: 50% 50% 0 0;
  filter: blur(1px);
}

.wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 191, 255, 0.3) 0%, 
    transparent 50%, 
    rgba(0, 102, 204, 0.3) 100%);
  border-radius: inherit;
  animation: wave-splash 4s ease-in-out infinite;
}

.wave::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
  animation: wave-crash 2s ease-in-out infinite;
}

.wave:nth-child(1) {
  top: -50px;
  animation-delay: 0s;
  animation-duration: 8s;
  opacity: 0.6;
  height: 250px;
}

.wave:nth-child(2) {
  top: 0px;
  animation-delay: -2s;
  animation-duration: 10s;
  opacity: 0.4;
  height: 200px;
  animation: wave-animation 10s ease-in-out infinite reverse;
}

.wave:nth-child(3) {
  top: 50px;
  animation-delay: -4s;
  animation-duration: 12s;
  opacity: 0.3;
  height: 180px;
  animation: wave-undertow 6s ease-in-out infinite;
}

.wave:nth-child(4) {
  top: 100px;
  animation-delay: -6s;
  animation-duration: 14s;
  opacity: 0.2;
  height: 150px;
  animation: wave-animation 14s ease-in-out infinite;
}

/* Enhanced Floating Elements */
.floating-element {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.5));
  z-index: 1;
  pointer-events: none;
}

.floating-element:nth-child(odd) {
  animation-delay: -2s;
  animation-duration: 5s;
  animation: wave-splash 3s ease-in-out infinite;
}

.floating-element:nth-child(even) {
  animation-delay: -1s;
  animation-duration: 6s;
  animation: wave-crash 4s ease-in-out infinite;
}

/* Additional Wave Effects */
.wave-particle {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  font-size: 20px;
  color: rgba(0, 191, 255, 0.6);
  animation: floatUp 8s linear infinite;
}

.wave-splash-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 70%);
  animation: wave-ripple 2s ease-out infinite;
  pointer-events: none;
}

.wave-undertow-effect {
  position: absolute;
  width: 200px;
  height: 50px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 191, 255, 0.2) 50%, 
    transparent 100%);
  animation: wave-undertow 3s ease-in-out infinite;
  pointer-events: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.95) 0%, rgba(0, 34, 68, 0.9) 100%);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar .logo img {
  height: 40px;
  filter: drop-shadow(0 0 10px var(--accent-primary));
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-menu li a:hover::before {
  width: 80%;
}

.navbar-menu li a:hover {
  color: var(--accent-primary);
  background: rgba(0, 191, 255, 0.1);
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.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.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0099FF 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
  animation: wave-splash 0.6s ease-in-out;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0099FF 100%);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
  animation: wave-crash 0.6s ease-in-out;
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--text-primary);
}

/* Main Content */
.main-content {
  margin-top: 70px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-hero" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="rgba(0,191,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-hero)"/></svg>');
  animation: wave-flow 15s linear infinite;
  opacity: 0.7;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
  animation: float 3s ease-in-out infinite;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: wave-ripple 4s ease-in-out infinite;
  z-index: -1;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.8) 0%, rgba(0, 34, 68, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-features" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,60 Q25,40 50,60 T100,60 L100,100 L0,100 Z" fill="rgba(0,191,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-features)"/></svg>');
  animation: wave-flow 8s linear infinite;
  opacity: 0.6;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 191, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.5s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
  animation: wave-undertow 0.8s ease-in-out;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.5));
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.content-section:nth-child(odd) {
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.8) 0%, rgba(0, 34, 68, 0.6) 100%);
}

.content-section:nth-child(even) {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-content" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,60 Q25,40 50,60 T100,60 L100,100 L0,100 Z" fill="rgba(0,191,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-content)"/></svg>');
  animation: wave-flow 12s linear infinite;
  opacity: 0.4;
  z-index: 1;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-layout.reverse .content-visual {
  order: 2;
}

.content-layout.reverse .content-text {
  order: 1;
}

.content-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-icon {
  font-size: 8rem;
  filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.5));
  animation: float 4s ease-in-out infinite;
}

.content-text h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.content-text p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1rem;
}

.feature-list li::before {
  content: '🌊';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* Bonuses Section */
.bonuses {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.8) 0%, rgba(0, 34, 68, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.bonuses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-bonuses" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,80 Q25,60 50,80 T100,80 L100,100 L0,100 Z" fill="rgba(0,191,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-bonuses)"/></svg>');
  animation: wave-flow 12s linear infinite;
  opacity: 0.6;
  z-index: 1;
}

.bonuses-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card.featured {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.5s;
}

.bonus-card:hover::before {
  left: 100%;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  animation: wave-crash 0.6s ease-in-out;
}

.bonus-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.5));
}

.bonus-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.bonus-card p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.bonus-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  position: relative;
  z-index: 2;
}

.bonus-carousel {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  width: 100%;
  height: 300px;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 600%; /* 6 banners * 100% each */
}

.bonus-carousel a {
  flex: 0 0 16.666%; /* Each banner takes 1/6 of the container */
  height: 100%;
  display: block;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 3;
}

.carousel-btn {
  background: rgba(0, 191, 255, 0.8);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(0, 191, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--accent-primary);
  transform: scale(1.2);
}

/* About Section */
.about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-about" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,65 Q25,45 50,65 T100,65 L100,100 L0,100 Z" fill="rgba(0,191,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-about)"/></svg>');
  animation: wave-flow 14s linear infinite reverse;
  opacity: 0.5;
  z-index: 1;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-feature {
  text-align: center;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 10px;
  text-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
}

.feature-text {
  font-size: 1rem;
  color: var(--text-secondary);
}

.about-visual {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.8) 0%, rgba(0, 34, 68, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-faq" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,75 Q25,55 50,75 T100,75 L100,100 L0,100 Z" fill="rgba(0,191,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-faq)"/></svg>');
  animation: wave-flow 6s linear infinite;
  opacity: 0.4;
  z-index: 1;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: linear-gradient(135deg, rgba(0, 34, 68, 0.8) 0%, rgba(0, 51, 102, 0.6) 100%);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 191, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.5s;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-primary);
  animation: wave-undertow 0.6s ease-in-out;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-cta" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,85 Q25,65 50,85 T100,85 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-cta)"/></svg>');
  animation: wave-flow 4s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(0, 17, 34, 0.95) 0%, rgba(0, 34, 68, 0.9) 100%);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 191, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-footer" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,90 Q25,70 50,90 T100,90 L100,100 L0,100 Z" fill="rgba(0,191,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-footer)"/></svg>');
  animation: wave-flow 16s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-primary);
}

.footer-logo img {
  height: 40px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px var(--accent-primary));
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 191, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--accent-primary);
  background: rgba(0, 191, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
  }
  
  .bonuses-layout {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
  }
  
  .navbar-menu {
    margin: 15px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .main-content {
    margin-top: 120px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .content-layout.reverse .content-visual,
  .content-layout.reverse .content-text {
    order: unset;
  }
  
  .content-icon {
    font-size: 6rem;
  }
  
  .content-text h2 {
    font-size: 2rem;
  }
  
  .content-text p {
    font-size: 1.1rem;
  }
  
  .gaming-arena {
    padding: 80px 0;
    min-height: auto;
  }
  
  .header-content h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .header-content p {
    font-size: 1.1rem;
  }
  
  .arena-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .arena-stat {
    width: 100%;
    max-width: 300px;
    padding: 20px 25px;
  }
  
  .hub-nav {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .hub-tab {
    padding: 20px 25px;
    min-width: 120px;
  }
  
  .tab-icon {
    font-size: 2rem;
  }
  
  .tab-text {
    font-size: 1rem;
  }
  
  .game-panel {
    padding: 30px 20px;
    min-height: 500px;
  }
  
  .panel-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .game-title h3 {
    font-size: 1.8rem;
  }
  
  .game-title p {
    font-size: 1rem;
  }
  
  .game-balance {
    gap: 30px;
  }
  
  .balance-value {
    font-size: 1.5rem;
  }
  
  .game-controls {
    flex-direction: column;
    gap: 30px;
  }
  
  .bet-section {
    width: 100%;
  }
  
  .action-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    min-width: auto;
  }
  
  .dice {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .reel {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .card {
    width: 80px;
    height: 100px;
    font-size: 2rem;
  }
  
  .roulette-wheel {
    width: 150px;
    height: 150px;
  }
  
  .number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
  
  .float-element {
    font-size: 2rem;
  }
  
  /* Gaming Arena Section */
  .gaming-arena {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 17, 34, 0.98) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }
  
  .arena-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .wave-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="wave-arena" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,70 Q25,50 50,70 T100,70 L100,100 L0,100 Z" fill="rgba(0,191,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23wave-arena)"/></svg>');
    animation: wave-flow 15s linear infinite;
    opacity: 0.6;
  }
  
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .float-element {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: floatAround 20s linear infinite;
    opacity: 0.7;
  }
  
  .element-1 { top: 10%; left: 5%; animation-delay: 0s; }
  .element-2 { top: 20%; right: 10%; animation-delay: 3s; }
  .element-3 { top: 60%; left: 8%; animation-delay: 6s; }
  .element-4 { top: 40%; right: 5%; animation-delay: 9s; }
  .element-5 { bottom: 20%; left: 15%; animation-delay: 12s; }
  .element-6 { bottom: 30%; right: 20%; animation-delay: 15s; }
  
  /* Arena Header */
  .arena-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
  }
  
  .header-content h2 {
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.8);
    font-weight: 900;
    letter-spacing: 2px;
  }
  
  .header-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .arena-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
  }
  
  .arena-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 150, 255, 0.2) 100%);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
  }
  
  .arena-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
  }
  
  .stat-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.7));
  }
  
  .stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Game Hub */
  .game-hub {
    position: relative;
    z-index: 2;
  }
  
  .hub-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .hub-tab {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 17, 34, 0.9) 100%);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 25px;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
  }
  
  .hub-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 150, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .hub-tab:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.4);
  }
  
  .hub-tab:hover::before {
    opacity: 1;
  }
  
  .hub-tab.active {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.6);
    transform: translateY(-5px);
  }
  
  .hub-tab.active::before {
    opacity: 1;
  }
  
  .tab-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.7));
  }
  
  .tab-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
  }
  
  .tab-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
  }
  
  .hub-tab:hover .tab-glow {
    opacity: 1;
  }
  
  /* Game Display */
  .game-display {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 17, 34, 0.95) 100%);
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 30px;
    padding: 0;
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
  }
  
  .game-panel {
    display: none;
    padding: 50px;
    min-height: 600px;
  }
  
  .game-panel.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
  }
  
  .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 191, 255, 0.2);
  }
  
  .game-title h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
  }
  
  .game-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
  }
  
  .game-balance {
    display: flex;
    gap: 40px;
  }
  
  .balance-item {
    text-align: center;
  }
  
  .balance-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .balance-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  }
  
  /* Game Area */
  .game-area {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .dice-stage, .slots-stage, .cards-stage, .roulette-stage {
    position: relative;
    margin-bottom: 30px;
  }
  
  .stage-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0.5;
  }
  
  .game-message {
    font-size: 1.3rem;
    color: var(--text-primary);
    padding: 20px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Game Controls */
  .game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .bet-section {
    flex: 1;
  }
  
  .bet-section label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
  }
  
  .bet-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .bet-slider {
    flex: 1;
    height: 10px;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
  }
  
  .bet-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
    transition: all 0.3s ease;
  }
  
  .bet-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(0, 191, 255, 1);
  }
  
  .bet-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-primary);
    min-width: 60px;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  }
  
  .action-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    color: white;
    padding: 20px 50px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.4);
    position: relative;
    overflow: hidden;
    min-width: 200px;
  }
  
  .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.6);
  }
  
  .action-btn:hover::before {
    left: 100%;
  }
  
  .action-btn:active {
    transform: translateY(-2px);
  }
  
  .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .action-btn:hover .btn-glow {
    opacity: 1;
  }
  
  .btn-icon {
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  .btn-text {
    font-weight: 800;
    letter-spacing: 1px;
  }
  
  /* Games Hero Section */
  .games-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
  }
  
  .hero-content h2 {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .hero-stats {
    display: flex;
    gap: 40px;
  }
  
  .hero-stat {
    text-align: center;
  }
  
  .hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
    margin-bottom: 5px;
  }
  
  .hero-stat .stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .hero-visual {
    position: relative;
    height: 400px;
  }
  
  .floating-games {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .floating-game {
    position: absolute;
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: float 6s ease-in-out infinite;
  }
  
  .dice-float {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .slots-float {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
  }
  
  .cards-float {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
  }
  
  .roulette-float {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
  }
  
  /* Game Categories */
  .game-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .category-tab {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 150, 255, 0.2) 100%);
    border: 2px solid rgba(0, 191, 255, 0.3);
    color: var(--text-primary);
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
  }
  
  .category-tab:hover {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 150, 255, 0.3) 100%);
    border-color: rgba(0, 191, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.3);
  }
  
  .category-tab.active {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.6);
  }
  
  /* Games Showcase */
  .games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .game-showcase-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 17, 34, 0.95) 100%);
    border: 2px solid rgba(0, 191, 255, 0.2);
    border-radius: 30px;
    padding: 0;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  
  .game-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(0, 150, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  
  .game-showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 191, 255, 0.6);
    box-shadow: 0 25px 50px rgba(0, 191, 255, 0.3);
  }
  
  .game-showcase-card:hover::before {
    opacity: 1;
  }
  
  .game-preview {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, rgba(0, 150, 255, 0.2) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }
  
  .game-icon-large {
    font-size: 5rem;
    filter: drop-shadow(0 0 25px rgba(0, 191, 255, 0.7));
    animation: float 4s ease-in-out infinite;
    margin-bottom: 30px;
  }
  
  .game-preview-area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .dice-preview, .cards-preview {
    display: flex;
    gap: 20px;
  }
  
  .slots-preview {
    display: flex;
    gap: 15px;
  }
  
  .preview-dice, .preview-card {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .preview-reel {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .roulette-preview {
    position: relative;
    width: 120px;
    height: 120px;
  }
  
  .preview-wheel {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .preview-number {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    border-radius: 50%;
  }
  
  .preview-number.red {
    background: #e74c3c;
  }
  
  .preview-number.black {
    background: #2c3e50;
  }
  
  .preview-number:nth-child(1) { top: 5px; left: 50%; transform: translateX(-50%); }
  .preview-number:nth-child(2) { top: 20px; right: 20px; }
  .preview-number:nth-child(3) { bottom: 20px; right: 20px; }
  
  .game-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  
  .game-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .game-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .feature {
    background: rgba(0, 191, 255, 0.1);
    border: 1px solid rgba(0, 191, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
  }
  
  .game-stats-preview {
    display: flex;
    gap: 30px;
  }
  
  .game-stats-preview .stat {
    text-align: center;
  }
  
  .game-stats-preview .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .game-stats-preview .stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  }
  
  .game-play-area {
    grid-column: 1 / -1;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 17, 34, 0.5) 100%);
    border-top: 1px solid rgba(0, 191, 255, 0.2);
    position: relative;
    z-index: 2;
  }
  
  .bet-control {
    margin-bottom: 25px;
  }
  
  .bet-control label {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
  }
  
  .bet-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .bet-slider {
    flex: 1;
    height: 8px;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
  }
  
  .bet-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
    transition: all 0.3s ease;
  }
  
  .bet-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.8);
  }
  
  .bet-display {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-primary);
    min-width: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  }
  
  .play-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    color: white;
    padding: 18px 30px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }
  
  .play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.6);
  }
  
  .play-btn:hover::before {
    left: 100%;
  }
  
  .play-btn:active {
    transform: translateY(-1px);
  }
  
  .play-btn .btn-icon {
    font-size: 1.3rem;
  }
  
  .play-btn .btn-text {
    font-weight: 700;
  }
  
  .game-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }
  
  .game-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.6));
    animation: float 3s ease-in-out infinite;
  }
  
  .game-card-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
  }
  
  .game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }
  
  .stat {
    text-align: center;
    flex: 1;
  }
  
  .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-primary);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  }
  
  .game-area {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
  }
  
  .game-result {
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
    padding: 15px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.3);
    margin-top: 15px;
  }
  
  .game-controls {
    position: relative;
    z-index: 2;
  }
  
  .bet-control {
    margin-bottom: 20px;
  }
  
  .bet-control label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-align: center;
  }
  
  .bet-control {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .bet-slider {
    flex: 1;
    height: 6px;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
  }
  
  .bet-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .bet-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
  }
  
  .bet-display {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--accent-primary);
    min-width: 40px;
    text-align: center;
  }
  
  .game-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .game-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.5s ease;
  }
  
  .game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.6);
  }
  
  .game-btn:hover::before {
    left: 100%;
  }
  
  .game-btn:active {
    transform: translateY(0);
  }
  
  .btn-icon {
    font-size: 1.2rem;
  }
  
  .btn-text {
    font-weight: 600;
  }
  
  /* Dice Game Styles */
  .dice-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .dice {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid var(--accent-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .dice.rolling {
    animation: diceRoll 1s ease-in-out;
  }
  
  .bet-slider {
    width: 300px;
    height: 8px;
    background: rgba(0, 191, 255, 0.2);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
  }
  
  .bet-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
  }
  
  .roll-btn, .spin-btn, .flip-btn {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
  }
  
  .roll-btn:hover, .spin-btn:hover, .flip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.6);
  }
  
  .roll-btn:active, .spin-btn:active, .flip-btn:active {
    transform: translateY(0);
  }
  
  /* Slots Game Styles */
  .slots-machine {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .slots-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .reel {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .reel.spinning {
    animation: reelSpin 2s ease-in-out;
  }
  
  /* Card Game Styles */
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .card {
    width: 100px;
    height: 130px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border: 3px solid var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
  }
  
  .card.flipping {
    animation: cardFlip 1s ease-in-out;
  }
  
  /* Roulette Game Styles */
  .roulette-wheel {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .roulette-ball {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    z-index: 3;
  }
  
  .roulette-ball.spinning {
    animation: ballSpin 3s ease-in-out;
  }
  
  .roulette-numbers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .number {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    border-radius: 50%;
  }
  
  .number.red {
    background: #e74c3c;
  }
  
  .number.black {
    background: #2c3e50;
  }
  
  .number:nth-child(1) { top: 8px; left: 50%; transform: translateX(-50%); }
  .number:nth-child(2) { top: 25px; right: 25px; }
  .number:nth-child(3) { bottom: 25px; right: 25px; }
  .number:nth-child(4) { bottom: 8px; left: 50%; transform: translateX(-50%); }
  .number:nth-child(5) { bottom: 25px; left: 25px; }
  .number:nth-child(6) { top: 25px; left: 25px; }
  
  /* Animations */
  @keyframes diceRoll {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes reelSpin {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
  }
  
  @keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
  }
  
  @keyframes ballSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -30px) rotate(180deg); }
    75% { transform: translate(-20px, 10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  /* Mobile carousel adjustments */
  .bonus-carousel {
    height: 250px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .carousel-dots {
    bottom: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .features, .games, .bonuses, .about, .faq, .cta {
    padding: 40px 0;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}