:root {
  --bg-primary: #0a0a0f;
  --neon-pink: #ff2c8e;
  --neon-green: #00fba2;
  --neon-yellow: #ffe600;
  --text-light: #ffffff;
  --text-gray: #cccccc;
  --text-dark: #333333;
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-light);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, var(--neon-pink) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--neon-green) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, var(--neon-yellow) 0%, transparent 50%);
  opacity: 0.03;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.03; }
  100% { opacity: 0.06; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: glow-rotate 3s ease-in-out infinite;
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes glow-rotate {
  0%, 100% { 
    filter: drop-shadow(0 0 5px var(--neon-pink));
    transform: rotate(0deg);
  }
  50% { 
    filter: drop-shadow(0 0 10px var(--neon-green));
    transform: rotate(180deg);
  }
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.nav-links a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-yellow), var(--neon-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 44, 142, 0.5);
  margin-bottom: 1rem;
  animation: flicker 2s ease-in-out infinite alternate;
}

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

.hero-tagline {
  font-size: 1.4rem;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-green));
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 44, 142, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 44, 142, 0.5);
}

.hero-visual {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.slot-reels {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reel {
  width: 80px;
  height: 100px;
  background: linear-gradient(45deg, var(--card-bg), rgba(255, 255, 255, 0.1));
  border: 2px solid var(--neon-pink);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.reel::before {
  content: '🎰';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  animation: spin 2s linear infinite;
}

.reel-2::before {
  content: '🃏';
  animation-delay: -0.5s;
}

.reel-3::before {
  content: '🍒';
  animation-delay: -1s;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotateY(0deg); }
  100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

.floating-symbols {
  position: relative;
  width: 200px;
  height: 200px;
}

.symbol {
  position: absolute;
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.symbol-1 { top: 10%; left: 20%; animation-delay: 0s; }
.symbol-2 { top: 30%; right: 10%; animation-delay: 0.5s; }
.symbol-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.symbol-4 { bottom: 10%; right: 20%; animation-delay: 1.5s; }
.symbol-5 { top: 50%; left: 50%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Highlights Section */
.highlights-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(0, 251, 162, 0.2);
}

.highlight-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
}

/* Games Section */
.games-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--neon-green), var(--neon-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-green));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.game-card:hover::before {
  opacity: 0.1;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 44, 142, 0.2);
  border-color: var(--neon-pink);
}

.game-image-container {
  position: relative;
  overflow: hidden;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--neon-pink);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--neon-yellow);
}

.game-info p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.game-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--neon-green);
}

.play-button {
  background: linear-gradient(45deg, var(--neon-green), var(--neon-yellow));
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 251, 162, 0.3);
  width: 100%;
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 251, 162, 0.5);
}

/* Game Types Section */
.game-types-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  max-width: 1200px;
  margin: 0 auto;
}

.game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-type {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.game-type:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 44, 142, 0.2);
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.game-type h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  text-align: center;
}

.about-main {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(0, 251, 162, 0.2);
}

.about-feature img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.feature-content {
  text-align: left;
}

.feature-content h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-yellow);
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 10px 30px rgba(0, 251, 162, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-green);
  margin-bottom: 1rem;
}

/* Gaming Tips Section */
.gaming-tips-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tips-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-yellow);
  box-shadow: 0 10px 30px rgba(255, 230, 0, 0.2);
}

.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tip-card h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.disclaimer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.disclaimer-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 44, 142, 0.2);
}

.disclaimer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.disclaimer-card h3 {
  font-family: 'Orbitron', monospace;
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid var(--card-border);
  padding: 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  filter: drop-shadow(0 0 5px var(--neon-pink));
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--neon-pink);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .hero-visual {
    position: static;
    transform: none;
    margin-top: 2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid,
  .game-types-grid,
  .tips-container,
  .disclaimer-content {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-content {
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .games-section,
  .about-section,
  .features-section,
  .disclaimer-section,
  .gaming-tips-section,
  .game-types-section {
    padding: 2rem 1rem;
  }
  
  .highlights-section {
    padding: 2rem 1rem;
  }
}

/* Scanline Effect */
@keyframes scanlines {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

.cta-button:hover::after,
.play-button:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.1) 2px,
    rgba(255, 255, 255, 0.1) 4px
  );
  animation: scanlines 0.5s linear infinite;
  pointer-events: none;
}