@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;
  --secondary: #e9b949;
  --accent: #2d5b7c;
  --light: #f8f9fa;
  --dark: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --gray: #6c757d;
  --light-bg: #f1f5f9;
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
a{
    text-decoration: none;
}

/* Header Styles */
header {
  background: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
 margin: 0;
  display: flex;
  align-items: center
}

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

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

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

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

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

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin-bottom: 4px;
  border-radius: 5px;
  transition: all 0.3s;
}

/* Hero Section Rediseñada */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(
    135deg,
    rgba(26, 54, 93, 0.9) 0%,
    rgba(45, 91, 124, 0.85) 100%
  ); */
   background: url('../images/hero-bg.webp');
  overflow: hidden;
  padding: 2rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
   background: rgba(26, 54, 93, 0.85);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(233, 185, 73, 0.2);
  color: var(--secondary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233, 185, 73, 0.3);
  backdrop-filter: blur(5px);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title span {
  color: var(--secondary);
  position: relative;
}

.hero-title span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.hero-desc {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature i {
  color: var(--secondary);
  margin-right: 0.7rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(233, 185, 73, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: #ffd34e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233, 185, 73, 0.4);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(30deg);
  transition: all 0.5s;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translate(10%, 10%);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 120px;
  text-align: center;
  animation: float 15s infinite ease-in-out;
  color: var(--light);
}

.floating-card:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.floating-card:nth-child(2) {
  top: 60%;
  left: 5%;
  animation-delay: -5s;
  animation-duration: 18s;
}

.floating-card:nth-child(3) {
  top: 30%;
  right: 10%;
  animation-delay: -10s;
  animation-duration: 22s;
}

.floating-card:nth-child(4) {
  top: 70%;
  right: 15%;
  animation-delay: -7s;
  animation-duration: 17s;
}

.floating-card i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.hero-btns{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animaciones */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(3deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(20px) rotate(-3deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 185, 73, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(233, 185, 73, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(233, 185, 73, 0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }
}

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

  .hero-desc {
    font-size: 1.1rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .floating-card {
    display: none;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 0.5rem auto;
}

/* Casino Cards */

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

/* Selection Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.criteria-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

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

.criteria-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

/* Payment Methods */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.payment-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-width: 300px;
}

.payment-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--accent);
}

/* Steps */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 3rem 0;
  gap: 0.5rem;
}



.step {
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--light-bg);
  padding: 1.5rem 1rem;
  border-radius: 10px;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Responsible Gaming */
.responsible {
  background: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.responsible h2 {
  color: white;
}

.responsible p {
  max-width: 800px;
  margin: 0 auto 1rem;
}
.bottom-logos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.bottom-logos a{
    background-color: var(--accent);
    padding: 0.5rem;
    border-radius: 10px;
     display: flex;
    justify-content: center;
    align-items: center;
    
}
.bottom-logos img{
    height: 2rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}



.footer-heading {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}
.email-link{
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}
.email-link:hover{
    color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom a{
    text-decoration: none;
    color: var(--secondary);
    transition: color 0.3s;
}
.footer-bottom a:hover{
    color: var(--light);

}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }

  .steps-container:before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0.5rem 1.5rem;
  }

  .hamburger {
    display: flex;
  }

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

  .section {
    padding: 3rem 0;
  }
}

/*-- Process Timeline --*/
.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    height: 100%;
    width: 4px;
    background: #e9ecef;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 70px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid var(--light-bg);
    box-shadow: 0 0 0 4px var(--secondary);
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: transform 0.3s;
}

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

.timeline-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-icon {
        left: 0;
    }
    .btn {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .why-trust-us-reimagined-left h2 {
        font-size: 2rem !important;
        text-align: center;
    }
    .section-title {
        font-size: 2rem !important;
        text-align: center;
    }
    .why-trust-us-reimagined-left p{
      text-align: center;
    }
}

/* why us */

    .why-trust-us-reimagined {
        background: url('../images/whyusbg.webp') no-repeat center center/cover;
        position: relative;
        color: white;
    }

    .why-trust-us-reimagined::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 54, 93, 0.85);
        z-index: 1;
    }

    .why-trust-us-reimagined .container {
        position: relative;
        z-index: 2;
    }

    .why-trust-us-reimagined-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .why-trust-us-reimagined-left h2 {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 1.5rem;
    }

    .trust-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .trust-item-icon {
        font-size: 2rem;
        color: var(--secondary);
        margin-right: 1.5rem;
        width: 50px;
    }

    .trust-item-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: white;
    }

    .trust-item-content p {
        margin-bottom: 0;
        opacity: 0.9;
    }

    @media (max-width: 768px) {
        .why-trust-us-reimagined-grid {
            grid-template-columns: 1fr;
        }
    }


    /* policy pages */

.privacy-main {
  background-color: var(--border-color);
  padding-top: 50px;
  padding-bottom: 60px;
  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-restriction */

        #age-verification-overlay {
          position: fixed;
          z-index: 9999;
          top: 0; left: 0; right: 0; bottom: 0;
          background: rgba(10,25,49,0.92);
          display: flex;
          align-items: center;
          justify-content: center;
          transition: opacity 0.3s;
        }
        #age-verification-popup {
          background: linear-gradient(135deg, #fff 70%, #e9b949 100%);
          border-radius: 22px;
          box-shadow: 0 8px 40px rgba(24,90,219,0.18);
          padding: 2.5rem 2rem 2rem 2rem;
          max-width: 95vw;
          width: 370px;
          text-align: center;
          position: relative;
          animation: popupIn 0.5s cubic-bezier(.68,-0.55,.27,1.55);
        }
        @keyframes popupIn {
          0% { transform: scale(0.7) translateY(60px); opacity: 0; }
          100% { transform: scale(1) translateY(0); opacity: 1; }
        }
        .age-icon {
          background: #185adb;
          color: #ffd700;
          font-size: 2.5rem;
          font-weight: 900;
          border-radius: 50%;
          width: 70px;
          height: 70px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 1.2rem auto;
          box-shadow: 0 2px 12px rgba(24,90,219,0.18);
        }
        #age-verification-popup h2 {
          color: #185adb;
          font-size: 1.5rem;
          font-weight: 800;
          margin-bottom: 0.7rem;
        }
        #age-verification-popup p {
          color: #0a1931;
          font-size: 1.08rem;
          margin-bottom: 1.5rem;
        }
        .age-btns {
          display: flex;
          flex-direction: column;
          gap: 1rem;
        }
        .age-btns button {
          padding: 0.8em 1.2em;
          border-radius: 30px;
          border: none;
          font-size: 1.08rem;
          font-weight: 700;
          cursor: pointer;
          transition: background 0.2s, color 0.2s;
        }
        #age-yes {
          background: #ffd700;
          color: #0a1931;
          box-shadow: 0 2px 8px rgba(255,215,0,0.10);
        }
        #age-yes:hover {
          background: #ffe066;
        }
        #age-no {
          background: #185adb;
          color: #fff;
        }
        #age-no:hover {
          background: #0a1931;
        }
        @media (max-width: 500px) {
          #age-verification-popup {
            width: 98vw;
            padding: 1.2rem 0.5rem 1.2rem 0.5rem;
          }
          .age-icon {
            width: 54px; height: 54px; font-size: 1.5rem;
          }
        }
