/* Reset e estilos base - Apenas os estilos não críticos, os críticos estão inline no HTML */
* {
    box-sizing: border-box;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(204, 0, 0, 0.15), transparent 70%),
                radial-gradient(circle at bottom left, rgba(226, 43, 43, 0.1), transparent 70%);
    z-index: -1;
}

/* Estilos de cabeçalho */
header {
    text-align: center;
    padding: 20px 0;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: rgba(204, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 25px;
}

.subtitle .icon {
    color: #cc0000;
    margin-right: 8px;
}

.subtitle p {
    font-size: 14px;
    font-weight: 500;
}

.hero {
    margin-top: 30px;
    margin-bottom: 40px;
}

.highlight {
    color: #cc0000;
}

/* Estilos de botões */
.telegram-button {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.telegram-button:hover {
    box-shadow: 0 7px 20px rgba(0, 136, 204, 0.5);
}

.cta-button i {
    margin-right: 8px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 136, 204, 0.5);
}

/* Seção de recursos */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    background: rgba(10, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-box:hover .feature-icon {
    color: #cc0000;
    transform: scale(1.1);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: #aaaaaa;
}

/* Seção de benefícios */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-card {
    background: rgba(10, 0, 0, 0.4);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: 28px;
    color: #cc0000;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: #ff0000;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #cccccc;
}

/* CTA inferior */
.bottom-cta {
    text-align: center;
    margin: 30px 0;
    padding: 30px 15px;
    background: rgba(10, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Rodapé */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.responsible-gaming {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.age-restriction {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: #cc0000;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 14px;
}

.responsible-gaming p {
    font-size: 11px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyright, .disclaimer {
    font-size: 11px;
    color: #777777;
    margin-bottom: 8px;
}

/* Animações */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4); }
}

.pulse {
    animation: pulse 1s ease-in-out;
}

/* Estado ativo para toque em mobile */
.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 26px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bottom-cta p {
        font-size: 18px;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .container {
        padding: 10px;
    }
    
    .subtitle {
        padding: 6px 12px;
    }
    
    .responsible-gaming {
        flex-direction: column;
    }
    
    .age-restriction {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .profile-img {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }
    
    h1 {
        font-size: 20px;
        margin-top: 5px;
    }
    
    .hero h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 18px;
        font-size: 14px;
        width: 90%;
        max-width: 280px;
        border-radius: 25px;
    }
    
    .benefit-card {
        padding: 15px 10px;
        margin-bottom: 0;
    }
    
    .benefit-icon {
        height: 60px;
        width: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .bottom-cta {
        padding: 25px 10px;
        margin: 25px 0;
    }
    
    .bottom-cta p {
        font-size: 15px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .feature-box {
        padding: 15px 10px;
    }
    
    .feature-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .feature-description {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .responsible-gaming p {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .copyright, .disclaimer {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .age-restriction {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    header {
        padding: 20px 0;
    }
    
    .subtitle {
        font-size: 12px;
        margin-bottom: 25px;
    }
    
    footer {
        padding: 20px 0;
    }
}

@media (max-width: 360px) {
    .profile-img {
        width: 70px;
        height: 70px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .cta-button {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .benefit-card h3 {
        font-size: 15px;
    }
    
    .benefit-card p {
        font-size: 12px;
    }
    
    .benefit-icon {
        height: 50px;
        width: 50px;
        font-size: 20px;
    }
    
    .bottom-cta p {
        font-size: 14px;
    }
}
