@font-face {
font-family: "NeoSansProBold";
src: url("../font/NeoSansProBold.OTF");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NeoSansProMedium";
src: url("../font/NeoSansProMedium.OTF");
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: "NeoSansProRegular";
src: url("../font/NeoSansProRegular.OTF");
font-weight: normal;
font-style: normal;
}


    :root {
      --primary: #e63757;
      --secondary: #ffb74d;
      --dark-bg: #101322;
      --card-bg: #1a1f36;
      --light-text: #ffffff;
      --gray-text: #a0aec0;
      --border-radius: 10px;
      --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      --transition: all 0.3s ease;
    }

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

    body { 
      font-family: 'Poppins', sans-serif; 
      background: var(--dark-bg); 
      color: var(--light-text); 
      line-height: 1.6; 
    }

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

    a { 
      text-decoration: none; 
      color: inherit; 
      transition: var(--transition);
    }

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

    ul {
      list-style: none;
    }

    .btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-primary {
      background: var(--primary);
      color: var(--light-text);
      border: 2px solid var(--primary);
    }

    .btn-primary:hover {
      background: transparent;
      color: var(--primary);
    }

    .btn-secondary {
      background: var(--light-text);
      color: var(--dark-bg);
      border: 2px solid var(--light-text);
    }

    .btn-secondary:hover {
      background: transparent;
      color: var(--light-text);
    }

    .btn-outline {
      background: transparent;
      color: var(--light-text);
      border: 2px solid var(--light-text);
    }

    .btn-outline:hover {
      background: var(--light-text);
      color: var(--dark-bg);
    }

    /* Header */
    .header { 
      background: rgba(26, 31, 54, 0.95); 
      padding: 5px 0; 
      position: sticky; 
      top: 0; 
      left: 0; 
      right: 0; 
      z-index: 1000; 
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
    }

    .header-container { 
      width: 100%; 
      z-index: 1000; 
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
    }

    .nav-container { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
    }

    .logo { 
      font-size: 28px; 
      font-weight: 700; 
      color: var(--light-text); 
      display: flex;
      align-items: center;
    }

    .logo span { 
      color: var(--primary); 
    }

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

    .nav a { 
      color: var(--gray-text); 
      font-weight: 500;
      position: relative;
      padding: 5px 0;
    }

    .nav a:hover { 
      color: var(--primary); 
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }

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

    .btn-menu { 
      display: none; 
      background: none; 
      border: none; 
      color: var(--light-text); 
      font-size: 22px; 
      cursor: pointer;
    }

    /* Hero */
    .hero { 
      padding: 180px 0 180px; 
      background: linear-gradient(135deg, #1a1f36, #2c3454); 
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../images/heroimg.webp') no-repeat right center;
      background-size: contain;
      opacity: 0.4;
      z-index: 0;
    }

    .hero-content { 
      display: flex; 
      flex-wrap: wrap; 
      align-items: center; 
      gap: 50px; 
      position: relative;
      z-index: 1;
    }

    .hero-text {
      flex: 1;
      min-width: 300px;
    }

    .hero h1 { 
      font-size: 48px; 
      line-height: 1.2; 
      margin-bottom: 20px;
      font-weight: 700;
       font-family: "SUSE Mono", sans-serif;
    }

    .hero h1 span { 
      color: var(--primary); 
      position: relative;
      display: inline-block;
    }



    .hero p { 
      margin: 20px 0 30px; 
      color: var(--gray-text); 
      font-size: 18px;
      max-width: 600px;
    }

    .hero-buttons { 
      display: flex; 
      gap: 15px; 
      flex-wrap: wrap;
    }

    .hero-img {
      flex: 1;
      min-width: 300px;
      position: relative;
      z-index: 2;
    }

    .hero-img img { 
      max-width: 100%; 
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    /* Sections */
    section { 
      padding: 80px 0; 
      position: relative;
    }

    .section-title {
      text-align: center; 
      margin-bottom: 60px; 
    }

    .section-title h2 { 
      font-size: 40px; 
      font-weight: 700;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
       font-family: "SUSE Mono", sans-serif;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
    }

    .section-title p {
      color: var(--gray-text);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Cards */
    .cards { 
      display: flex; 
      gap: 30px; 
      justify-content: center; 
      flex-wrap: wrap; 
    }

    .card { 
      background: var(--card-bg); 
      padding: 30px; 
      border-radius: var(--border-radius); 
      text-align: center; 
      width: 300px; 
      transition: var(--transition); 
      box-shadow: var(--box-shadow);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }

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

    .card:hover::before {
      transform: scaleX(1);
    }

    .card i { 
      font-size: 48px; 
      color: var(--primary); 
      margin-bottom: 20px; 
      display: inline-block;
      transition: var(--transition);
    }

    .card:hover i {
      transform: scale(1.1);
    }

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

    .card p {
      color: var(--gray-text);
    }

    /* Casino Selections */
    .selecciones {
      background: linear-gradient(135deg, #131729, #1d2340);
    }

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

    .casino-box { 
      background: var(--card-bg); 
      padding: 30px; 
      border-radius: var(--border-radius); 
      display: flex;
      flex-direction: column;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .casino-box:hover {
      transform: translateY(-5px);
    }

    .casino-top {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .casino-logo {
      width: 80px;
      height: 80px;
      background: white;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .casino-logo img {
      max-width: 90%;
      max-height: 90%;
    }

    .casino-info h3 { 
      font-size: 24px; 
      margin-bottom: 5px; 
    }

    .casino-rating {
      display: flex;
      gap: 5px;
      color: var(--secondary);
      margin-top: 5px;
    }

    .casino-features {
      margin: 20px 0;
    }

    .casino-features ul li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .casino-features ul li i {
      color: #4CAF50;
    }

    .casino-bonus {
      background: rgba(230, 55, 87, 0.1);
      padding: 15px;
      border-radius: var(--border-radius);
      margin-bottom: 20px;
      border-left: 3px solid var(--primary);
    }

    .casino-bonus h4 {
      color: var(--primary);
      margin-bottom: 5px;
    }

    .casino-actions {
      margin-top: auto;
      display: flex;
      gap: 15px;
    }

    .btn-highlight { 
      background: var(--primary); 
      color: var(--light-text);
      flex: 1;
    }

    .btn-review {
      background: transparent;
      border: 1px solid var(--gray-text);
      color: var(--gray-text);
      padding: 12px 20px;
      border-radius: 30px;
      font-weight: 500;
      transition: var(--transition);
    }

    .btn-review:hover {
      background: rgba(255, 255, 255, 0.1);
      color: var(--light-text);
    }

    /* Pagos */
    .pagos-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); 
      gap: 20px; 
      text-align: center; 
    }

    .pago { 
      background: var(--card-bg); 
      padding: 10px 9px; 
      border-radius: var(--border-radius); 
      transition: var(--transition);
      box-shadow: var(--box-shadow);
    }

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

    .pago i { 
      font-size: 36px; 
      margin-bottom: 15px; 
      color: var(--primary); 
    }

    .pago p {
      font-weight: 500;
    }

    /* Móvil */
    .movil {
      background: linear-gradient(135deg, #131729, #1d2340);
      overflow: hidden;
    }

    .movil-content { 
      display: flex; 
      flex-wrap: wrap; 
      align-items: center; 
      gap: 50px; 
    }

    .movil-text {
      flex: 1;
      min-width: 300px;
    }

    .movil-text h2 {
      text-align: left;
      margin-bottom: 20px;
      font-size: 40px;
       font-family: "SUSE Mono", sans-serif;
    }

    .movil-text p {
      margin-bottom: 25px;
      color: var(--gray-text);
    }

    .movil-features {
      margin: 30px 0;
    }

    .movil-features li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .movil-features li i {
      color: var(--secondary);
      font-size: 20px;
    }

    .movil-img {
      flex: 1;
      min-width: 300px;
      text-align: center;
      position: relative;
    }

    .movil-img img { 
      /* max-width: 300px;  */
      filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
      animation: float 3s ease-in-out infinite;
      border-radius: 20px;
    }

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

    .responsable-box { 
      background: var(--card-bg); 
      padding: 30px; 
      border-radius: var(--border-radius); 
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      height: 100%;
    }

    .responsable-box:hover {
      transform: translateY(-5px);
    }

    .responsable-box h3 {
      font-size: 22px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .responsable-box h3 i {
      color: var(--primary);
    }
    .responsable-box ul{
       margin-top: 10px; 
    }

    .responsable-box ul li {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .responsable-box ul li i {
      color: #f44336;
      margin-top: 3px;
    }

    /* Newsletter */
    .newsletter { 
      background: var(--primary); 
      color: var(--light-text); 
      text-align: center; 
      padding: 70px 20px; 
    }

    .newsletter h2 {
      margin-bottom: 20px;
       font-family: "SUSE Mono", sans-serif;
    }

    .newsletter p {
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter form { 
      display: flex; 
      justify-content: center; 
      gap: 10px; 
      max-width: 500px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .newsletter input { 
      padding: 15px 20px; 
      border-radius: 30px; 
      border: none; 
      flex: 1;
      min-width: 250px;
      font-size: 16px;
    }

    .newsletter button { 
      padding: 15px 30px; 
      border: none; 
      border-radius: 30px; 
      background: var(--dark-bg); 
      color: var(--light-text); 
      font-weight: 600; 
      cursor: pointer; 
      transition: var(--transition);
    }

    .newsletter button:hover {
      background: var(--card-bg);
      transform: translateY(-3px);
    }

    /* Partners */
    .partners {
      text-align: center;
      padding: 60px 0;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 30px;
      align-items: center;
      margin-top: 40px;
    }

    .partner {
      background: var(--card-bg);
      /* padding: 20px; */
      border-radius: var(--border-radius);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      transition: var(--transition);
    }

    .partner:hover {
      transform: translateY(-5px);
      box-shadow: var(--box-shadow);
    }

    .partner img {
      max-width: 80%;
      max-height: 60px;
      /* filter: grayscale(100%) brightness(1.5); */
      transition: var(--transition);
    }

    .partner:hover img {
      filter: grayscale(0%) brightness(1);
    }

   /* Footer */
.footer {
  background: var(--card-bg);
  padding: 50px 20px 20px;
  color: var(--gray-text);
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}


.footer-logo span {
  color: var(--primary);
}

.footer-disclaimer {
  margin: 20px auto 20px;
  max-width: 700px;
  line-height: 1.6;
  color: var(--gray-text);
  font-size: 15px;
}
.footer-disclaimer .highlight {
  color: var(--primary);
  font-weight: 600;
}

.footer-links {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray-text);
  transition: var(--transition);
  font-size: 14px;
}
.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 15px;
  color: var(--gray-text);
  font-size: 13px;
}


    /* Responsive */
    @media (max-width: 992px) {
      .hero {
        padding: 80px 0 80px;
      }
      
      .hero h1 {
        font-size: 40px;
      }
      
      .section-title h2 {
        font-size: 32px;
      }
    }

    @media (max-width: 768px) {
      .nav { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 70px; 
        right: 20px; 
        background: var(--card-bg); 
        padding: 20px; 
        border-radius: var(--border-radius); 
        box-shadow: var(--box-shadow);
        min-width: 200px;
      }
      
      .nav.active { 
        display: flex; 
      }
      
      .btn-menu { 
        display: block; 
      }
      
      .hero h1 {
        font-size: 36px;
      }
      
      .hero-content {
        text-align: center;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .section-title h2 {
        font-size: 28px;
      }
      
      .movil-text h2 {
        text-align: center;
        font-size: 26px;
      }
      .hero::before{
          background: linear-gradient(135deg, #1a1f36, #2c3454) !important;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 30px;
      }
      
      .btn {
        width: 100%;
        margin-bottom: 10px;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .section-title h2 {
        font-size: 26px;
      }
      
      .casino-top {
        flex-direction: column;
        text-align: center;
      }
      
      .casino-logo {
        margin: 0 auto;
      }
      
      .casino-actions {
        flex-direction: column;
      }
    }

    /* table */

.table__items .table__item {
display: flex;
justify-content: space-between;
background-color: #f8f9fa;
border-radius: 20px;
width: 100%;
padding: 10px 40px 10px 10px;
margin-bottom: 20px;
height: 160px;
box-shadow: 0 1px 6px 0 rgb(32 33 36 / 18%);
font-family: "NeoSansProRegular";
border-bottom: 3px solid var(--secondary);
}

.table__items .table__item:last-child {
margin-bottom: 0;
}

.table__items .item__logo {
display: flex;
flex-direction: column;
}

.table__items .item__logo .logo {
display: flex;
margin: auto 0;
}

.table__items .item__logo h3 {
font-size: 16px;
color: #000;
text-align: center;
}

.table__items .item__offers {
display: flex;
flex-direction: column;
max-width: 250px;
width: 100%;
justify-content: center;
}

.table__items .item__offer {
display: flex;
flex-direction: column;
}

.table__items .item__offers .reputation {
display: flex;
align-items: center;
font-size: 14px;
color: #44c940;
font-family: "NeoSansProMedium";
margin: 10px 0;
}

.table__items .item__offers .reputation img {
margin: 0 0 -2px 10px;
}

.table__items .item__offers .casino__info li {
display: flex;
align-items: center;
font-size: 12px;
color: #525252;
font-family: "NeoSansProMedium";
}

.table__items .item__offers .casino__info li > img {
margin-right: 5px;
margin-top: -2px;
}

.table__items .badge {
display: flex;
align-items: center;
justify-content: center;
min-width: 180px;
height: 15px;
font-size: 12px;
line-height: 15px;
color: #ffffff;
background-color: #cc0012;
border-radius: 3px;
font-family: "NeoSansProBold";
}

.table__items .item__logo .badge {
display: none !important;
}

.table__items .badge.none {
background-color: transparent;
}

.table__items .item__info {
margin: auto 0;
max-width: 225px;
width: 100%;
}

.table__items .item__info p {
font-size: 14px;
color: #cc0012;
text-align: center;
margin-bottom: 10px;
font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
font-size: 16px;
line-height: 20px;
color: #000;
text-align: center;
font-family: "NeoSansProBold";
}

.table__items .item__action {
width: 100%;
max-width: 280px;
margin: auto 0;
}

.table__items .item__action .casino__link {
display: flex;
align-items: center;
justify-content: center;
height: 56px;
width: 100%;
border-radius: 30px;
background-color: #ffde00;
font-size: 18px;
color: #000000;
text-transform: uppercase;
padding-top: 2px;
text-decoration: none;
font-family: "NeoSansProBold";
}

.table__items .item__action .casino__payments {
display: block;
position: relative;
width: 250px;
height: max-content;
overflow: hidden;
margin: 0 auto;
}

.table__items .item__action .casino__payments .items {
display: flex;
align-items: center;
justify-content: center;
}

.table__items .item__action .casino__payments img {
margin: 0 5px;
}
.items img {
height: 35px;
}
.casino__info img {
height: 9px;
}
.reputation img {
height: 8px;
}

/* table responsive */

@media screen and (min-width: 1024px) and (max-width: 1140px) {
.slick__offers .slide .casino__payments,
.table__items .item__action .casino__payments {
width: 200px;
}

.table__items .item__logo .badge {
display: none !important;
}

.table__items .item__logo .logo img {
width: 200px;
}

.table__items .item__action {
max-width: 234px;
}
}

@media screen and (min-width: 768px) and (max-width: 1023.98px) {
.table__items {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}

.table__items .table__item {
flex-direction: column;
margin: 0;
height: auto;
padding: 10px;
align-items: center;
}

.table__items .badge {
margin: 10px auto 0;
}

.table__items .item__logo .badge {
display: flex !important;
}

.table__items .item__logo .badge.none {
margin: 0;
}

.table__items .item__offers .badge.none {
height: 0;
margin: 0;
}

.table__items .item__info {
margin: 20px 0;
}
}

@media screen and (max-width: 767px) {
.table__items .table__item {
flex-direction: column;
align-items: center;
height: max-content;
padding: 20px;
margin-bottom: 5px;
}

.table__casinos thead tr th:nth-child(2),
.table__casinos thead tr th:nth-child(4) {
display: none;
}

.table__casinos tbody tr td:nth-child(2),
.table__casinos tbody tr td:nth-child(4) {
display: none;
}

.table__items .badge {
margin: 10px auto 0;
}

.table__items .item__offers {
display: none;
}

.table__items .item__logo .badge {
display: flex !important;
}

.table__items .item__info {
margin: auto 0 15px;
}

.table__items .item__action .casino__payments {
width: 230px;
}
}

@media screen and (max-width: 320px) {
.table__items .item__action .casino__link {
height: 50px;
}

.table__casinos tbody tr td:first-child img {
height: 45px;
}
}


/* policy pages */

.privacy-main {
  background-color:var(--border-color);
  padding-top: 50px;
  padding-bottom: 60px;
}

.privacy-content {

  /* padding: 40px; */
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}


.privacy-content h2 {
  font-size: 2.2em;
  color: var(--accent-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: center;
}
.privacy-content h3 {
  font-size: 1.2rem;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2.2em;
  }

  .privacy-content h2 {
    font-size: 1.5em;
  }
}




#age-verification-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999; 
  font-family: 'Arial', sans-serif;
}

.age-verification-content {
  max-width: 500px;
  width: 90%;
  background: var(--dark-bg);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 20px var(--primary);
  animation: popupFadeIn 0.4s ease;
}

.age-verification-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.age-verification-content p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 15px;
}

.age-btn {
  flex: 1;
  padding: 12px 15px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.age-btn.confirm {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  font-weight: bold;
}

.age-btn.confirm:hover {
  background: linear-gradient(135deg, #ffb400, #e67300);
}

.age-btn.deny {
  background: #444;
  color: #fff;
}

.age-btn.deny:hover {
  background: #666;
}

.responsible-gaming {
  font-size: 13px;
  color: #ccc;
}

.responsible-gaming span {
  color: #ffd700;
  font-weight: 500;
}

@keyframes popupFadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .age-verification-content {
    padding: 20px 15px;
  }
  .age-verification-content h2 {
    font-size: 20px;
  }
  .age-btn {
    font-size: 14px;
    padding: 10px;
  }
}


/* age restriction page */


        .age-restriction {
        
            background-color: var(--dark-bg);
            color: #f1faee;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .age-container {
            max-width: 600px;
            padding: 40px;
           
            border-radius: 8px;
            
        }

       .age-container h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: var(--secondary);
            margin-bottom: 20px;
        }

       .age-container p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .warning-box {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .warning-box p {
            margin: 0;
            font-size: 1em;
            color: #f1faee;
        }
