/* Loading Overlay Styles - Desativado conforme solicitado */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(80, 10, 10, 0.97) 0%, rgba(30, 0, 0, 0.97) 100%);
    display: none !important; /* Forçando a não exibição */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -9999; /* Valor negativo para garantir que fique atrás de tudo */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow: hidden;
}

.loading-overlay.active {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    width: 90%;
    padding: 30px;
    background: rgba(50, 0, 0, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    overflow: hidden;
}

.loading-icon {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5px 0;
}

.loading-plane {
    font-size: 40px;
    line-height: 1;
    animation: fly 4s ease-in-out infinite;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-plane i {
    color: #ff0000;
    font-size: 40px;
    transform: rotate(30deg);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.loading-trail {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0), rgba(255, 0, 0, 1));
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.9;
    animation: trail 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

@keyframes fly {
    0% {
        transform: translateY(0) scale(0.9);
    }
    20% {
        transform: translateY(-10px) scale(0.95);
    }
    40% {
        transform: translateY(-15px) scale(1);
    }
    60% {
        transform: translateY(-20px) scale(1.05);
    }
    80% {
        transform: translateY(-10px) scale(1);
    }
    100% {
        transform: translateY(0) scale(0.9);
    }
}

@keyframes trail {
    0% {
        height: 0;
        top: 100%;
        opacity: 0;
    }
    50% {
        height: 70%;
        top: 30%;
        opacity: 0.8;
    }
    100% {
        height: 0;
        top: 0;
        opacity: 0;
    }
}

.loading-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.loading-info {
    width: 100%;
    margin: 10px 0;
    padding: 8px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-item {
    color: #ff3333;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    background-color: rgba(80, 0, 0, 0.2);
}

.live-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: rgba(80, 0, 0, 0.3);
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    width: 100%;
    max-width: 250px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.8);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.counter-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

#peopleCount {
    font-weight: 700;
    color: #ff0000;
    transition: color 0.3s ease;
}

#peopleCount.highlight {
    color: #ffcc00;
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    text-align: center;
    margin: 15px auto 25px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    width: 100%;
    max-width: 280px;
    white-space: normal;
    overflow: hidden;
}

.loading-progress {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) inset;
    max-width: 280px;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0000, #ff3333);
    border-radius: 4px;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0a0a 50%, #1a0a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

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

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

/* Header Styles */
header {
    text-align: center;
    padding: 30px 0;
}

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

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff4500;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    margin-bottom: 15px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img img {
    width: 100%;
    height: auto;
}

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, 69, 0, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto 40px;
}

.subtitle .icon {
    color: #ff4500;
    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: #ff4500;
}

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

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500 0%, #cc3700 100%);
    color: white;
    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(255, 69, 0, 0.4);
}

.telegram-button {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 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(255, 69, 0, 0.5);
}

/* 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(26, 10, 10, 0.6);
}

.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(255, 69, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 100%);
}

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

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

.feature-box:nth-child(4) {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0.1) 100%);
}

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

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

.feature-box:nth-child(1) .feature-icon,
.feature-box:nth-child(1) h3 {
    color: #ff4500;
}

.feature-box:nth-child(2) .feature-icon,
.feature-box:nth-child(2) h3 {
    color: #ffa500;
}

.feature-box:nth-child(3) .feature-icon,
.feature-box:nth-child(3) h3 {
    color: #0099ff;
}

.feature-box:nth-child(4) .feature-icon,
.feature-box:nth-child(4) h3 {
    color: #8a2be2;
}

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

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

/* Benefits Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-card {
    background: #111111;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    background: rgba(26, 10, 10, 0.6);
}

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

.benefit-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.benefit-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2) 0%, rgba(0, 153, 255, 0.1) 100%);
}

.benefit-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(46, 204, 113, 0.1) 100%);
}

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

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

.benefit-card:nth-child(1) .benefit-icon,
.benefit-card:nth-child(1) h3 {
    color: #8a2be2;
}

.benefit-card:nth-child(2) .benefit-icon,
.benefit-card:nth-child(2) h3 {
    color: #0099ff;
}

.benefit-card:nth-child(3) .benefit-icon,
.benefit-card:nth-child(3) h3 {
    color: #2ecc71;
}

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

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

/* Bottom CTA Section */
.bottom-cta {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(26, 10, 10, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta p {
    font-size: 18px;
    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);
    background: rgba(26, 10, 10, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    margin-top: 20px;
}

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

.age-restriction {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    margin-right: 15px;
}

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

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

.disclaimer {
    font-size: 12px;
    color: #555555;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .feature-box {
        padding: 20px 10px;
    }
    
    .feature-icon {
        font-size: 24px;
        height: 50px;
        width: 50px;
    }
    
    .benefit-icon {
        font-size: 28px;
        height: 60px;
        width: 60px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .bottom-cta p {
        font-size: 16px;
    }
}

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

@media (max-width: 360px) {
    .container {
        padding: 15px 10px;
    }
    
    .profile-img {
        width: 80px;
        height: 80px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .feature-box h3 {
        font-size: 20px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
}
