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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(to bottom, #581c87, #7c3aed, #3730a3);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.5);
  position: relative;
  z-index: 50;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-neon {
  color: #ec4899;
}

.logo-lounge {
  color: #22d3ee;
}

.nav-desktop {
  display: none;
}

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

.nav-desktop a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #22d3ee;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #581c87;
  border-top: 1px solid rgba(147, 51, 234, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  padding: 1rem;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: #22d3ee;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 64rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-line {
  display: block;
  color: #22d3ee;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  color: #4ade80;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.btn-hero {
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, #ec4899, #9333ea);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(to right, #db2777, #7c3aed);
  transform: scale(1.05);
}

.btn-cyan {
  background: linear-gradient(to right, #06b6d4, #3b82f6);
  color: #ffffff;
}

.btn-cyan:hover {
  background: linear-gradient(to right, #0891b2, #2563eb);
}

.btn-yellow {
  background: linear-gradient(to right, #eab308, #ea580c);
  color: #ffffff;
}

.btn-yellow:hover {
  background: linear-gradient(to right, #ca8a04, #dc2626);
}

.btn-white {
  background: #ffffff;
  color: #7c3aed;
}

.btn-white:hover {
  background: #f3f4f6;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: rgba(0, 0, 0, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.section-title.pink {
  color: #ec4899;
}

.section-title.cyan {
  color: #22d3ee;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-text {
  color: #ffffff;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #22d3ee;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(88, 28, 135, 0.5), transparent);
  border-radius: 0.5rem;
}

.product-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.product-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.product-card p {
  color: #d1d5db;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
}

.pricing-card {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
}

.pricing-card.popular {
  background: linear-gradient(to bottom, rgba(236, 72, 153, 0.2), rgba(147, 51, 234, 0.2));
  border-color: #ec4899;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ec4899;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #22d3ee;
  margin-bottom: 1.5rem;
}

.price.pink {
  color: #f472b6;
}

.price.yellow {
  color: #facc15;
}

.price span {
  font-size: 1rem;
  color: #9ca3af;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card li {
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  group: hover;
}

.gallery-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
}

.gallery-overlay p {
  color: #ffffff;
  padding: 1rem;
  font-weight: 600;
}

.testimonial-container {
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
}

.testimonial-text {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  color: #22d3ee;
  font-weight: bold;
  font-size: 1.125rem;
}

.testimonial-role {
  color: #9ca3af;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #6b7280;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background: #ec4899;
}

.faq-container {
  max-width: 64rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background: rgba(124, 58, 237, 0.2);
}

.faq-icon {
  color: #22d3ee;
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  color: #d1d5db;
  line-height: 1.7;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
}

.demo-game {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.demo-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.demo-game h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.demo-game p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.25rem;
  color: #ec4899;
  margin-top: 0.25rem;
}

.contact-item p {
  color: #d1d5db;
  margin: 0;
}

.contact-item strong {
  color: #ffffff;
}

.contact-form-container {
  background: rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.5);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(124, 58, 237, 0.5);
  border: 1px solid #7c3aed;
  color: #ffffff;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22d3ee;
}

.disclaimer {
  padding: 2rem 0;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}

.disclaimer p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #581c87;
  border-top: 1px solid rgba(147, 51, 234, 0.5);
  padding: 1rem;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-content p {
  color: #ffffff;
  font-size: 0.875rem;
  margin: 0;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: #7c3aed;
  border: 1px solid #7c3aed;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-close:hover {
  color: #ffffff;
}

.popup h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.popup p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 0;
  border-top: 1px solid rgba(147, 51, 234, 0.5);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #22d3ee;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo img {
    margin: 0 auto;
    width: 290px;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(147, 51, 234, 0.5);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cookie-content {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}