/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a2e0a; /* Verde escuro sólido como base */
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    text-rendering: optimizeSpeed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top right, rgba(0, 255, 127, 0.05), transparent 60%),
        radial-gradient(circle at bottom left, rgba(0, 255, 127, 0.03), transparent 60%),
        url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0h2v2H1V0zm4 0h2v2H5V0zm4 0h2v2H9V0zm4 0h2v2h-2V0zm4 0h2v2h-2V0zM1 4h2v2H1V4zm4 0h2v2H5V4zm4 0h2v2H9V4zm4 0h2v2h-2V4zm4 0h2v2h-2V4zM1 8h2v2H1V8zm4 0h2v2H5V8zm4 0h2v2H9V8zm4 0h2v2h-2V8zm4 0h2v2h-2V8zM1 12h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2zM1 16h2v2H1v-2zm4 0h2v2H5v-2zm4 0h2v2H9v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z' fill='rgba(0, 255, 127, 0.02)' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    contain: content;
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px 0 40px;
    contain: layout style;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid rgba(0, 204, 102, 0.5);
    contain: strict;
    will-change: transform;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: rgba(255, 215, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

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

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight {
    color: #00cc66; /* Verde mais claro para destaque */
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #cccccc;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00cc66 0%, #009933 100%); /* Verde mais vibrante para botões */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 204, 102, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009933 0%, #00cc66 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
    border-radius: 30px;
}

.cta-button:hover::before {
    opacity: 1;
}

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

.telegram-button {
    background: linear-gradient(135deg, #00cc66 0%, #009933 100%);
    color: #ffffff;
}

.telegram-button:hover {
    background: linear-gradient(135deg, #009933 0%, #00cc66 100%);
}

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

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.feature-box {
    background: #111111;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    contain: content;
    will-change: transform;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 15px;
    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;
}

.feature-box:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
}

.feature-box:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
}

.feature-box:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
}

.feature-box:nth-child(4) {
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.1) 0%, rgba(0, 204, 102, 0.05) 100%);
}

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

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

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

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

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.benefit-card {
    background: rgba(0, 51, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid rgba(0, 204, 102, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    contain: content;
    will-change: transform;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 204, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 30px;
    color: #00cc66;
}

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

.benefit-card p {
    font-size: 15px;
    color: #aaaaaa;
}

/* Bottom CTA */
.bottom-cta {
    background: rgba(0, 51, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(0, 204, 102, 0.1);
    content-visibility: auto;
    contain-intrinsic-size: 200px;
}

.bottom-cta p {
    font-size: 20px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.age-restriction {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #FFD700;
    color: #003300;
    font-weight: 700;
    margin-right: 15px;
}

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

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

/* Responsive Styles - Otimizado para Mobile */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }
    
    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        width: 100%;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .bottom-cta {
        padding: 30px 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    footer {
        padding: 20px 10px;
    }
    
    .copyright, .disclaimer {
        font-size: 12px;
    }
}

/* Otimizações de desempenho */
img, video {
    max-width: 100%;
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Melhorias de acessibilidade */
:focus {
    outline: 2px solid #00cc66;
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Melhorias para impressão */
@media print {
    body {
        background: #fff;
        color: #000;
    }
    
    .cta-button, .particles {
        display: none;
    }
}
