@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&family=Montserrat:wght@600;700&display=swap');

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

:root {
  --primary-purple: #1a0b2e;
  --neon-cyan: #00d9ff;
  --gold-start: #ffd700;
  --gold-end: #ff8c00;
  --bg-dark: #0a0e27;
  --text-white: #ffffff;
  --text-gray: #e0e0e0;
  --card-bg: rgba(26, 11, 46, 0.8);
}

body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-purple) 100%);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h3 {
  font-size: 1.8rem;
  color: var(--neon-cyan);
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--gold-start);
  text-shadow: 0 0 10px var(--gold-start);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 2px solid var(--neon-cyan);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.logo {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon-cyan), var(--gold-start));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--gold-start));
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--primary-purple);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  color: var(--primary-purple);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
  }
  to {
    text-shadow: 0 0 30px var(--neon-cyan), 0 0 50px var(--neon-cyan), 0 0 70px var(--neon-cyan);
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.game-card {
  background: var(--card-bg);
  border: 2px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

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

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

.game-card-content {
  padding: 1.5rem;
}

.game-card h3 {
  margin-bottom: 0.5rem;
}

.game-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.payment-icon {
  width: 80px;
  height: 80px;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 2px solid var(--neon-cyan);
  transition: all 0.3s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--neon-cyan);
}

.content-box {
  background: var(--card-bg);
  border-left: 4px solid var(--gold-start);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.faq-item {
  background: var(--card-bg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--neon-cyan);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.review-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 217, 255, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info h4 {
  color: var(--neon-cyan);
  margin-bottom: 0.25rem;
}

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

.rating {
  color: var(--gold-start);
  font-size: 1.2rem;
}

.review-text {
  color: var(--text-gray);
  line-height: 1.8;
}

.review-date {
  text-align: right;
  color: var(--text-gray);
  font-size: 0.85rem;
  margin-top: 1rem;
}

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid var(--neon-cyan);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

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

.footer-section a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--neon-cyan);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-cyan);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--neon-cyan);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--text-gray);
  font-size: 0.9rem;
}

.age-badge {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin: 1rem;
}

.license-badge {
  width: 120px;
  height: 120px;
  margin: 1rem auto;
  display: block;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    gap: 1rem;
  }
  
  .payment-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero {
    height: 400px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}
