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



/* Global Styles */
:root {
    --primary-color: #1e8a4c; /* Green */
    --primary-dark: #156a3a; /* Darker Green */
    --primary-light: #27ae60; /* Lighter Green */
    --secondary-color: #e67e22; /* Orange */
    --secondary-dark: #d35400; /* Darker Orange */
    --accent-color: #f1c40f; /* Gold */
    --accent-dark: #f39c12; /* Darker Gold */
    --dark-color: #2c3e50;
    --dark-color-alt: #1a2530;
    --light-color: #ecf0f1;
    --light-color-alt: #f9f9f9;
    --danger-color: #e74c3c;
    --success-color: #27ae60;
    --text-color: #333;
    --text-light: #777;
    --text-lighter: #999;
    --border-color: #ddd;
    --border-light: #eee;
    --card-bg: #fff;
    --section-bg: #f9f9f9;
    --header-height: 120px; /* Increased for new header */
    --header-top-height: 40px;
    --header-main-height: 80px;
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.primary-btn:hover {
    background-color: #156a3a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
     font-family: "Merriweather", serif;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
     font-family: "Merriweather", serif;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.new-header {
    position:sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background-color: var(--dark-color-alt);
    color: white;
    height: var(--header-top-height);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    font-size: 14px;
}

.header-contact a {
    color: var(--light-color);
    margin-right: 15px;
    font-size: 13px;
}

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

.header-contact .separator {
    color: var(--text-lighter);
    margin: 0 5px;
}

.header-social a {
    color: var(--light-color);
    margin-left: 15px;
    font-size: 14px;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.header-main {
    background-color: var(--dark-color);
    height: var(--header-main-height);
    box-shadow: var(--box-shadow);
}

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

}

.logo a {
    margin: 0;
}


nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 20px;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.header-cta .btn i {
    margin-right: 5px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

/* Default (Desktop) */
.header-nav {
  display: flex;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: var(--header-main-height);
    right: 0;
    width: 250px;
    background: var(--dark-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none; /* hidden by default */
  }

  .header-nav.active {
    display: flex; /* show when toggled */
  }

  .header-nav ul {
    flex-direction: column;
    width: 100%;
  }

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

  .mobile-menu-btn {
    display: flex; /* show hamburger */
  }

  /* Animate hamburger into X */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero-features {
      justify-content:center ;
  }
  

}


/* Hero Section */
.hero {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.new-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-color-alt) 100%);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Merriweather", serif;
    color: var(--light-color);
}

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


.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-color);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature i {
    color: var(--accent-color);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 500px;
    position: relative;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-chip, .floating-card {
    position: absolute;
    border-radius: 50%;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.floating-chip {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
}

.floating-card {
    width: 30px;
    height: 45px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.chip-1 {
    top: 20%;
    left: 10%;
    animation-name: float1;
}

.chip-2 {
    bottom: 30%;
    right: 15%;
    animation-name: float2;
}

.card-1 {
    top: 60%;
    left: 20%;
    animation-name: float3;
}

.card-2 {
    top: 10%;
    right: 25%;
    animation-name: float4;
}

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

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

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-5deg); }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--section-bg);
    position: relative;
    padding: 100px 0;
}

.new-why-choose-us {
    background: linear-gradient(135deg, var(--light-color-alt) 0%, #ffffff 100%);
}

.section-shape {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
}

.top-shape {
    top: 0;
}

.top-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark-color);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.bottom-shape {
    bottom: 0;
}

.bottom-shape::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--primary-color  );
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card-inner {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.feature-card:hover .feature-card-inner {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 138, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.trust-item {
    padding: 20px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.trust-text {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Best Casinos Section */
.best-casinos {
    background-color: var(--section-bg);
    padding: 100px 0;
    position: relative;
}

.best-casinos .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.casino-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.casino-tab {
    padding: 12px 25px;
    background-color: transparent;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin: 0 5px;
}

.casino-tab.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(30, 138, 76, 0.3);
}

.casino-tab:not(.active):hover {
    background-color: rgba(30, 138, 76, 0.1);
    color: var(--primary-color);
}

.casino-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.casino-header {
    position: relative;
}

.casino-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.casino-logo {
    padding: 30px;
    background-color: white;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.casino-logo img {
    height: 60px;
    transition: var(--transition);
}

.casino-card:hover .casino-logo img {
    transform: scale(1.05);
}

.casino-content {
    padding: 25px;
}

.casino-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.casino-stars {
    display: flex;
}

.casino-rating i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 1.1rem;
}

.casino-rating span {
    margin-left: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.casino-features {
    margin-bottom: 25px;
}

.casino-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.casino-feature:last-child {
    margin-bottom: 0;
}

.casino-feature i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.casino-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
}

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

.casino-bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 5px;
}

.casino-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.casino-btn-review {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    flex: 1;
}

.casino-btn-review:hover {
    background-color: rgba(30, 138, 76, 0.1);
}

.casino-btn-play {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    flex: 1;
}

.casino-btn-play:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 138, 76, 0.3);
}

/* Payment Methods Section */
.payment-methods {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(30, 138, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.payment-methods::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 80%, rgba(30, 138, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.payment-methods .container {
    position: relative;
    z-index: 2;
}

.payment-methods .section-header {
    margin-bottom: 60px;
}

.payment-methods .section-header h2 {
    color: white;
}

.payment-methods .section-subtitle {
    color: var(--primary-color);
}

.payment-methods .section-description {
    color: var(--text-light);
    margin-bottom: 40px;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.payment-icon {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.payment-icon:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.payment-icon:hover::before {
    transform: scaleX(1);
}

.payment-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.payment-icon:hover img {
    transform: scale(1.1);
}

.payment-icon p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 10px;
}

/* Play Anywhere Section */
.play-anywhere {
    color: var(--dark-color);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Casino Selection Guide Section */
.casino-selection-guide {
    padding: 100px 0;
    background-color: var(--light-color-alt);
    position: relative;
    overflow: hidden;
}

.casino-selection-guide .section-shape {
    position: absolute;
    width: 100%;
    height: 80px;
    left: 0;
    z-index: 1;
}

.casino-selection-guide .top-shape {
    top: 0;
    background: linear-gradient(to bottom right, var(--dark-color) 49%, transparent 51%);
}

.casino-selection-guide .bottom-shape {
    bottom: 0;
    background: linear-gradient(to top left, var(--dark-color) 49%, transparent 51%);
}

.selection-criteria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.criteria-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

.criteria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.criteria-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.criteria-card:nth-child(2n) .criteria-icon {
    background-color: var(--secondary-color);
}

.criteria-card:nth-child(3n) .criteria-icon {
    background-color: var(--accent-color);
}

.criteria-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
}

.criteria-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.selection-cta {
    text-align: center;
    margin-top: 50px;
}

.play-anywhere::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 138, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.play-anywhere::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 138, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.play-anywhere .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.play-content {
    flex: 1;
    max-width: 600px;
}

.play-image {
    flex: 1;
    text-align: center;
    margin-left: 40px;
    position: relative;
}

.play-image img {
    border-radius: var(--border-radius);
    transition: var(--transition);
    transform: perspective(1000px) rotateY(-5deg);
}

.play-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

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

.play-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: left;
}

.play-features li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.play-features li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    background-color: rgba(30, 138, 76, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.play-features li:hover i {
    background-color: var(--primary-color);
    color: white;
}

/* Responsible Gaming Section */
.responsible-gaming {
    background-color: var(--dark-color);
    color: white;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}



.responsible-gaming .container {
    position: relative;
    z-index: 2;
}

.responsible-gaming .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.responsible-gaming .section-header h2 {
    color: white;
}

.responsible-gaming .section-subtitle {
    color: var(--primary-color);
}

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

.responsible-feature {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.responsible-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0.7;
}

.responsible-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
    background-color: rgba(255, 255, 255, 0.08);
}

.responsible-feature h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: white;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.responsible-feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.responsible-feature ul li {
    color: var(--light-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.responsible-feature ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}



/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter .container {
    position: relative;
    z-index: 2;
}

.newsletter .section-header {
    margin-bottom: 40px;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
}

.newsletter-form {
    max-width: 550px;
    margin: 30px auto 0;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: var(--text-color);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #f39c12;
    transform: translateX(3px);
}

.newsletter-form button i {
    margin-left: 8px;
}

/* Footer */
.new-footer {
    background-color: var(--dark-color-alt);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.new-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    z-index: 2;
}

.footer-shape {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 138, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.footer-top {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-logo {
    padding-right: 20px;
}

.footer-logo a {
   margin: 0;
}

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

.footer-logo p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0px;
    font-size: 1rem;
}







/* Responsible Gambling Banner */
.responsible-gambling-banner {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.responsible-badge {
    min-width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(30, 138, 76, 0.3);
}

.responsible-gambling-banner p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gambling Logos */
.gambling-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.logo-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 150px;
    height: 70px;
}

.logo-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-item img {
    max-height: 60px;
    /* filter: brightness(0) invert(1); */
    opacity: 0.7;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-disclaimer p {
    color: var(--text-lighter);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.footer-age-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

}
.footer-age-icon img{
    width: 50px;
}

/* Responsive Styles */
/* Animations */
@keyframes float {  
    0% { transform: translateY(0px); }  
    50% { transform: translateY(-20px); }  
    100% { transform: translateY(0px); }  
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .header-main .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .selection-criteria {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
   
    
    .hero .container,
    .play-anywhere .container {
        flex-direction: column;
    }
    
    .hero-content,
    .play-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-image,
    .play-image {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .feature-card,
    .responsible-feature {
        flex: 0 0 100%;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .casino-info {
        padding: 15px 0;
    }
    
    .casino-rating {
        justify-content: center;
    }
    
    .casino-cta {
        width: 100%;
        margin-top: 15px;
    }
    
    .payment-icon {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    /* Footer responsive styles */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul li a {
        justify-content: center;
    }
    
    .responsible-gambling-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .gambling-logos {
        gap: 15px;
    }
    
    .logo-item {
        height: 60px;
        padding: 10px;
    }
    
    .logo-item img {
        max-height: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    .newsletter h2{
        font-size: 2rem;
    }
    
    /* Added responsive styles for selection criteria */
    .selection-criteria {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .criteria-card {
        padding: 25px 20px;
    }
    
    .criteria-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .criteria-card h3 {
        font-size: 18px;
    }
    
    /* Improved responsive styles for hero section */
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Improved responsive styles for buttons */
    .hero-buttons .btn {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .payment-icon {
        flex: 0 0 calc(50% - 20px);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
        width: 100%;
    }
    
    /* Footer responsive styles for small screens */
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .criteria-card {
        padding: 20px 15px;
    }
    
    .criteria-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .criteria-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    
    .criteria-card p {
        font-size: 14px;
    }
    
    .selection-cta {
        margin-top: 30px;
    }
    
    .selection-cta .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
   
    .responsible-gambling-banner {
        padding: 20px 15px;
    }
    
    .responsible-badge {
        min-width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-disclaimer p {
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}


    /* table */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* table responsive */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table__items .item__offers {
display: none;
}

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

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

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

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

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

.privacy-main{
    position: relative;
    padding: 100px 0;
}
.privacy-main h3{
    font-size: 1.2rem;
}



        /* Contact Page Specific Styles */
        .contact-section {
            padding: 100px 0;
            background-color: var(--light-color-alt);
            position: relative;
            overflow: hidden;
        }

        .contact-section .section-shape {
            position: absolute;
            width: 100%;
            height: 80px;
            left: 0;
            z-index: 1;
        }

        .contact-section .top-shape {
            top: 0;
            background: linear-gradient(to bottom right, var(--dark-color) 49%, transparent 51%);
        }

        .contact-section .bottom-shape {
            bottom: 0;
            background: linear-gradient(to top left, var(--dark-color) 49%, transparent 51%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            background-color: var(--primary-color);
            border-radius: var(--border-radius);
            padding: 40px;
            color: white;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .contact-info img{
            border-radius: 20px;
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .contact-info::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 100px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-30%, 30%);
        }

      
        .contact-form-container {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }

        .contact-form-container h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dark-color);
            position: relative;
        }

        .contact-form-container h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
             .success-message{
            color: #156a3a;
            font-size: 1.2rem;
            margin: 20px 0;
            text-align: center;
            position: relative;
            z-index: 2;
            display: none;
        
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(30, 138, 76, 0.1);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-submit-btn {
            background: linear-gradient(to right, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form-submit-btn:hover {
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 138, 76, 0.2);
        }

        .form-submit-btn:active {
            transform: translateY(0);
        }


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

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            
            .contact-info, .contact-form-container {
                padding: 30px;
            }
        }

        @media (max-width: 480px) {
            
            .contact-info, .contact-form-container {
                padding: 20px;
            }
            
            .contact-info h3, .contact-form-container h3 {
                font-size: 1.5rem;
            }
            
            .form-submit-btn {
                width: 100%;
            }
        }



                /* 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-color) 0%, var(--dark-color-alt) 100%);
            border-radius: var(--border-radius-lg);
            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-color) 0%, var(--secondary-color) 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 {
            margin-bottom: 30px;
            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-bottom: 25px;
        }
        
        .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(--primary-color);
            color: white;
        }
        
        .age-btn.confirm:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .age-btn.deny {
            background-color: var(--danger-color);
            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;
            }
        }


        /* age restriction page */

      
       .age-verification-page {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background: var(--dark-color);
            font-family: Arial, sans-serif;
        }
        .age-warning {
            background: #fff;
            padding: 2rem 3rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
        }
        .age-warning h1 {
            margin-bottom: 1rem;
            color: #b22222;
            font-size: 2rem;
        }
        .age-warning p {
            color: #333;
            font-size: 1.1rem;
        }
