.policy,
.success {
  padding-block: 190px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}

.policy__text h2 {
  text-align: left;
  font-size: 22px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 19px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

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

body {
  font-family: "Roboto Serif", serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(180deg, #1d1d1d 0%, #0d151b 100%);
  overflow-x: hidden;
}

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

/* Utility Classes */
.btn-primary {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #4ecdc4;
  padding: 12px 30px;
  border: 2px solid #4ecdc4;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-secondary:hover {
  background: #4ecdc4;
  color: white;
}

.btn-link {
  background: none;
  border: none;
  color: #4ecdc4;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

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

.popup-overlay.hidden {
  display: none;
}

/* Cookie popup with lighter background */
#cookiePopup {
  background: rgba(0, 0, 0, 0.2);
}

.popup-content {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.age-popup .age-icon {
  width: 80px;
  height: 80px;
  background: #ff4757;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  border: 4px solid #fff;
}

.cookie-popup .cookie-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.popup-content h2,
.popup-content h3 {
  margin-bottom: 20px;
  color: #4ecdc4;
}

.popup-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.popup-content button {
  margin: 10px;
}

.black-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  color: white;
  font-size: 24px;
}

.black-screen.show {
  display: flex;
}

.site-content {
  display: block;
}

.site-content.show {
  display: block;
}

/* Header Styles */
.header {
  background: #5b8d95;
  padding: 15px 0 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand a {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #e8f5e8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-disclaimer {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* Privacy Section */
.privacy-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.privacy-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #4ecdc4;
}

.privacy-section > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0.8;
}

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

.benefit-card {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: #333;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card:nth-child(1) {
  background: linear-gradient(145deg, #ffeaa7, #fdcb6e);
}

.benefit-card:nth-child(2) {
  background: linear-gradient(145deg, #a29bfe, #6c5ce7);
  color: white;
}

.benefit-card:nth-child(3) {
  background: linear-gradient(145deg, #fd79a8, #e84393);
  color: white;
}

.benefit-card:nth-child(4) {
  background: linear-gradient(145deg, #74b9ff, #0984e3);
  color: white;
}

.benefit-card:nth-child(5) {
  background: linear-gradient(145deg, #55efc4, #00b894);
}

.benefit-icon {
  margin-bottom: 20px;
}

.benefit-icon img {
  width: 60px;
  height: 60px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Games Section */
.games-section {
  padding: 80px 0;
  background: #262626;
}

.games-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
  color: #4ecdc4;
}

.games-subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffd700;
}

.games-section > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.game-container {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #1a1a1a;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #4ecdc4;
}

.testimonials-section > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
  opacity: 0.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-content h4 {
  color: #4ecdc4;
  margin-bottom: 5px;
}

.stars {
  margin-bottom: 15px;
  color: #ffd700;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.6;
}

/* Ultimate Gaming Section */
.ultimate-gaming {
  padding: 80px 0;
  background: #ccede1;
}

.ultimate-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.ultimate-gaming h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: rgb(0, 0, 0);
}

.ultimate-gaming h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #000000;
}

.ultimate-gaming p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000000;
}

.ultimate-image img {
  max-width: 100%;
  height: auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #262626;
}

.features-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 60px;
  color: #4ecdc4;
}

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

.feature-card {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  padding: 40px 30px;
  border-radius: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card:nth-child(1) {
  background: linear-gradient(145deg, #e17055, #d63031);
  color: white;
}

.feature-card:nth-child(2) {
  background: linear-gradient(145deg, #00b894, #00a085);
  color: white;
}

.feature-card:nth-child(3) {
  background: linear-gradient(145deg, #6c5ce7, #5f3dc4);
  color: white;
}

.feature-card:nth-child(4) {
  background: linear-gradient(145deg, #fd79a8, #e84393);
  color: white;
}

.feature-card:nth-child(5) {
  background: linear-gradient(145deg, #fdcb6e, #e17055);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-form input {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-family: "Roboto Serif", serif;
}

.contact-form input::placeholder {
  color: #666;
}

.contact-form button {
  width: 100%;
  margin-bottom: 0;
}

/* Footer */
.footer {
  background: #1a1a1a;
}

.disclaimer-section {
  background: #2a2a2a;
  padding: 40px 0;
  border-top: 3px solid #4ecdc4;
}

.disclaimer-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.age-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.disclaimer-text h3 {
  color: #4ecdc4;
  margin-bottom: 15px;
  font-size: 24px;
}

.disclaimer-text p {
  line-height: 1.6;
  opacity: 0.8;
}

.footer-main {
  background: #4ecdc4;
  padding: 40px 0 20px;
  color: white;
}

.footer-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.app-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}

.app-badges img {
  height: 58px;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.responsible-gaming {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  background-color: #fff;
  padding: 14px;
  border-radius: 14px;
}

.responsible-gaming img {
  height: 40px;
  
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.legal-links {
  display: flex;

  gap: 10px;
}

.legal-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.legal-links a:hover {
  opacity: 0.8;
}

.copyright p {
  font-size: 12px;
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #4ecdc4;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 200px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .ultimate-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .disclaimer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-main .container {
    gap: 30px;
    text-align: center;
  }

  .footer-legal {
    text-align: center;
  }

  .popup-content {
    margin: 20px;
    padding: 30px 20px;
  }

  .popup-content h2,
  .popup-content h3 {
    font-size: 20px;
  }

  .game-container iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p,
  .privacy-section > p,
  .testimonials-section > .container > p {
    font-size: 16px;
  }

  .popup-content {
    padding: 20px 15px;
  }

  .popup-content button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .game-container iframe {
    height: 300px;
  }

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.feature-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

.info-banner {
  background: #000000;
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid #00928f;
  border-bottom: 1px solid #00928f;
}

.info-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
