* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0f17;
    color: #eef2f8;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- HEADER / NAVBAR ---------- */
.site-header {
    background: rgba(10, 16, 28, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: white;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, #f0c419, #d18f00);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0f17;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(240, 196, 25, 0.35);
    transition: transform 0.2s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.club-name {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.2px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: #ffffff;
}

.club-name small {
    font-weight: 400;
    font-size: 0.65rem;
    color: #b8c5d6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #cdd9e9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #ffd966;
    border-bottom-color: #f0c419;
}

.nav-cta {
    background: linear-gradient(135deg, #f0c419, #e6a800);
    color: #0b0f17 !important;
    font-weight: 700;
    padding: 8px 20px !important;
    border-radius: 40px;
    border-bottom: none !important;
    transition: 0.25s;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 16px rgba(240, 196, 25, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ffd966;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(240, 196, 25, 0.5);
}

/* ---------- HERO SECTION (com imagem de fundo) ---------- */
.hero {
    background: 
        linear-gradient(rgba(10, 16, 28, 0.75), rgba(10, 16, 28, 0.85)),
        url('https://ds4mod.com/images/slider-minimal-slide-1-1920x968.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: 40px;
    padding: 60px 20px 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(240, 196, 25, 0.25);
}

.hero::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(240, 196, 25, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(240, 196, 25, 0.12);
    border: 1px solid rgba(240, 196, 25, 0.6);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffd966;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.hero h1 span {
    color: #f0c419;
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: #b7c5d9;
    max-width: 550px;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: #f0c419;
    color: #0b0f17;
    box-shadow: 0 10px 24px rgba(240, 196, 25, 0.45);
}

.btn-primary:hover {
    background: #ffd966;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(240, 196, 25, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #eef2f8;
    color: #eef2f8;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: #eef2f8;
    color: #0b0f17;
    border-color: #eef2f8;
    box-shadow: 0 8px 20px rgba(255,255,255,0.2);
}

/* ---------- CARDS DE DESTAQUE (estatísticas) ---------- */
.stats-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(18, 25, 40, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 196, 25, 0.15);
    border-radius: 24px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.6);
    border-color: rgba(240, 196, 25, 0.5);
    background: rgba(24, 32, 50, 0.9);
}

.stat-icon {
    background: rgba(240, 196, 25, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #f0c419;
}

.stat-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.stat-card p {
    color: #a9b8ce;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ---------- SEÇÃO DE PLANOS ---------- */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title h2 {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.section-title a {
    color: #f0c419;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.section-title a:hover {
    color: #ffd966;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* Estilo para os cards de planos */
.plan-card {
    background: rgba(18, 25, 40, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.5);
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-card:hover {
    box-shadow: 0 18px 32px rgba(0,0,0,0.7);
    transform: scale(1.01);
    border-color: rgba(240, 196, 25, 0.3);
    background: rgba(24, 32, 50, 0.85);
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.plan-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.plan-price {
    font-weight: 800;
    font-size: 1.4rem;
    color: #f0c419;
    background: rgba(240, 196, 25, 0.12);
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.plan-badge {
    color: #9fafc9;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.plan-description {
    font-weight: 600;
    color: #e6ecf5;
    margin: 4px 0;
}

.game-info {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 14px;
    margin-top: 14px;
    font-size: 0.85rem;
    color: #bdc9db;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- SEÇÃO NOTÍCIAS ---------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.news-card {
    background: rgba(18, 25, 40, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 38px rgba(0,0,0,0.7);
    border-color: rgba(240, 196, 25, 0.3);
}

.news-image {
    height: 150px;
    background: linear-gradient(130deg, #1d2b44, #111a2c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0c419;
    font-size: 2.5rem;
    border-bottom: 1px solid rgba(240, 196, 25, 0.2);
}

.news-content {
    padding: 18px 18px 22px;
}

.news-tag {
    background: rgba(240, 196, 25, 0.15);
    color: #f0c419;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
    color: #ffffff;
}

.news-card p {
    color: #a9b8ce;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.news-link {
    text-decoration: none;
    font-weight: 600;
    color: #f0c419;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.news-link:hover {
    color: #ffd966;
}

/* ---------- CTA / MEMBRO ---------- */
.membership-cta {
    background: linear-gradient(135deg, #151e30, #0b101c);
    border-radius: 40px;
    padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
    border: 1px solid rgba(240, 196, 25, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.membership-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    max-width: 500px;
    color: #fff;
}

.membership-cta p {
    color: #b8c5d6;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #070b13;
    color: #8e9db5;
    padding: 30px 0;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(240, 196, 25, 0.15);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #f0c419;
}

/* ---------- RESPONSIVO (mobile) ---------- */
@media (max-width: 720px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }
    .nav-links {
        width: 100%;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 6px;
    }
    .nav-links a {
        font-size: 0.8rem;
        gap: 4px;
        padding: 4px 2px;
    }
    .nav-cta {
        padding: 6px 14px !important;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .hero {
        padding: 35px 15px 45px;
        border-radius: 0 0 28px 28px;
        background-position: center top;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .stats-highlight {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .games-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    .membership-cta {
        flex-direction: column;
        text-align: center;
        border-radius: 28px;
        padding: 30px 20px;
    }
}

@media (max-width: 400px) {
    .stats-highlight {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
}