* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
    overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  overflow-x: hidden;
  background: #FDF5E6;;
}

a {
  text-decoration: none;
}

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


/* Header Styles */
.header {
  background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
  color: white;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #e67e22;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #e67e22;
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #e67e22;
  transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #000000 50%, #2c3e50 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('../images/circle.svg');
  animation: float 6s ease-in-out infinite;
  top: -50%;
  left: -50%;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.3s both;
}

.cta-button {
  background: linear-gradient(45deg, #e67e22, #d35400);
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
  animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured Casino Section */
.featured-casino {
  background: #fdf5e6;
  padding: 60px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.featured-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  align-items: center;

  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

/* Trust Section */
.trust-section {
  background: linear-gradient(135deg, #fdf5e6 0%, #fdf5e6 100%);
  padding: 80px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

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

.trust-image {
  text-align: center;
}

.trust-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #e67e22;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #e67e22, #d35400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.trust-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.trust-card p {
  color: #666;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
  color: white;
  padding: 60px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #e67e22;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Selection Criteria */
.criteria-section {
  background: #fdf5e6;
  padding: 80px 0;
}

.criteria-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.criteria-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

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

.criteria-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.criteria-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.criteria-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.criteria-card p {
  color: #666;
  line-height: 1.7;
}

/* Mobile Compatibility */
.mobile-section {
  background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.mobile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mobile-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.mobile-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.platform-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.platform-icon:hover {
  background: #e67e22;
  transform: translateY(-5px);
}

/* FAQ Section */
.faq-section {
  background: #fdf5e6;
  padding: 80px 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.faq-image {
  /* position: relative;
            overflow: hidden; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-content h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  background: linear-gradient(45deg, #2c3e50, #000000);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(45deg, #000000, #2c3e50);
}

.faq-answer {
  padding: 1.5rem;
  background: #fdf5e6;
  color: #666;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Payment Methods */
.payment-section {
  background: white;
  padding: 60px 0;
}

.payment-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.payment-section h2 {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.payment-method {
  background: #fdf5e6;
  padding: 1rem;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-method img {
  height: 3rem;
}

.payment-method:hover {
  border-color: #e67e22;
  background: #fdf5e6;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-section{
    text-align: left;
}

.footer-section h3 {
  color: #e67e22;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #e67e22;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom a {
  color: #e67e22;
  text-decoration: none;
}
.footer-medium {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
.footer-medium a {
  /* background: #FDF5E6; */
  padding: 0.6rem;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-medium a img {
  height: 1.8rem;
}

.footer-medium a:hover {
  border-color: #e67e22;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

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

  .featured-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .trust-features {
    grid-template-columns: 1fr;
  }

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

  .faq-container {
    grid-template-columns: 1fr;
  }

  .platform-icons {
    gap: 1rem;
  }

  .payment-methods {
    gap: 1rem;
  }

  .payment-method {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .footer-section{
    text-align: center;
}
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 1rem;
    flex-direction: column;
  }

  .nav-menu.active {
    display: flex;
  }
  .mobile-section h2 {
    font-size: 2rem;
  }
  .mobile-section p {
    font-size: 1rem;
  }
  .criteria-section h2 {
    font-size: 2rem;
  }
  .trust-section h2 {
    font-size: 2rem;
  }
  .faq-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* 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 #2c3e50;
}

.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: 50px 20px;
  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.5em;
  }
}

/* contact page  */
.contact-section { 
  color: #333;
  margin: 10px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.contact-container h1 {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
  font-family: "NeoSansProBold", sans-serif;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background-color: #003366;
  color: #fff;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  font-family: "NeoSansProBold", sans-serif;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0055a4;
}

#success-message {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }
}


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