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

:root {
  --color-navy: #0a0e27;
  --color-dark-purple: #1a1530;
  --color-burgundy: #6b2942;
  --color-brown: #8b6b47;
  --color-gold: #c4a05f;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --font-main: "Nunito Sans", sans-serif;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, #00033f 0%, #a56e00 100%);
  color: var(--color-white);
  line-height: 1.6;
  min-height: 100vh;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-dark-purple) 100%
  );
  padding: 40px;
  border-radius: 20px;
  max-width: 690px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);

  border-radius: 40px;
  border: 1px solid rgba(232, 232, 237, 0.08);
  background: linear-gradient(180deg, #00033f 0%, #a56e00 100%);
  box-shadow: 0 0 32.5px 24px rgba(0, 0, 0, 0.15);
}

.modal-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;

  color: #fff;
  font-family: "Nunito Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 60px */
  text-align: left;
}

.modal-text {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.6;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  text-align: left;
}

.modal-subtext {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 30px;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  text-align: left;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.btn-primary,
.btn-secondary,
.btn-tertiary,
.btn-discover {
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}
.btn-discover {
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #c8c8c8 100%);
}

.btn-primary:hover {
  background-color: var(--color-light-gray);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-tertiary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Underage Screen */
.underage-screen {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  align-items: center;
  justify-content: center;
}

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

.underage-content {
  text-align: center;
}

.underage-content h1 {
  font-size: 8rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.underage-content p {
  font-size: 1.5rem;
  opacity: 0.8;
}

/* Main Content */
#mainContent {
  display: none;
}

#mainContent.active {
  display: block;
}

header {
  text-align: center;
  padding: 30px 20px;
}
header a {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 80%; /* 19.2px */
  letter-spacing: -0.72px;
  text-decoration: none;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
  margin-bottom: 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  padding-right: 20px;
}

.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-right p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Platforms Section */
.platforms {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 100px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 200px 1fr 160px 180px;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);

  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box {
  background: var(--color-burgundy);
  border-radius: 15px;
  padding: 25px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  width: 100%;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
}

.logo-pmu {
  background: linear-gradient(135deg, #8b5a3c 0%, #6d4426 100%);
}

.logo-pmu .logo-text {
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
}

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

.logo-subtitle {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: -5px;
}

.logo-geny {
  background: linear-gradient(135deg, #c4a05f 0%, #8b6b47 100%);
}

.logo-geny .logo-text {
  font-size: 2rem;
  font-weight: 700;
}

.logo-highlight {
  font-weight: 900;
}

.logo-parions {
  background: linear-gradient(135deg, #3d6b7d 0%, #2a4d5c 100%);
  gap: 5px;
}

.logo-icon {
  font-size: 2rem;
  margin-bottom: 5px;
}

.logo-parions .logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-subtitle-2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-top: -5px;
}

.logo-subtext {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.platform-b {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 5px;
  margin-left: 24px;
}

.bonus-amount {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Nunito Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 32px */
  letter-spacing: -0.96px;
}

.bonus-text {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;

  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Nunito Sans";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 25.5px */
  letter-spacing: -0.51px;
  text-transform: uppercase;
}

.platform-description {
  display: flex;
  align-items: center;
  max-width: 263px;
}

.platform-description p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}

.platform-p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-icons {
  gap: 8px;
}

.payment-icon {
  background: var(--color-white);
  color: var(--color-navy);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;
  background: linear-gradient(180deg, #fff 0%, #c8c8c8 100%);
}

.platform-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-discover {
  background-color: var(--color-white);
  color: var(--color-navy);
  padding: 18px 45px;
  white-space: nowrap;
  font-size: 1.1rem;
  width: 100%;

  border-radius: 15px;
  background: linear-gradient(180deg, #fff 0%, #c8c8c8 100%);
}

.btn-discover:hover {
  background-color: var(--color-light-gray);
  transform: translateY(-2px);
}

/* Info Section */
.info-section {
  margin-bottom: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.info-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 10px 0;
  line-height: 1.6;
}

.info-box p {
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Legal Section */
.legal-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.legal-section h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.legal-section p {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  text-align: center;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-logos img {
  max-height: 50px;
  width: auto;
}

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

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

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

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: left;
}

.footer-age {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.center_flex {
  display: flex;
  gap: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .platform-card {
    grid-template-columns: 180px 150px 1fr 140px 160px;
    gap: 20px;
    padding: 25px 30px;
  }

  .logo-box {
    padding: 20px 25px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-left {
    padding-right: 0;
  }

  .platform-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
    padding: 30px;
  }

  .platform-logo {
    margin: 0 auto;
    max-width: 250px;
  }

  .logo-box {
    width: 100%;
  }

  .platform-b {
    align-items: center;
  }

  .platform-description {
    justify-content: center;
  }

  .platform-p {
    margin: 0 auto;
  }

  .p-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 300px;
  }

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

@media (max-width: 768px) {
  .p-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .center_flex {
    gap: 10px;
  }
  .platform-logo {
    max-width: 100%;
  }
  .logo-box {
    padding: 0px 100px;
  }
  .platform-description {
    max-width: 200px;
  }
  .hero-title {
    font-size: 2rem;
  }

  .hero-right p {
    font-size: 0.95rem;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-tertiary,
  .btn-discover {
    width: 100%;
    padding: 15px 20px;
  }

  .bonus-amount {
    font-size: 2.2rem;
  }

  .logo-text {
    font-size: 1.6rem;
  }

  .logo-pmu .logo-text {
    font-size: 2rem;
  }

  .info-box {
    padding: 25px;
  }

  .legal-section {
    padding: 25px;
  }

  .footer-info {
    flex-direction: column;
    text-align: center;
  }

  .footer-logos {
    gap: 20px;
    justify-content: left;
  }

  .footer-logos img {
    max-height: 40px;
  }

  .footer-nav {
    justify-content: left;
    gap: 15px;
  }

  .underage-content h1 {
    font-size: 5rem;
  }

  .underage-content p {
    font-size: 1.2rem;
  }
}

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

  .hero-right p {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .platform-card {
    padding: 20px;
  }

  .bonus-amount {
    font-size: 1.8rem;
  }

  .bonus-text {
    font-size: 0.85rem;
  }

  .platform-description p {
    font-size: 0.9rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-pmu .logo-text {
    font-size: 1.8rem;
  }

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

  .info-box h3,
  .legal-section h3 {
    font-size: 32px;

    color: #fff;
    leading-trim: both;
    text-edge: cap;
    font-family: "Nunito Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 90%; /* 28.8px */
  }
  .footer-info {
    justify-content: left;
    align-items: flex-start;
  }
}
