/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0f;
  overflow-x: hidden;
}

/* CSS Variables */
:root {
  --primary-color: #00ffff;
  --secondary-color: #0066cc;
  --accent-color: #ff00ff;
  --background-dark: #0a0a0f;
  --background-card: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --gradient-primary: linear-gradient(135deg, #00ffff 0%, #0066cc 100%);
  --gradient-secondary: linear-gradient(135deg, #ff00ff 0%, #8a2be2 100%);
  --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.3);
  --transition: all 0.3s ease;
  --border-radius: 12px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 
    0 0 5px var(--primary-color),
    0 0 10px var(--primary-color),
    0 0 20px var(--primary-color),
    0 0 40px var(--primary-color);
  animation: neonGlow 2s ease-in-out infinite alternate;
}

.neon-text-small {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

@keyframes neonGlow {
  from {
    text-shadow: 
      0 0 5px var(--primary-color),
      0 0 10px var(--primary-color),
      0 0 15px var(--primary-color),
      0 0 20px var(--primary-color);
  }
  to {
    text-shadow: 
      0 0 10px var(--primary-color),
      0 0 20px var(--primary-color),
      0 0 30px var(--primary-color),
      0 0 40px var(--primary-color);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  border-color: var(--primary-color);
}

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

.btn-secondary {
  background: var(--gradient-secondary);
  color: #fff;
  border-color: var(--accent-color);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.glow-effect {
  box-shadow: var(--shadow-glow);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
}

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

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand .logo {
  height: 40px;
  width: auto;
}

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

.navbar-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar-nav a:hover {
  color: var(--primary-color);
}

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

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

.navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 2px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0f 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, transparent 40%, rgba(0, 255, 255, 0.05) 50%, transparent 60%);
  animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.hero-title {
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title .neon-text {
  display: block;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

.hero-title .subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--background-dark);
}

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

.feature-card {
  background: var(--background-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Games Section */
.games-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.games-categories {
  max-width: 1000px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid transparent;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(0, 255, 255, 0.1);
}

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

.game-card {
  background: var(--background-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 255, 255, 0.1);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.game-image {
  height: 150px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  position: relative;
  overflow: hidden;
}

.game-image::before {
  content: '🎮';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.7;
}

.game-info {
  padding: 1.5rem;
}

.game-info h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.game-info p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Bonus Section */
.bonus-section {
  padding: 100px 0;
  background: var(--background-dark);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.bonus-card {
  background: var(--background-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 255, 255, 0.1);
  position: relative;
  transition: var(--transition);
}

.bonus-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.bonus-badge {
  background: var(--gradient-primary);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.bonus-amount {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.bonus-features {
  list-style: none;
  margin-bottom: 2rem;
}

.bonus-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-features li:last-child {
  border-bottom: none;
}

/* Guide Section */
.guide-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.guide-steps {
  counter-reset: step-counter;
  margin: 2rem 0;
}

.guide-steps li {
  counter-increment: step-counter;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 4rem;
}

.guide-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.guide-steps li strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
}

.guide-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.guide-cta .link {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.guide-cta .link:hover {
  text-decoration: underline;
}

.mockup-device {
  max-width: 300px;
  margin: 0 auto;
  background: #333;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.device-screen {
  background: #000;
  border-radius: 15px;
  padding: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-preview {
  width: 100%;
  color: white;
}

.form-header {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-field {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-button {
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 8px;
  margin-top: 1rem;
}

/* App Section */
.app-section {
  padding: 100px 0;
  background: var(--background-dark);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  background: #333;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
  background: #000;
  border-radius: 20px;
  padding: 20px;
  height: 500px;
  overflow: hidden;
}

.app-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 2rem;
}

.app-games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
}

.mini-game {
  background: var(--gradient-primary);
  border-radius: 8px;
  opacity: 0.8;
  animation: miniGamePulse 3s ease-in-out infinite;
}

.mini-game:nth-child(2) { animation-delay: 0.5s; }
.mini-game:nth-child(3) { animation-delay: 1s; }
.mini-game:nth-child(4) { animation-delay: 1.5s; }

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

.app-features {
  list-style: none;
  margin: 2rem 0;
}

.app-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-features li:last-child {
  border-bottom: none;
}

.app-download {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.review-card {
  background: var(--background-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 255, 255, 0.1);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.review-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.review-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.reviewer .name {
  font-weight: 600;
  color: var(--primary-color);
}

.reviewer .location {
  color: var(--text-secondary);
}

/* Content Section */
.content-section {
  padding: 100px 0;
  background: var(--background-dark);
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.main-content h2 {
  margin: 3rem 0 1.5rem 0;
  color: var(--primary-color);
}

.main-content h3 {
  margin: 2.5rem 0 1rem 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.main-content p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.main-content strong {
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, var(--background-dark) 70%);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Footer */
.footer {
  background: #0d0d0d;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4,
.footer-section h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.badge {
  background: rgba(0, 255, 255, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title .neon-text {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title .neon-text {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .guide-content,
  .app-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero {
    min-height: 80vh;
    padding: 100px 0 50px;
  }
  
  .hero-title .neon-text {
    font-size: 2rem;
  }
  
  .hero-title .subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .games-grid,
  .bonus-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
  
  .navbar-actions {
    gap: 0.5rem;
  }
  
  .navbar-actions .btn {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .hero-title .neon-text {
    font-size: 1.8rem;
  }
  
  .feature-card,
  .game-card,
  .bonus-card,
  .review-card {
    padding: 1.5rem;
  }
  
  .bonus-card.featured {
    transform: none;
  }
  
  .guide-steps li {
    padding-left: 3rem;
  }
  
  .guide-steps li::before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
.btn:focus,
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .hero-cta,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .main-content {
    max-width: none;
  }
}