:root {
    --deep-green: #0a120b;
    --accent-green: #162a1a;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fcf6ba 50%, #d4af37 100%);
    --pt-red: #e23636;
    --text-light: #f4f4f4;
    --text-dim: #a0a0a0;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--deep-green); 
    color: var(--text-light); 
    line-height: 1.6; 
}

h1, h2, h3 { 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* 0. Advertising Banner */
.ad-banner {
    background: #000;
    color: var(--text-dim);
    font-size: 12px;
    padding: 8px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #222;
}

.ad-banner b { color: var(--text-light); }

.close-banner { 
    position: absolute; 
    right: 20px; 
    cursor: pointer; 
    font-size: 16px; 
}

/* 1. Hero Section */
.hero {
    padding: 100px 0;
    background:
        linear-gradient(
            rgba(10, 18, 11, 0.75),
            rgba(10, 18, 11, 0.9)
        ),
        url("hero-portugal-casino.jpg") center / cover no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-label {
    color: #d4af37; 
    font-weight: 600; 
    text-transform: uppercase; 
    margin-bottom: 10px;
}

.hero h1 { font-size: 2.8rem; margin-bottom: 15px; }

.gold-highlight { 
    background: var(--gold-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.hero-subtext { 
    font-size: 1.2rem; 
    color: var(--text-dim); 
    max-width: 700px; 
    margin: 0 auto 40px; 
}

.bonus-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.bonus-title {
    text-transform: uppercase; 
    font-size: 14px; 
    letter-spacing: 2px;
    display: block;
}

.bonus-amount { 
    font-size: 3.5rem; 
    font-weight: 800; 
    display: block; 
    margin-bottom: 10px; 
}

.btn-main {
    background: var(--gold-gradient);
    color: #000;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-main:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); 
}

.bonus-terms {
    font-size: 12px; 
    margin-top: 15px; 
    color: var(--text-dim);
}

/* 2. Steps Section */
.steps { padding: 60px 0; background: #0d170e; }

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.step-card { 
    background: rgba(255,255,255,0.02); 
    padding: 30px; 
    border-radius: 10px; 
    text-align: center; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.step-num { 
    color: #d4af37; 
    font-size: 2rem; 
    font-weight: 800; 
    margin-bottom: 10px; 
    display: block; 
}

/* 3. Main Content Section */
.content-section { padding: 80px 0; }

.content-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: 50px; 
}

.content-text h2 { margin-bottom: 20px; color: #fff; }
.content-text p { margin-bottom: 20px; color: var(--text-dim); }

.trust-box { 
    background: rgba(212, 175, 55, 0.05); 
    padding: 25px; 
    border-radius: 10px; 
    height: fit-content; 
}

.trust-box h3 {
    font-size: 16px; 
    margin-bottom: 15px; 
    color: #d4af37;
}

.trust-box ul {
    list-style: none; 
    font-size: 14px; 
    color: var(--text-dim);
}

.trust-box li { margin-bottom: 10px; }

/* 4. Full Width Player Content Section */
.full-width-content {
    background: #060c08;
    padding: 90px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.full-width-content .narrow {
    max-width: 900px;
}

.full-width-content h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.8rem;
}

.full-width-content h3 {
    margin: 40px 0 10px;
    color: #d4af37;
    font-size: 16px;
}

.full-width-content p {
    color: var(--text-dim);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
}

.full-width-content strong { color: #fff; font-weight: 600; }

/* 5. Responsible Gaming */
.responsible { 
    background: #050a06; 
    padding: 40px 0; 
    border-top: 2px solid var(--pt-red); 
}

.resp-flex { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    justify-content: center; 
}

.badge-18 { 
    border: 2px solid var(--pt-red); 
    color: var(--pt-red); 
    padding: 5px 10px; 
    border-radius: 50%; 
    font-weight: 800; 
}

.resp-text { text-align: left; }
.resp-text h3 { font-size: 18px; margin-bottom: 5px; }
.resp-text p { font-size: 14px; color: var(--text-dim); max-width: 600px; }

/* Footer */
footer { 
    padding: 40px 0; 
    text-align: center; 
    font-size: 14px; 
    color: var(--text-dim); 
    border-top: 1px solid #1a1a1a; 
}

.footer-links { margin-bottom: 20px; }

.footer-links a { 
    color: var(--text-dim); 
    text-decoration: none; 
    margin: 0 10px; 
}

.footer-links a:hover { color: #fff; }

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-family: system-ui, sans-serif;
    font-size: 14px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

#cookie-banner.show {
    display: flex;
}

#cookie-banner button {
    background: #4caf50;
    border: none;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

#cookie-banner button:hover {
    background: #43a047;
}

/* Animations & Responsive */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .bonus-amount { font-size: 2.5rem; }
    .resp-flex { flex-direction: column; text-align: center; }
    .resp-text { text-align: center; }
}

/* Footer Styles Atualizados */
footer { 
    padding: 60px 0 40px; 
    background-color: #050a06; /* Um tom ligeiramente mais escuro que o fundo */
    border-top: 1px solid #1a1a1a; 
    font-size: 13px;
    color: var(--text-dim);
}

.footer-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #1a1a1a;
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a { 
    color: var(--text-dim); 
    text-decoration: none; 
    margin: 0 10px; 
    transition: color 0.3s;
}

.footer-links a:hover { 
    color: #fff; 
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
    .footer-legal-grid {
        grid-template-columns: 1fr; /* Uma coluna no telemóvel */
        gap: 30px;
    }
}