:root {
    --primary: #3498db;
    --secondary: #27ae60;
    --eco: #2ecc71;
    --dark: #0a0b10;
    --darker: #050608;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(52, 152, 219, 0.2);
    --eco-glow: rgba(46, 204, 113, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.logo-container {
    margin-bottom: 40px;
}

.logo-svg {
    filter: drop-shadow(0 0 15px var(--accent-glow));
    animation: pulse 4s infinite ease-in-out;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 100px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-eco {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--eco);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px var(--accent-glow);
}

p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--eco);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.leaf-icon {
    font-size: 20px;
    animation: floatLeaf 3s ease-in-out infinite;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.footer {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    z-index: 2;
    position: relative;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px var(--accent-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--primary)); }
}

/* Base styles for mobile */
@media (max-width: 600px) {
    .glass-card {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .logo-svg {
        width: 150px;
        height: auto;
    }
}
