@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-style: normal;
}





:root {
    --primary: #1a365d;
    --primary-dark: #0f1f38;
    --accent: #e53e3e;
    --accent-light: #f56565;
    --secondary: #2d3748;
    --light: #f7fafc;
    --muted: #718096;
    --success: #38a169;
    --warning: #d69e2e;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: #f5f7fa;
    overflow-x: hidden;
}
a{
  text-decoration: none;
}

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

/* Header - Fixed Responsive Issues */
.header-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* z-index: 101; */
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
}

.logo-text {
    font-size: 14px;
    color: var(--light);
    font-weight: 800;
}

.logo-text .dot {
    color: var(--accent);
}

.logo-subtext {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header nav {
    display: flex;
    gap: 24px;
}

.site-header nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.site-header nav a:hover {
    color: var(--accent);
}

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

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

.header-buttons {
    display: flex;
    gap: 12px;
   
}

.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-ghost:hover {
    background-color: rgba(26, 54, 93, 0.05);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
}
.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 900px) {
    .hamburger-menu {
        display: flex;
    }
    .nav-container {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px 30px;
        box-shadow: var(--shadow-lg);
        z-index: 200;
        gap: 0;
    }
    .nav-container.show {
        display: flex;
    }
    .site-header nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        display: flex;
    }
    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
        display: flex;
    }
    /* Hide nav/buttons by default on mobile */
    .nav-container:not(.show) nav,
    .nav-container:not(.show) .header-buttons {
        display: none;
    }
  
}

/* Hero Section - Fixed Responsive Issues */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
    align-items: center;
}

.hero-card {
    padding: 20px 0;
}

.kicker {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary);
}

.lead {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.features-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--glass);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Recommended Casino */
.recommended-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.recommended img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.quick-compare {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.quick-compare-title {
    font-weight: 800;
    margin-bottom: 8px;
}

.quick-compare-text {
    font-size: 14px;
    color: var(--muted);
}

/* Cards and Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

/* Process */
.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Mobile Play */
.mobile-play {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mobile-play img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.mobile-play h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

.mobile-play ul {
    margin-top: 16px;
    padding-left: 20px;
}

.mobile-play li {
    margin-bottom: 8px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
}

.faq {
    margin-top: 24px;
}

.q {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.q:hover {
    color: var(--accent);
}

.q span {
    font-size: 1.5rem;
    color: var(--accent);
}

.a {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.a.active {
    padding: 16px 0;
    max-height: 500px;
}

/* Payments */
.payments {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
    align-items: center;

}

.pay-pill {
   display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow); */
    
}
.pay-pill img{
    margin-right: 8px;
    height: 60px;
    width: 60px;
    /* border-radius: 50%; */


}

/* Footer */
.footer-container {
    margin-top: 60px;
    padding: 60px 10px;
    text-align: center;
    background: var(--accent);
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin: 18px 0 0 0;
}
.footer-logos img {
    height: 42px;
    width: auto;
    background: var(--secondary);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 4px 8px;
    object-fit: contain;
    transition: transform 0.2s;
}
.footer-logos img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.footer-responsible {
    margin: 0 auto 0 auto;
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 18px 20px 12px 20px;
    color: #f7fafc;
    font-size: 1rem;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.footer-responsible strong {
    display: block;
    font-size: 1.1rem;
    color: #ffe066;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.footer-responsible p {
    margin: 0;
    color: #f7fafc;
    font-size: 0.98rem;
}
.footer-warning {
    display: block;
    margin-top: 10px;
    color: #ffd6d6;
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.footer-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: white;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .footer-logos {
        gap: 10px;
    }
    .footer-logos img {
        height: 28px;
        padding: 2px 4px;
    }
    .footer-responsible {
        font-size: 0.93rem;
        padding: 12px 8px 8px 8px;
    }
}

/* Casino Table Section - Fixed Responsive Issues */
.casino-section {
    padding: 60px 0;
}

.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(--primary);
}

.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;
  }
}


/* Section Titles */
.section-title {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

.mobile-play-section .section-title{
  text-align: left ;
}
/* Common Section Padding */
.why-us-section,
.stats-section,
.selection-process-section,
.mobile-play-section,
.faq-section,
.payments-section {
    padding: 60px 0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-row {
        justify-content: center;
    }
    
    .mobile-play {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
}

/* Tablets */
@media (max-width: 900px) {
    .nav-container {
        position: fixed;
        top: 0;
        
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        /* box-shadow: var(--shadow-lg); */
        transition: right 0.3s ease;
        z-index: 100;
    }
    
    .nav-container.open {
        right: 0;
    }
    
    .site-header nav {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 20px;
    }
    
    .header-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    h1 {
        font-size: 2rem;
    }
    
   
}

/* Mobile Devices */
@media (max-width: 768px) {
    .wrap {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        max-width: 300px;
    }
    
    .grid,
    .process,
    .stats {
        grid-template-columns: 1fr;
    }
    
    .mobile-play {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
  .mobile-play-section .section-title{
  text-align: center ;
}
    
   
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .pay-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
 
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .wrap {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .mobile-play {
        padding: 15px;
    }
}
.copyright{
  color: var(--primary);
  font-weight:700;
}

   /* policy pages */

.privacy-main {
  background-color: var(--border-color);
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.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.8rem;
  }
}


/* age verification  */

      .age-modal-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw; height: 100vh;
        background: rgba(20,24,38,0.88);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;
      }
      .age-modal {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        max-width: 550px;
      
        padding: 32px 22px 24px 22px;
        text-align: center;
        color: #1a365d;
        font-family: 'Inter', sans-serif;
        position: relative;
        animation: popin 0.3s cubic-bezier(.4,0,.2,1);
      }
      @keyframes popin {
        0% { transform: scale(0.92); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
      }
      .age-modal .age-18 {
        font-size: 2.2rem;
        font-weight: 900;
        color: #e53e3e;
        margin-bottom: 8px;
        letter-spacing: 2px;
      }
      .age-modal h2 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 10px;
        color: #1a365d;
      }
      .age-modal p {
        font-size: 1rem;
        color: #2d3748;
        margin-bottom: 22px;
      }
      .age-modal .age-btns {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .age-modal button {
        padding: 10px 18px;
        border-radius: 8px;
        border: none;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.18s, color 0.18s;
      }
      .age-modal .btn-yes {
        background: linear-gradient(90deg,#38a169,#68d391);
        color: #fff;
        box-shadow: 0 2px 8px rgba(56,161,105,0.13);
      }
      .age-modal .btn-yes:hover {
        background: linear-gradient(90deg,#2f855a,#38a169);
      }
      .age-modal .btn-no {
        background: #e53e3e;
        color: #fff;
        box-shadow: 0 2px 8px rgba(229,62,62,0.13);
      }
      .age-modal .btn-no:hover {
        background: #c53030;
      }
      @media (max-width: 480px) {
        .age-modal { padding: 18px 6vw 16px 6vw; max-width: 350px; }
        .age-modal .age-18 { font-size: 1.5rem; }
        .age-modal h2 { font-size: 1.05rem; }
      }
    

/*age restriction page */

 .age-page {
      min-height: 100vh;
      margin: 0;
      padding: 0;
      font-family: 'Inter', Arial, sans-serif;
      background: var(--primary-dark);
      color: #1a365d;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .age-restrict-container {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 32px rgba(26,54,93,0.10);
      max-width: 620px;
    
      padding: 38px 24px 30px 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .age-restrict-title {
      font-size: 1.5rem;
      font-weight: 800;
      color: #e53e3e;
      margin-bottom: 18px;
      letter-spacing: 1px;
    }
    .age-restrict-desc {
      font-size: 1.08rem;
      color: #2d3748;
      margin-bottom: 22px;
      line-height: 1.6;
    }
    .age-restrict-warning {
      font-size: 1rem;
      color: #b83232;
      background: #fff5f5;
      border-radius: 8px;
      padding: 12px 10px 10px 10px;
      font-weight: 600;
      margin-top: 8px;
      box-shadow: 0 2px 8px rgba(229,62,62,0.06);
    }
    @media (max-width: 480px) {
      .age-restrict-container {
        padding: 18px 6vw 16px 6vw;
      }
      .age-restrict-title {
        font-size: 1.1rem;
      }
      .age-restrict-desc {
        font-size: 0.98rem;
      }
      .age-restrict-warning {
        font-size: 0.93rem;
      }
    }