:root {
  /* Modern Neon Theme */
  --bg-dark: #0b0f1a;
  --bg-darker: #080b14;
  --neon-cyan: #00f0ff;
  --neon-lime: #7cff00;
  --neon-pink: #ff2fd2;
  --text-light: #e6e9f0;
  --text-muted: #a0a8c0;
  --card-bg: rgba(15, 20, 40, 0.6);
  --card-border: rgba(124, 255, 0, 0.2);
  --card-hover: rgba(124, 255, 0, 0.1);
  
  /* Legacy variables for compatibility */
  --text-white: #ffffff;
  --accent-gold: var(--neon-cyan);
  --primary: var(--bg-dark);
  --primary-dark: var(--bg-darker);
  --accent-green: var(--neon-lime);
  --accent-red: var(--neon-pink);
  --text-gray: var(--text-muted);
  --primary-light: var(--neon-cyan);
  --border-color: var(--neon-cyan);
  --text-dark-gray: var(--neon-lime);
}

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

html{scroll-behavior:smooth}

body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  color: var(--text-light);
  background: radial-gradient(ellipse at bottom, var(--bg-darker) 0%, var(--bg-dark) 70%);
  min-height: 100vh;
  position: relative;
  background-attachment: fixed;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 3px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

.text-gold{color:var(--accent-gold)}
.text-white{color:var(--text-white)}

.section-header {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title {
  margin-bottom: 1.25rem;
  color: var(--text-white);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 3px;
}

.section-description {
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.header {
  background: rgba(11, 15, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.logo-text {
  font-family: 'Sora', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  letter-spacing: -0.5px;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  margin-left: 2rem;
  color: var(--text-white);
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-lime));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

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

.mobile-menu-button {
  display: block;
  z-index: 1001;
}

#mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-menu-toggle:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(11, 15, 26, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav .nav-link {
  padding: 1rem 1.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

.mobile-nav .nav-link:hover {
  background: rgba(0, 240, 255, 0.05);
  padding-left: 2rem;
  color: var(--neon-cyan);
}

.mobile-nav .nav-link {
  margin-left: 0;
  padding: 0.5rem 0;
}

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

/* Hero */
.hero-banner {
  background-image: linear-gradient(to right, var(--primary-dark), var(--primary-light));
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
}

.hero-background {
  inset: 0;
  z-index: 0;
  position: absolute;
}

.hero-background img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.hero-overlay {
  inset: 0;
  z-index: 1;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero-content {
  margin: 0 auto;
  text-align: center;
  z-index: 10;
  position: relative;
  max-width: 800px;
}

.hero-title {
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--text-white);
  font-size: 2.5rem;
}

.hero-title span {
  display: block;
}

.hero-description {
  margin-bottom: 2rem;
  color: var(--text-gray);
  font-size: 1.125rem;
}

.hero-button {
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: inline-block;
  color: var(--primary-dark);
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  background-color: var(--accent-gold);
}

.hero-button:hover {
  transform: scale(1.05);
  background-color: #e6a533;
}

.age-badge {
  border-radius: 9999px;
  right: 1.25rem;
  display: flex;
  z-index: 10;
  align-items: center;
  position: absolute;
  padding: 0.25rem 0.75rem;
  bottom: 1.25rem;
  background-color: hsla(0, 0%, 100%, 0.12);
}

.age-number {
  font-weight: 700;
  color: var(--text-white);
  margin-right: 0.5rem;
}

.age-text {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Casinos Section */
.casinos-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.casinos-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(10px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  justify-content: space-between;
}

.casino-card:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink), var(--neon-lime));
  z-index: -1;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);
}

.casino-card:hover:before {
  opacity: 0.5;
}

.casino-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.casino-logo-area {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.casino-logo-container {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.casino-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-rating {
  margin-left: auto;
  text-align: right;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.rating-text {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
}

.casino-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
  font-weight: 700;
  text-align: center;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-name:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 2px;
}

.casino-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.casino-benefits {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  align-items: flex-start;
  color: var(--text-light);
}

.benefits-list i {
  color: var(--neon-lime);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}

.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-lime));
  color: var(--bg-darker);
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), transparent);
  transition: width 0.3s ease;
  z-index: -1;
  opacity: 0.1;
}

.btn-secondary:hover {
  color: var(--text-white);
  border-color: var(--neon-cyan);
}

.btn-secondary:hover:before {
  width: 100%;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .casino-cta {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .btn {
    min-width: 150px;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.casino-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.casino-card:nth-child(2) {
  animation-delay: 0.1s;
}

.casino-card:nth-child(3) {
  animation-delay: 0.2s;
}
.bonus-text{color:var(--text-gray);font-size:.875rem}
.get-bonus-button{font-weight:700;border-radius:9999px;text-align:center;color:var(--text-white);padding:.75rem 2rem;transition:all .3s ease;background-color:var(--accent-green);width:100%}
.get-bonus-button:hover{transform:scale(1.05);background-color:#059669}
.terms-text{margin-top:.5rem;color:var(--text-dark-gray);font-size:.75rem}

.terms-box{
  background:rgba(50,50,50,0.5);
  color:var(--text-light);
  font-size:12px;
  line-height:1.5;
  padding:14px 16px;
  font-weight:bold;
  margin-top:16px;
  border-radius:6px;
  word-wrap:break-word;
}

.terms-box a{color:var(--accent-gold);text-decoration:none}

/* About */
.about-section {
    padding: 4rem 0;
    background-color: var(--primary-light);
}
.about-content {
    margin: 0 auto;
    text-align: center;
    max-width: 800px;
}
.about-text {
    margin-top: 1.5rem;
    text-align: left;
    color: #000;
}
.about-text p {
    margin-bottom: 1rem;
    color: #000;
}
#about .section-title,
#about .text-gold {
    color: #000 !important;
}

/* FAQ */
.faq-section{padding:4rem 0;background-color:var(--primary)}
.faq-container{margin:0 auto;max-width:800px}
.faq-item{margin-bottom:1rem;border-radius:.5rem;border:1px solid var(--border-color);overflow:hidden}
.faq-question{display:flex;justify-content:space-between;cursor:pointer;align-items:center;padding:1rem;background-color:var(--primary-dark)}
.faq-question h3{font-weight:600;font-size:1.125rem}
.faq-question i{color:var(--accent-gold);transition:transform .2s}
.faq-answer{display:none;padding:1rem;background-color:var(--primary-light)}
.faq-item.active .faq-answer{display:block}
.faq-item.active .faq-question i{transform:rotate(45deg)}

/* Responsible Gambling */
.responsible-section{padding:4rem 0;background-color:var(--primary-dark)}
.responsible-content{margin:0 auto;max-width:1000px}
.responsible-header{margin-bottom:2.5rem;text-align:center}
.age-badge-large{margin-bottom:1rem;border-radius:9999px;display:inline-block;padding:.75rem;background-color:#fff}
.age-badge-large span{font-weight:700;color:var(--primary-dark);font-size:1.5rem}
.responsible-list,.responsible-text p{margin-bottom:1.5rem}
.responsible-list{list-style-type:disc;padding-left:1.25rem}
.responsible-list li{margin-bottom:.75rem}
.help-text{font-weight:600}
.support-orgs{margin-top:2rem;display:grid;gap:1rem;grid-template-columns:1fr}
.support-card{border-radius:.5rem;display:flex;text-align:center;align-items:center;padding:1rem;transition:background-color .3s ease;background-color:hsla(0,0%,100%,.12);flex-direction:column}
.support-card:hover{background-color:hsla(0,0%,100%,.18)}
.org-name{margin-bottom:.75rem;font-weight:700;color:var(--accent-gold);font-size:1.125rem}
.org-desc{color:var(--text-white);font-size:.875rem}
.commission{margin-top:2rem;border-top:1px solid var(--border-color);text-align:center;padding-top:2rem}
.commission a{color:var(--text-white)}

/* Footer */
.footer{border-top:1px solid var(--border-color);padding:2.5rem 0;background-color:var(--primary-dark)}
.footer-grid{display:grid;gap:2rem;grid-template-columns:1fr}
.footer-title{font-family:Poppins,sans-serif;margin-bottom:1rem;color:var(--accent-gold);font-size:1.25rem}
.footer-text{margin-bottom:1rem;color:var(--text-dark-gray);font-size:.875rem}
.footer-age{margin-top:1rem}
.footer-age,.footer-age-badge{display:flex;align-items:center}
.footer-age-badge{font-weight:700;border-radius:.25rem;border:2px solid var(--text-white);justify-content:center;color:var(--text-white);padding:.25rem .5rem;font-size:1.125rem;margin-right:.5rem}
.footer-age-text{color:var(--text-dark-gray);font-size:.875rem}
.footer-menu{list-style:none}
.footer-menu li{margin-bottom:.5rem}
.footer-menu a{color:var(--text-dark-gray);transition:color .2s}
.footer-menu a:hover{color:var(--accent-gold)}
.footer-bottom{margin-top:2.5rem;border-top:1px solid var(--border-color);text-align:center;color:var(--text-dark-gray);padding-top:1.5rem;font-size:.875rem}

/* Media Queries */
@media (min-width:768px){
  .desktop-nav{display:flex}
  .mobile-menu-button{display:none}
  .hero-title{font-size:3.75rem}
  .hero-description{font-size:1.25rem}
  .casino-content{align-items:center;flex-direction:row}
  .casino-logo-area{margin-bottom:0;width:25%}
  .casino-benefits{margin-bottom:0;padding:0 1.5rem;width:50%}
  .casino-cta{width:25%}
  .get-bonus-button{width:auto}
  .support-orgs{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:repeat(4,1fr)}
  .section-title{font-size:2.5rem}
}

@media (min-width:1024px){
  .hero-title{font-size:4.5rem}
}
