:root{
  --text-light:#f0f8ff;        
  --border-color:#2a4d5a;     
  --accent-gold:#ff6b35;       
  --primary-dark:#0a1a2e;      
  --text-dark-gray:#5a7a8a;    
  --accent-green:#28a745;      
  --primary:#16213e;           
  --accent-red:#dc3545;        
  --text-gray:#8fa8b8;        
  --text-white:#ffffff;        
  --primary-light:#1e3a5f;    
}

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

html{scroll-behavior:smooth}

body{
  font-family:Roboto,sans-serif;
  overflow-x:hidden;
  line-height:1.6;
  color:var(--text-light);
  background-color:var(--primary)
}

h1,h2,h3,h4,h5,h6{
  font-family:Montserrat,sans-serif;
  font-weight:700;
  line-height:1.2
}

a{text-decoration:none;color:inherit;transition:color .3s ease}

.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:3rem;text-align:center}
.section-title{margin-bottom:.75rem;color:var(--text-white);font-size:2.25rem}
.section-description{margin:0 auto;color:var(--text-gray);max-width:600px}

.header{box-shadow:0 4px 8px rgba(0,0,0,.15);z-index:50;position:sticky;top:0;background-color:var(--primary)}
.header-content{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo-text{font-family:Montserrat,sans-serif;font-weight:700;color:var(--accent-gold);font-size:1.75rem}

.desktop-nav{display:none}
.nav-link{margin-left:2rem;color:var(--text-white);transition:color .2s}
.nav-link:hover{color:var(--accent-gold)}

.mobile-menu-button button{border:none;color:var(--text-white);cursor:pointer;font-size:1.5rem;background:none}
.mobile-nav{display:none;padding:1rem 0;flex-direction:column}
.mobile-nav .nav-link{margin-left:0;padding:.5rem 0}
.mobile-nav.active{display:flex}

/* Hero */
.hero-banner{background-image:linear-gradient(135deg,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%;opacity:0.3}
.hero-overlay{inset:0;z-index:1;position:absolute;background-color:rgba(0,0,0,.6)}
.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:50px;
  box-shadow:0 6px 12px rgba(255,107,53,.3);
  display:inline-block;
  color:var(--text-white);
  padding:.75rem 2rem;
  transition:all .3s ease;
  background:linear-gradient(45deg,var(--accent-gold),#ff8c42)
}
.hero-button:hover{transform:translateY(-2px);box-shadow:0 8px 16px rgba(255,107,53,.4)}

.age-badge{border-radius:9999px;right:1.25rem;display:flex;z-index:10;align-items:center;position:absolute;padding:.25rem .75rem;bottom:1.25rem;background-color:rgba(255,107,53,.2);border:1px solid var(--accent-gold)}
.age-number{font-weight:700;color:var(--accent-gold);margin-right:.5rem}
.age-text{color:var(--text-gray);font-size:.875rem}

/* Casinos */
.casinos-section{padding:4rem 0;background-color:var(--primary)}
.casino-card{margin-bottom:2rem;border-radius:12px;border:1px solid var(--border-color);padding:1.5rem;transition:all .3s ease;background-color:var(--primary-dark);box-shadow:0 4px 8px rgba(0,0,0,.1)}
.casino-card:hover{transform:translateY(-4px);box-shadow:0 12px 24px rgba(0,0,0,.2);border-color:var(--accent-gold)}

.casino-content,.casino-logo-area{display:flex;flex-direction:column}
.casino-logo-area{margin-bottom:1.5rem;align-items:center}
.casino-logo-container{margin-bottom:.75rem;border-radius:8px;display:flex;justify-content:center;align-items:center;padding:1rem;height:100px;width:200px;background:rgba(255,255,255,.05)}
.casino-logo{max-height:100%;max-width:100%}
.casino-rating{margin-top:.5rem;display:flex;align-items:center}
.stars{color:var(--accent-gold);margin-right:.5rem}
.rating-text{font-weight:700;color:var(--text-white)}

.casino-benefits{margin-bottom:1.5rem}
.casino-name{margin-bottom:.75rem;color:var(--accent-gold);font-size:1.25rem}
.benefits-list{list-style:none}
.benefits-list li{margin-bottom:.5rem;display:flex;align-items:flex-start}
.benefits-list i{margin-top:.25rem;color:var(--accent-green);margin-right:.5rem}

.casino-cta{display:flex;align-items:center;flex-direction:column}
.bonus-amount{margin-bottom:1rem;text-align:center}
.amount-text{font-weight:700;color:var(--accent-red);font-size:1.5rem}
.bonus-text{color:var(--text-gray);font-size:.875rem}
.get-bonus-button{font-weight:700;border-radius:25px;text-align:center;color:var(--text-white);padding:.75rem 2rem;transition:all .3s ease;background:linear-gradient(45deg,var(--accent-red),#e74c3c);width:100%;border:none}
.get-bonus-button:hover{transform:scale(1.05);background:linear-gradient(45deg,#c82333,var(--accent-red))}
.terms-text{margin-top:.5rem;color:var(--text-dark-gray);font-size:.75rem}

/* 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}
.about-text p{margin-bottom:1rem}

/* 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:8px;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:50px;display:inline-block;padding:.75rem;background:linear-gradient(45deg,var(--accent-gold),#ff8c42)}
.age-badge-large span{font-weight:700;color:var(--text-white);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:8px;display:flex;text-align:center;align-items:center;padding:1rem;transition:all .3s ease;background-color:rgba(255,107,53,.1);flex-direction:column;border:1px solid rgba(255,107,53,.3)}
.support-card:hover{background-color:rgba(255,107,53,.2);transform:translateY(-2px)}
.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:Montserrat,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:4px;border:2px solid var(--accent-gold);justify-content:center;color:var(--accent-gold);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}
}
