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

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

:root {
--primary-dark: #1e2f23;
--primary: #2a5934;
--primary-light: #3c7a47;
--accent: #d4af37;
--accent-dark: #b8941f;
--accent-light: #e5c869;
--secondary: #c53d2d;
--secondary-light: #d86a5c;
--neutral-dark: #222;
--neutral: #444;
--neutral-light: #f5f5f5;
--white: #ffffff;
}

body {
font-family: 'Montserrat', 'Arial', sans-serif;
line-height: 1.6;
color: var(--neutral-dark);
overflow-x: hidden;
background-color: var(--neutral-light);
}
a{
    text-decoration: none;
}

/* Header Styles */
header {
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.3);
transition: all 0.3s ease;
}

.header-scrolled {
background: rgba(30, 47, 35, 0.95);
backdrop-filter: blur(10px);
}

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

.logo {
/* font-size: 2rem; */
font-weight: bold;
color: var(--accent);
text-decoration: none;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
display: flex;
align-items: center;
gap: 0.5rem;
}

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

.nav-links a {
color: var(--white);
text-decoration: none;
transition: color 0.3s ease;
font-weight: 500;
position: relative;
}

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

.nav-links a:hover::after {
width: 100%;
}
.cta-button-header{
  background: linear-gradient(45deg, var(--accent), var(--accent-dark));
color: var(--primary-dark);
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
display: inline-block;
}
.cta-button-header:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); 
background: linear-gradient(45deg, var(--accent-light), var(--accent));
}

.cta-button {
background: linear-gradient(45deg, var(--accent), var(--accent-dark));
color: var(--primary-dark);
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
display: inline-block;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
background: linear-gradient(45deg, var(--accent-light), var(--accent));
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 20%),
radial-gradient(circle at 80% 70%, rgba(197, 61, 45, 0.15) 0%, transparent 20%);
opacity: 0.5;
}

.hero-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 2;
}
.hero-container-inner{
  max-width: 1000px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: 1fr ;
gap: 4rem;
align-items: center;
position: relative;
z-index: 2;
text-align: center;
}

.hero-content h1 {
font-size: 3.5rem;
color: var(--white);
margin-bottom: 1rem;
line-height: 1.2;
animation: slideInLeft 1s ease-out;
}

.hero-content .highlight {
color: var(--accent);
text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-content p {
font-size: 1.2rem;
color: #ddd;
margin-bottom: 2rem;
animation: slideInLeft 1s ease-out 0.3s both;
}


.hero-visual {
display: flex;
justify-content: center;
align-items: center;
animation: fadeInRight 1s ease-out 0.5s both;
}

.casino-visual {
width: 400px;
height: 400px;
background: conic-gradient(from 0deg, var(--accent), var(--secondary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
position: relative;
animation: spin 20s linear infinite;
box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
}

.casino-visual::before {
content: '♠️♥️♣️♦️';
font-size: 4rem;
background: var(--primary-dark);
width: 80%;
height: 80%;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
/* animation: spin 20s linear infinite reverse; */
}

/* Featured Casinos Section */
.featured-casinos {
padding: 6rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.section-title::after {
content: '';
width: 100px;
height: 4px;
background: linear-gradient(45deg, var(--accent), var(--secondary));
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}

/* Guide Section */
.guide-section {
padding: 6rem 0;
background: var(--white);
}

.guide-intro {
text-align: center;
margin-bottom: 4rem;
}

.guide-intro h2 {
font-size: 2.5rem;
color: var(--primary-dark);
margin-bottom: 1rem;
}

.guide-intro p {
font-size: 1.2rem;
color: var(--neutral);
max-width: 800px;
margin: 0 auto;
}

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

.aspect-card {
background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
padding: 2rem;
border-radius: 15px;
border-left: 5px solid var(--accent);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.aspect-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: linear-gradient(to bottom, var(--accent), var(--secondary));
}

.aspect-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.aspect-card h3 {
color: var(--primary);
font-size: 1.3rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.5rem;
}

.aspect-card p {
color: var(--neutral);
line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
padding: 6rem 0;
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
color: var(--white);
position: relative;
overflow: hidden;
}

.why-choose-us::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
radial-gradient(circle at 10% 90%, rgba(197, 61, 45, 0.1) 0%, transparent 25%);
}

.why-choose-us .section-title {
color: var(--white);
}

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

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

.feature-item:hover {
transform: scale(1.05);
background: rgba(212, 175, 55, 0.2);
border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
background: linear-gradient(45deg, var(--accent), var(--accent-light));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}

.feature-item h3 {
color: var(--accent);
margin-bottom: 1rem;
}

.feature-item p {
opacity: 0.9;
}

/* Games Section */
.games-section {
padding: 6rem 0;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.game-card {
background: var(--white);
border-radius: 20px;
padding: 2rem;
text-align: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border-top: 4px solid var(--secondary);
}

.game-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
transition: transform 0.6s ease;
transform: rotate(0deg);
}

.game-card:hover::before {
transform: rotate(360deg);
}

.game-card:hover {
transform: translateY(-10px);
}

.game-icon {
font-size: 4rem;
margin-bottom: 1rem;
position: relative;
z-index: 2;
}

.game-card h3 {
color: var(--primary-dark);
margin-bottom: 1rem;
position: relative;
z-index: 2;
}

.game-card p {
color: var(--neutral);
position: relative;
z-index: 2;
}

/* CTA Section */
.final-cta {
padding: 6rem 0;
background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
color: var(--primary-dark);
text-align: center;
position: relative;
overflow: hidden;
}

.final-cta::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 20%),
radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
}

.final-cta h2 {
font-size: 3rem;
margin-bottom: 1rem;
position: relative;
z-index: 2;
}

.final-cta p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
position: relative;
z-index: 2;
}

.final-cta .cta-button {
background: var(--primary-dark);
color: var(--accent-light);
font-size: 1.2rem;
padding: 1rem 3rem;
position: relative;
z-index: 2;
}

.final-cta .cta-button:hover {
background: var(--primary);
color: var(--white);
}

/* Footer */


/* new */

footer {
background: var(--primary-dark);
color: var(--white);
  padding: 3rem 1.5rem 1.5rem;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-left {
  max-width: 450px;
}

.footer-logo {
  color: #ffcc00;
  margin-bottom: 0.8rem;
}

.footer-right h3 {
  color: #ffcc00;
  margin-bottom: 1rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-right a {
  color: #ddd;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #ffcc00;
}

.footer-middle {
  text-align: center;
  margin-bottom: 2rem;
}

.responsible-text {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.responsible-icons{
    display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.responsible-icons img{
  height: 40px;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.responsible-logos img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.3s;
}

.responsible-logos img:hover {
  filter: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
.footer-bottom a{
    color: var(--accent-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-left, .footer-right {
    max-width: 100%;
  }
  .hero-visual {
    margin-bottom: 20px;
  }
}
/* Mobile Menu */
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: var(--white);
font-size: 1.5rem;
cursor: pointer;
padding: 0.5rem;
border-radius: 4px;
background: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes fadeInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-dark);
flex-direction: column;
padding: 1rem;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.mobile-menu-btn {
display: block;
}

.hero-container {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
padding: 3rem 0;
}
.cta-button-header{
  display: none;
}
.hero-container-inner{
  padding: 3rem 1rem;
}
.privacy-content{
  padding: 10px !important;
}
.hero-content h1 {
font-size: 2.5rem;
}

.casino-visual {
width: 300px;
height: 300px;
}

.casino-visual::before {
font-size: 3rem;
}

.section-title {
font-size: 2rem;
}

.final-cta h2 {
font-size: 2rem;
}
.guide-intro h2{
font-size:2rem !important;
}
}

@media (max-width: 480px) {
 

.casino-visual {
width: 250px;
height: 250px;
}

 .outer{
display: none;
}
.innter{
  display: block;
}
}

/* Scroll animations */
.fade-in {
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
/* 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(--dark-bg);
}

.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-top: 100px;
  padding-bottom: 60px;
}

.privacy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}


.privacy-content h2 {
  font-size: 1.9em;
  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;
  }
}


/* age restriction page */


        .age-restriction {
        
            background-color: var(--primary-dark);
            color: #f1faee;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            text-align: center;
        }

        .age-container {
            max-width: 600px;
            padding: 40px;
           
            border-radius: 8px;
            
        }

       .age-container h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5em;
            color: var(--card-bg);
            margin-bottom: 20px;
        }

       .age-container p {
            font-size: 1.1em;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .warning-box {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid #e63946;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .warning-box p {
            margin: 0;
            font-size: 1em;
            color: #f1faee;
        }

        /* contact us */

        .contact-section {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 120px 20px 40px;
        }

        .contact-container {
            display: flex;
            width: 100%;
            max-width: 1100px;
            background-color: var(--white);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }

        .contact-info {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: var(--white);
            padding: 60px 40px;
            width: 45%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-info h2 {
            font-family: 'NeoSansProBold', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .contact-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--accent);
            margin-right: 20px;
        }

        .info-item span {
            font-size: 1rem;
        }

        .contact-form-container {
            padding: 60px 40px;
            width: 55%;
        }

        .contact-form-container h2 {
            font-family: 'NeoSansProBold', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 30px;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            font-family: 'NeoSansProMedium', sans-serif;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-family: 'NeoSansProRegular', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: var(--primary-dark);
            border: none;
            border-radius: 10px;
            font-family: 'NeoSansProBold', sans-serif;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        #successMessage{
            display: none;
        }

        @media (max-width: 992px) {
            .contact-container {
                flex-direction: column;
            }

            .contact-info,
            .contact-form-container {
                width: 100%;
            }

            .contact-info {
                padding: 40px;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .contact-info h2,
            .contact-form-container h2 {
                font-size: 2rem;
            }

            .contact-info,
            .contact-form-container {
                padding: 40px 25px;
            }
            .age-buttons {
                flex-wrap: wrap;
            }
        }


        /* age verification pop up */

    .age-verification-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s, visibility 0.5s;
    }

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

    .age-verification-content {
        background: var(--primary-dark);
        color: var(--white);
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        transform: scale(0.9);
        transition: transform 0.5s;
    }

    .age-verification-overlay.show .age-verification-content {
        transform: scale(1);
    }

    .age-verification-content .logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .age-verification-content h2 {
        font-family: 'NeoSansProBold', sans-serif;
        /* font-size: 2rem; */
        color: var(--accent);
        margin-bottom: 15px;
    }

    .age-verification-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

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

    .age-btn {
        padding: 12px 25px;
        border: none;
        border-radius: 50px;
        font-family: 'NeoSansProBold', sans-serif;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
    }

    .age-btn.confirm {
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        color: var(--primary-dark);
    }

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

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

    .responsible-gaming {
        font-size: 0.9rem;
        opacity: 0.7;
    }
