.policy,
.success {
  padding-block: 120px 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: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, #ffb800 0%, #ff8c00 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.btn-large {
  font-size: 18px;
  padding: 18px 40px;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 15px;
}

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

.btn-link {
  background: transparent;
  color: white;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

/* Black Screen */
.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;
}

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

.black-screen-content {
  text-align: center;
  color: white;
}

.black-screen-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* 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: 9999;
}

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

.popup-content {
  background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  color: white;
}

.age-popup {
  background: #1a1a1a;
}

.age-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
}

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

.cookie-popup .cookie-icon img {
  width: 80px;
  height: 80px;
}

.popup-content h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.popup-content p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

/* Header */
.header {
  background: #1a1a1a;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

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

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

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

.nav-link:hover {
  color: #ffb800;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.header-notice {
  background: #2a2a2a;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.notice-icon {
  font-size: 18px;
}

/* Main Content */
#mainContent {
  margin-top: 120px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #87ceeb 0%, #00bfff 50%, #1e90ff 100%);
  padding: 80px 0;
  color: white;
}

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

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffb800;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
}

/* Why Choose Us */
.why-choose {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.why-choose h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

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

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

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 16px;
  color: #ccc;
}

/* Top Games */
.top-games {
  background: linear-gradient(135deg, #87ceeb 0%, #00bfff 50%, #1e90ff 100%);
  padding: 80px 0;
  color: white;
}

.top-games h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #ffb800;
}

.game-featured {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.game-featured h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

.game-iframe-container {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-iframe-container iframe {
  border-radius: 10px;
  min-height: 400px;
}

/* More Reasons */
.more-reasons {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.more-reasons h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.reason-card {
  background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

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

.reason-icon img {
  width: 50px;
  height: 50px;
}

.reason-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.reason-card p {
  font-size: 14px;
  color: #e6f3ff;
}

/* About */
.about {
  background: linear-gradient(135deg, #87ceeb 0%, #00bfff 50%, #1e90ff 100%);
  padding: 80px 0;
  color: white;
}

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

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffb800;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  display: block;
}

/* Reviews */
.reviews {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.reviews h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.review-card {
  background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
}

.stars {
  color: #ffb800;
  font-size: 20px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  font-weight: 600;
  font-size: 14px;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #87ceeb 0%, #00bfff 50%, #1e90ff 100%);
  padding: 80px 0;
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact > p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  color: white;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
}

.contact-form input {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  background: white;
}

.contact-form input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 184, 0, 0.5);
}

.disclaimer {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.disclaimer h3 {
  color: #ffb800;
  margin-bottom: 15px;
}

.disclaimer p {
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 60px 0 20px;
  color: white;
  text-align: center;
}

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

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-icons img {
  height: 40px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 12px;
  border-radius: 24px;
}

.footer-badges img {
  height: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

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

.footer-links a:hover {
  color: #ffb800;
}

.footer-copyright {
  font-size: 12px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #1a1a1a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

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

  .nav-menu .nav-link {
    padding: 20px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
  }

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

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

  .features-grid,
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-icons,
  .footer-badges,
  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }

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

  .popup-content h2 {
    font-size: 24px;
  }

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

  .header-notice {
    font-size: 12px;
    padding: 8px 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }

  .btn-large {
    padding: 15px 30px;
    font-size: 16px;
  }
}
