:root{
  --text-light:#fefefe;        
  --border-color:#f59e0b;     
  --accent-color:#f97316;       
  --primary-dark:#1c1917;      
  --text-muted:#78716c;    
  --accent-green:#22c55e;      
  --primary:#292524;           
  --accent-red:#ef4444;        
  --text-gray:#a8a29e;        
  --text-white:#ffffff;        
  --primary-light:#44403c;    
  --gold-gradient: linear-gradient(135deg, #f59e0b, #f97316);
}

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

html{scroll-behavior:smooth}

body{
  font-family:"Nunito",sans-serif;
  overflow-x:hidden;
  line-height:1.6;
  color:var(--text-light);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

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

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

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

.text-accent{color:var(--accent-color)}
.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{
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  box-shadow:0 4px 20px rgba(245,158,11,.2);
  z-index:50;
  position:sticky;
  top:0;
  border-bottom: 2px solid var(--accent-color);
}
.header-content{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo-text{
  font-family:"Raleway",sans-serif;
  font-weight:800;
  color:var(--accent-color);
  font-size:1.75rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.desktop-nav{display:none}
.nav-link{margin-left:2rem;color:var(--text-white);transition:all .3s ease;font-weight:500}
.nav-link:hover{color:var(--accent-color);transform:translateY(-2px)}

.mobile-menu-button button{border:none;color:var(--text-white);cursor:pointer;font-size:1.5rem;background:none;transition:color .3s ease}
.mobile-menu-button button:hover{color:var(--accent-color)}
.mobile-nav{display:none;padding:1rem 0;flex-direction:column;background:rgba(28,25,23,.95);border-radius:8px;margin-top:1rem}
.mobile-nav .nav-link{margin-left:0;padding:.75rem 0;border-bottom:1px solid rgba(245,158,11,.2)}
.mobile-nav.active{display:flex}

/* Hero */
.hero-banner{
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  overflow:hidden;
  position:relative;
  padding:6rem 0;
  min-height:70vh;
  display:flex;
  align-items:center;
}
.hero-background{inset:0;z-index:0;position:absolute}
.hero-pattern{
  position:absolute;
  inset:0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(245,158,11,.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(249,115,22,.1) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-overlay{inset:0;z-index:1;position:absolute;background:rgba(28,25,23,.4)}
.hero-content{margin:0 auto;text-align:center;z-index:10;position:relative;max-width:800px}
.hero-title{margin-bottom:1.5rem;line-height:1.2;color:var(--text-white);font-size:2.5rem;text-shadow:0 4px 8px rgba(0,0,0,.3)}
.hero-title span{display:block}
.hero-description{margin-bottom:2.5rem;color:var(--text-gray);font-size:1.2rem;font-weight:500}
.hero-button{
  font-weight:700;
  border-radius:50px;
  box-shadow:0 10px 25px rgba(249,115,22,.3);
  display:inline-block;
  color:var(--text-white);
  padding:1rem 2.5rem;
  transition:all .3s ease;
  background:var(--gold-gradient);
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:1.1rem;
  border:2px solid transparent;
}
.hero-button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(249,115,22,.4);
  border-color:var(--accent-color);
}

.age-badge{
  border-radius:30px;
  right:2rem;
  display:flex;
  z-index:10;
  align-items:center;
  position:absolute;
  padding:.5rem 1rem;
  bottom:2rem;
  background:var(--gold-gradient);
  border:2px solid var(--accent-color);
  box-shadow:0 4px 15px rgba(249,115,22,.3);
}
.age-number{font-weight:800;color:var(--text-white);margin-right:.5rem;font-size:1.1rem}
.age-text{color:var(--text-white);font-size:.9rem;font-weight:600}

/* Entertainment Section */
.entertainment-section{padding:5rem 0;background:var(--primary)}
.casino-card{
  margin-bottom:2rem;
  border-radius:20px;
  border:2px solid var(--border-color);
  padding:2rem;
  transition:all .4s ease;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  position:relative;
  overflow:hidden;
}
.casino-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--gold-gradient);
  opacity:0;
  transition:opacity .3s ease;
}
.casino-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.3);
  border-color:var(--accent-color);
}
.casino-card:hover::before{opacity:1}

.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:15px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:1rem;
  height:100px;
  width:200px;
  background:rgba(255,255,255,.08);
  border:2px solid rgba(249,115,22,.3);
}
.casino-logo{max-height:100%;max-width:100%}
.casino-rating{margin-top:.5rem;display:flex;align-items:center}
.stars{color:var(--accent-color);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-color);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;margin-bottom:1.5rem}
.get-bonus-button{
  font-weight:700;
  border-radius:30px;
  text-align:center;
  color:var(--text-white);
  padding:1rem 2rem;
  transition:all .3s ease;
  background:var(--gold-gradient);
  width:100%;
  border:none;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:1.1rem;
  border:2px solid transparent;
}
.get-bonus-button:hover{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(249,115,22,.4);
  border-color:var(--accent-color);
}

.card-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}
.site-logo{
  width:60px;
  height:60px;
  background:var(--gold-gradient);
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  color:var(--text-white);
  box-shadow:0 4px 15px rgba(249,115,22,.3);
}
.rating{display:flex;align-items:center;gap:.5rem}
.stars{color:var(--accent-color);font-size:1.1rem}
.rating-text{font-weight:700;color:var(--text-white);font-size:1.1rem}

.card-content{margin-bottom:2rem}
.site-name{margin-bottom:1rem;color:var(--accent-color);font-size:1.4rem;font-weight:700}
.features-list{list-style:none}
.features-list li{margin-bottom:.75rem;display:flex;align-items:center;font-weight:500}
.features-list i{margin-right:.75rem;color:var(--accent-green);font-size:1.1rem}

.card-cta{margin-bottom:1.5rem}
.cta-button{
  font-weight:700;
  border-radius:30px;
  text-align:center;
  color:var(--text-white);
  padding:1rem 2rem;
  transition:all .3s ease;
  background:var(--gold-gradient);
  width:100%;
  display:block;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:1.1rem;
  border:2px solid transparent;
}
.cta-button:hover{
  transform:scale(1.05);
  box-shadow:0 8px 20px rgba(249,115,22,.4);
  border-color:var(--accent-color);
}

.disclaimer{
  background:rgba(120,113,108,.2);
  border-radius:10px;
  padding:1rem;
  font-size:.85rem;
  color:var(--text-gray);
  font-weight:500;
  text-align:left;
  border:1px solid rgba(245,158,11,.3);
  line-height:1.4;
}

/* About */
.about-section{padding:5rem 0;background:var(--primary-light)}
.about-content{margin:0 auto;text-align:center;max-width:800px}
.about-text{margin-top:2rem;text-align:left}
.about-text p{margin-bottom:1.5rem;font-size:1.1rem;line-height:1.7}

/* FAQ */
.faq-container{margin:2rem auto 0;max-width:800px}
.faq-item{margin-bottom:1rem;border-radius:15px;border:2px solid var(--border-color);overflow:hidden;background:var(--primary-dark)}
.faq-question{
  display:flex;
  justify-content:space-between;
  cursor:pointer;
  align-items:center;
  padding:1.5rem;
  background:linear-gradient(135deg,var(--primary-dark),var(--primary-light));
  transition:all .3s ease;
}
.faq-question:hover{background:var(--gold-gradient)}
.faq-question h3{font-weight:600;font-size:1.2rem}
.faq-question i{color:var(--accent-color);transition:transform .3s ease;font-size:1.2rem}
.faq-answer{display:none;padding:1.5rem;background-color:var(--primary-light);font-size:1.05rem;line-height:1.6}
.faq-item.active .faq-answer{display:block}
.faq-item.active .faq-question i{transform:rotate(45deg)}

/* Responsible Gaming */
.responsible-section{padding:5rem 0;background:var(--primary-dark)}
.responsible-content{margin:0 auto;max-width:1000px}
.responsible-header{margin-bottom:3rem;text-align:center}
.age-badge-large{
  margin-bottom:1.5rem;
  border-radius:50px;
  display:inline-block;
  padding:1rem 1.5rem;
  background:var(--gold-gradient);
  box-shadow:0 6px 20px rgba(249,115,22,.3);
}
.age-badge-large span{font-weight:800;color:var(--text-white);font-size:1.8rem}
.responsible-list{margin-bottom:2rem;list-style:none;padding-left:0}
.responsible-list li{
  margin-bottom:1rem;
  padding-left:2rem;
  position:relative;
  font-size:1.1rem;
  line-height:1.6;
}
.responsible-list li::before{
  content:'★';
  position:absolute;
  left:0;
  color:var(--accent-color);
  font-weight:bold;
}
.responsible-text p{margin-bottom:1.5rem;font-size:1.1rem;line-height:1.7}
.help-text{font-weight:600;font-size:1.2rem;color:var(--accent-color)}
.support-orgs{margin-top:2rem;display:grid;gap:1.5rem;grid-template-columns:1fr}
.support-card{
  border-radius:15px;
  display:flex;
  text-align:center;
  align-items:center;
  padding:1.5rem;
  transition:all .3s ease;
  background:rgba(245,158,11,.1);
  flex-direction:column;
  border:2px solid rgba(245,158,11,.3);
}
.support-card:hover{
  background:rgba(245,158,11,.2);
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  border-color:var(--accent-color);
}
.org-name{margin-bottom:1rem;font-weight:700;color:var(--accent-color);font-size:1.3rem}
.org-desc{color:var(--text-white);font-size:1rem;line-height:1.5}

/* Footer */
.footer{
  border-top:3px solid var(--accent-color);
  padding:3rem 0;
  background:var(--primary-dark);
}
.footer-grid{display:grid;gap:2rem;grid-template-columns:1fr}
.footer-title{
  font-family:"Raleway",sans-serif;
  margin-bottom:1rem;
  color:var(--accent-color);
  font-size:1.3rem;
  font-weight:700;
}
.footer-text{margin-bottom:1rem;color:var(--text-muted);font-size:.95rem;line-height:1.6}
.footer-age{margin-top:1rem;display:flex;align-items:center}
.footer-age-badge{
  font-weight:700;
  border-radius:8px;
  border:2px solid var(--accent-color);
  background:var(--gold-gradient);
  justify-content:center;
  color:var(--text-white);
  padding:.5rem .75rem;
  font-size:1rem;
  margin-right:.75rem;
}
.footer-age-text{color:var(--text-muted);font-size:.9rem}
.footer-menu{list-style:none}
.footer-menu li{margin-bottom:.75rem}
.footer-menu a{color:var(--text-muted);transition:color .3s ease;font-weight:500}
.footer-menu a:hover{color:var(--accent-color)}
.footer-bottom{
  margin-top:3rem;
  border-top:2px solid var(--border-color);
  text-align:center;
  color:var(--text-muted);
  padding-top:2rem;
  font-size:.9rem;
  line-height:1.6;
}

/* Media Queries */
@media (min-width:768px){
  .desktop-nav{display:flex}
  .mobile-menu-button{display:none}
  .hero-title{font-size:4rem}
  .hero-description{font-size:1.3rem}
  .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(2,1fr)}
  .footer-grid{grid-template-columns:repeat(4,1fr)}
  .section-title{font-size:2.8rem}
}

@media (min-width:1024px){
  .hero-title{font-size:4.5rem}
  .entertainment-grid{grid-template-columns:repeat(auto-fit,minmax(450px,1fr))}
}
