/* Landing Page Specific Styles */
body.landing-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url('https://www.fogaonet.com/apostas/static/imagem-destaque-Aviator.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-title {
    font-weight: 900;
    font-size: var(--font-2xl);
    color: white;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.landing-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-card {
    width: 280px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #050505;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    border-color: var(--color-purple);
}

.card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.card-footer {
    height: 60px;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Specific Styles */
.style-7k {
    border: 1px solid rgba(118, 255, 3, 0.3);
}

.style-7k:hover {
    box-shadow: 0 0 20px rgba(118, 255, 3, 0.2);
}

@media (max-width: 768px) {
    .landing-grid {
        flex-direction: column;
        align-items: center;
    }

    .landing-card {
        width: 100%;
        max-width: 340px;
        height: 120px;
        flex-direction: row;
    }

    .card-footer {
        width: 80px;
        height: 100%;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.8rem;
        flex-direction: column;
        text-align: center;
        padding: 5px;
    }
}