:root{
  --text-light:#e5e5e5;        
  --border-color:#333333;     
  --accent-gold:#fbbf24;       
  --primary-dark:#000000;      
  --text-dark-gray:#b3b3b3;    
  --accent-green:#10b981;      
  --primary:#000000;           
  --accent-red:#dc2626;        
  --text-gray:#cccccc;        
  --text-white:#ffffff;        
  --primary-light:#1a1a1a;    
}

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

html{scroll-behavior:smooth}

body{
  font-family:Inter,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:Poppins,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:Poppins,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(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,.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,.15);
  display:inline-block;
  color:var(--primary-dark);
  padding:.75rem 2rem;
  transition:all .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:.25rem .75rem;bottom:1.25rem;background-color:hsla(0,0%,100%,.12)}
.age-number{font-weight:700;color:var(--text-white);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:.75rem;border:1px solid var(--border-color);padding:1.5rem;transition:all .3s ease;background-color:var(--primary-dark)}
.casino-card:hover{transform:translateY(-.25rem);box-shadow:0 12px 20px rgba(0,0,0,.15)}

.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:.5rem;display:flex;justify-content:center;align-items:center;padding:1rem;height:100px;width:200px}
.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}

/* License Badge */
.licence-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 4px 12px;
    margin-top: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.licence-badge .verified-icon {
    color: #10B981;
    margin-right: 6px;
    font-size: 0.9rem;
}

.licence-badge .licence-text {
    color: #A7F3D0;
    font-weight: 500;
    font-size: 0.8rem;
}

.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: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:#0d8c6e}
.terms-text{margin-top:.5rem;color:var(--text-dark-gray);font-size:.75rem}

/* Responsible Gambling Section */
.responsible-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.responsible-banner {
    background-color: #1a7d5a;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #1e9a6d;
}

.responsible-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.banner-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.banner-logo img {
    max-height: 50px;
    width: auto;
    max-width: 100%;
}

/* Gordon Moody Banner */
.gordon-moody-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.gordon-moody-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    text-align: left;
}

.sun-icon {
    width: 40px;
    height: 40px;
    background-color: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sun-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.gordon-text {
    line-height: 1.1;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.gordon-text br {
    display: block;
    content: "";
    line-height: 1.2;
}

/* Make sure the banner text is properly aligned */
.responsible-banner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.banner-logo {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    color: #f0f9f5;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .responsible-banners {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .responsible-banners {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* End of Responsible Gambling Section */
.responsible-section {
    padding: 4rem 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

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

.responsible-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.age-badge-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-badge-large .age-number {
    font-size: 1.5rem;
    font-weight: 800;
    margin-right: 0.5rem;
    color: var(--accent-gold);
}

.age-badge-large .age-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
}

.safe-gambling-tips {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0 1rem;
}

.safe-gambling-tips li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-gray);
}

.safe-gambling-tips li i {
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.responsible-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2.5rem 0;
}

.support-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.org-logo {
    flex-shrink: 0;
    margin-right: 1.25rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

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

.org-details {
    flex: 1;
}

.org-name {
    display: block;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.org-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.commission {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.commission a {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.commission a:hover {
    text-decoration: underline;
}

.commission a::before {
    content: "✓";
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--accent-green);
    font-weight: bold;
}

/* Terms Box */
.terms-box {
  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}
.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:.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-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.age-badge-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.age-badge-large .age-number {
    color: black;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.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 {
    background-color: #000000;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #f0b90b;
    display: block;
    margin-bottom: 15px;
}

.footer-logo .text-white {
    color: #fff;
}

.footer-logo .text-gold {
    color: #f0b90b;
}

.footer-logo .tagline {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-links h4 {
    color: #f0b90b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #10b981;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #34d399;
    text-decoration: none;
    transform: translateX(3px);
}

.footer-bottom {
    background-color: #081220;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-links h4 {
        margin-bottom: 15px;
    }
}

/* Update the logo text color in dark mode */
@media (prefers-color-scheme: dark) {
    .footer-logo .text-white {
        color: #fff;
    }
    
    .footer-logo .text-gold {
        color: #f0b90b;
    }
}

/* 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}
}
