:root {
    --primary-color: #00ff88;
    --secondary-color: #00ccff;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --danger-color: #ff4466;
    --success-color: #00ff88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 3rem;
    background: rgba(13, 14, 20, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.01);
    max-width: 600px; 
    width: 90%;
    z-index: 1;
    box-shadow: 
        0 8px 32px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 80px rgba(0, 0, 0, 0.14);
    position: relative;
    overflow: hidden;
    visibility: hidden;
    z-index: 9999;
}

.container.visible {
    visibility: visible;
}

.container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 143, 39, 0.03),
        transparent 40%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.container:hover::before {
    opacity: 1;
}

.container > * {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    width: 100%;
}

.logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    margin: 0;
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.02);
}

.light-logo {
    display: none;
}

.dark-logo {
    display: block;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 68, 102, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 102, 0.2);
    margin: 0;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--danger-color);
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 68, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 102, 0);
    }
}

.status-text {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.glow-text {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.message-box {
    margin: 2rem 0;
    line-height: 1.6;
}

.message-box p {
    margin: 0.7rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    border-radius: 20px;
    transform: none !important;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 140px;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.feature span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.provider-message {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 1.3s ease !important;
}

.provider-message:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    padding: 0.7rem;
    border-radius: 12px;
    background: rgba(13, 14, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link.telegram:hover {
    background: linear-gradient(45deg, #2AABEE08, #229ED908);
    border-color: #2AABEE22;
}

.social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25D36608, #20BA5E08);
    border-color: #25D36622;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E4405F08, #BD2D8708);
    border-color: #E4405F22;
}

.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
}

.particle {
    position: absolute;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
    transition: transform 0.2s ease-out;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    opacity: 0;
}

.particle.bright {
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.5) 40%,
        transparent 100%
    );
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
    animation: starTwinkle 4s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.particle.small {
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, -50px);
    }
    50% {
        transform: translate(200px, 0);
    }
    75% {
        transform: translate(100px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatReverse {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-100px, 50px);
    }
    50% {
        transform: translate(-200px, 0);
    }
    75% {
        transform: translate(-100px, -50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5),
                     0 0 30px rgba(0, 204, 255, 0.5);
    }
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: 
        radial-gradient(
            1px circle at center,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 100%
        ) 0 0 / 20px 20px,
        radial-gradient(
            2000px circle at 0% 0%,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 20%,
            rgba(255, 255, 255, 0.03) 40%,
            transparent 70%
        ),
        radial-gradient(
            2000px circle at 100% 100%,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 20%,
            rgba(255, 255, 255, 0.03) 40%,
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 20, 0.9) 0%,
            var(--background-color) 100%
        );
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .glow-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 1.5rem; 
        margin-top: 15px;
        margin-bottom: 15px;
        backdrop-filter: none;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .status-indicator {
        margin: 0;
    }
    
    .features {
        gap: 1rem;
    }

    .feature {
        flex: 1; 
    }
    body {
        overflow-y: auto; 
    }
}

.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
} 