@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #275210;
    --green-main: #52a825;
    --green-light: #7fdb3a;
    --neon-glow: rgba(127, 219, 58, 0.4);
    --bg-dark: #0a0a0a;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}


.background {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 40%, rgba(82, 168, 37, 0.07), transparent 45%),
        radial-gradient(circle at 10%, #10150b 0%, var(--bg-dark) 50%),
        linear-gradient(135deg, #050505, #0f110e, #141712);
    z-index: 1;
}

.container {
    text-align: center;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}


.circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5 0%, #b8b8b8 45%, #6e6e6e 100%);
    box-shadow: 
        inset 0 4px 10px rgba(255, 255, 255, 0.6),
        inset -4px -8px 12px rgba(0, 0, 0, 0.35),
        0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    z-index: 2;
}


.circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 50%);
    transform: rotate(-20deg);
    pointer-events: none;
}


.logo {
    position: absolute;
    z-index: 3;
    bottom: 7cqmin;
    font-family: 'Montserrat', 'Futura', sans-serif;
    font-size: 195px;
    font-weight: 700; 
    letter-spacing: -14px; 
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-right: -14px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 45%, var(--green-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(5px 12px 8px rgba(0, 0, 0, 0.6));
    user-select: none;
}


/*.logo span:nth-child(3) {
    display: flex;

}*/

.glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}


h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

p {
    max-width: 480px;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    height: 45px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    transform: translateY(0);
}


.fade-out {
    opacity: 0;
    transform: translateY(5px);
}


.loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.loader div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 12px var(--green-light);
    animation: bounce 1.2s infinite ease-in-out;
}

.loader div:nth-child(2) { animation-delay: 0.15s; }
.loader div:nth-child(3) { animation-delay: 0.3s; }


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 0.9; }
}

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
    40% { transform: scale(1.2) translateY(-8px); opacity: 1; }
}


@media (max-width: 768px) {
    .logo-container {
        width: 240px;
        height: 240px;
    }
    .circle {
        width: 190px;
        height: 190px;
    }
    .logo {
        font-size: 140px;
        letter-spacing: -12px;
        margin-right: -12px;
    }
    .glow {
        width: 220px;
        height: 220px;
    }
    h2 {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
    p {
        font-size: 0.85rem;
        padding: 0 15px;
    }
}