:root {
  --primary: #13C780;
  --secondary: #ff9800;
  --accent: #00bcd4;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --success: #4caf50;
  --warning: #ff5722;
  --text-dark: #212121;
  --text-light: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
html{
    overflow-x:hidden;
}

body {
  background-color: #f0f2f5;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@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-color: var(--dark);
  color: var(--text-light);
  
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(45deg, #1a1a2e, #6a1b9a, #ff9800, #00bcd4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: var(--text-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 800px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  color: white;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border: none;
}

.cta-button:hover {
  background-color: #e68a00;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Featured Casino */
.featured-casino {
  background-color: #f0f2f5;
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.featured-casino .section-title {
  color: var(--text-dark);
}

.casino-card {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.casino-logo {
  text-align: center;
}

.casino-logo img {
  max-width: 120px;
  border-radius: 10px;
}

.casino-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.casino-info p {
  margin-bottom: 15px;
}

.casino-rating {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 600;
}

.casino-bonus {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--success);
}

.casino-cta-container {
  text-align: center;
}

.casino-cta {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  text-transform: uppercase;
}

.casino-cta:hover {
  background-color: #00a0b7;
  transform: scale(1.05);
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: white;
}

.benefits .section-title {
  color: var(--text-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 35px;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
  display: inline-block;
  padding: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  line-height: 1;
}

.benefit-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

.benefit-card p {
  font-size: 1rem;
  color: #666;
}

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

.criteria-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.criteria-content .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.criteria-content .section-title:after {
  margin-left: 0;
}

.criteria-accordion .accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.criteria-accordion .accordion-header {
  font-weight: 700;
  font-size: 1.1rem;
}

.criteria-accordion .accordion-header i {
  color: var(--primary);
}

.criteria-accordion .accordion-content-inner {
  font-size: 1rem;
  color: #666;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1a1a2e, #2c1a4a);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.stats .section-title {
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  transition: background 0.3s, transform 0.3s;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--secondary);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Mobile Section */
.mobile-section {
  padding: 80px 0;
  background-color: white;
}

.mobile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.mobile-content .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.mobile-content .section-title:after {
  margin-left: 0;
}

.mobile-image img {
  max-width: 100%;
  border-radius: 15px;
}


/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: white;
}

.accordion {
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: #f1f1f1;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #e9e9e9;
}

.accordion-header i {
  transition: transform 0.3s;
}

.accordion-content {
  background-color: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-content-inner {
  padding: 20px;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary);
  color: white;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding: 20px;
}

/* Payment Methods */
.payment-methods {
  padding: 80px 0;
  background-color: white;
}

.payment-methods .section-title {
  color: var(--text-dark);
}

.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.payment-icon {
  width: 80px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.payment-icon:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 60px 0 20px;
}

/* Custom Footer Styles */

a {
  text-decoration: none;
}
.footer-container-custom a {
  color: var(--secondary);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0px 0 30px 0;
  border-bottom: 1.5px solid #e0e0e0;
}
.footer-logo-content {
  flex: 1 1 320px;
  min-width: 260px;
}

.footer-desc {
  color: #a9a9a9;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.footer-policy-links {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.footer-policy-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-policy-links li {
  margin-bottom: 12px;
}
.footer-policy-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-policy-links a:hover {
  color: #ff9800;
}
.footer-partners {
  text-align: center;
  padding: 35px 0 10px 0;
}
.footer-partners h4 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}
.footer-gambling-logo {
  height: 38px;
  width: auto;
  background: var(--text-dark);
  border-radius: 6px;
  padding: 4px 8px;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.07);
}
.footer-responsible {
  color: #a9a9a9;
  font-size: 0.98rem;
  margin-top: 8px;
}
.footer-bottom-custom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.98rem;
  color: #a9a9a9;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-policy-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .footer-main {
    padding: 0px 0 18px 0;
  }
  .footer-logo-content,
  .footer-policy-links {
    min-width: 0;
    width: 100%;
  }
  .footer-policy-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .footer-policy-links li {
    margin-bottom: 0;
  }
  .footer-logos-row {
    gap: 10px;
  }
  .footer-gambling-logo {
    height: 28px;
    padding: 2px 4px;
  }
  .footer-logo-content {
    min-width: 100%;
    flex: 1;
    text-align: center;
  }
  .footer-policy-links {
    flex: 1;
    text-align: center;
    align-items: center;
    justify-content: center;

  }
  .mobile-container {
    grid-template-columns: 1fr;
  }
  .criteria-container {
    grid-template-columns: 1fr;
  }
  .benefit-icon {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .featured-casino{
    padding: 60px 0;
  }
  .benefits{
    padding: 60px 0;
  }
  .stats{
    padding: 60px 0;
  }
  .mobile-section{
    padding: 60px 0;
  }
  .faq{
    padding: 60px 0;
  }
  .payment-methods{
    padding: 60px 0;
  
  }
  .criteria{
    padding: 60px 0;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    display: none; /* Hide image on smaller screens for better readability */
  }

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

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

  .casino-card {
    flex-direction: column;
    text-align: center;
  }

  .casino-logo {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-desc {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 2rem;
    text-align: center !important;
  }

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

/* table */

.table__items .table__item {
  display: flex;
  justify-content: space-between;
  background-color: var(--light);
  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: #2c3e50;
  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: #2c3e50;
  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: rgb(204, 0, 18);
  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: #d35400;
  text-align: center;
  margin-bottom: 10px;
  font-family: "NeoSansProBold";
}

.table__items .item__info h4 {
  font-size: 16px;
  line-height: 20px;
  color: #2c3e50;
  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: rgb(255, 222, 0);;
  font-size: 18px;
  color: #000;
  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;
  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 us */
.contact-container {
  max-width: 500px;
  margin: 60px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.1);
  padding: 40px 30px 30px 30px;
}
.contact-title {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact-desc {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  font-size: 1.08rem;
}
.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ececec;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 1rem;
  background: #f8f9fa;
  transition: border 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-form button {
  width: 100%;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 50px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}
.contact-form button:hover {
  background: #e68a00;
  transform: translateY(-2px) scale(1.03);
}
.contact-success {
  display: none;
  text-align: center;
  color: var(--success);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 18px;
}
@media (max-width: 600px) {
  .contact-container {
    padding: 22px 8px 18px 8px;
  }
  .contact-title {
    font-size: 1.3rem;
  }
}

/* Age Verification Popup Styles */
#age-verification-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#age-verification-popup.show {
  opacity: 1;
  visibility: visible;
}

.age-verification-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.age-verification-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  z-index: 1;
}

.popup-box {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  color: white;
  box-shadow: var(--box-shadow-lg);
  position: relative;
  overflow: hidden;
}

.popup-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.popup-box::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
}

.popup-box h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
}

.popup-box p {
  font-size: 16px;
  line-height: 1.6;
}

.popup-box strong {
  color: var(--accent-color);
  font-weight: 700;
}

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

.age-btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 180px;
}

.age-btn.confirm {
  background-color: var(--secondary);
  color: white;
}

.age-btn.confirm:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.age-btn.deny {
  background-color: var(--warning);
  color: white;
}

.age-btn.deny:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popup-box .responsible-gaming {
  font-size: 14px;
  color: var(--light-color);
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-box .responsible-gaming span {
  color: var(--accent-color);
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 576px) {
  .age-verification-content {
    padding: 15px;
    max-width: 90%;
  }

  .popup-box {
    padding: 30px 20px;
  }

  .popup-box h2 {
    font-size: 24px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .age-btn {
    width: 100%;
    min-width: unset;
  }
}
