:root {
    --bg-color: #0b1121;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary: #1d9c79; /* Efisa Emerald Green */
    --glow-1: rgba(29, 156, 121, 0.2);
    --glow-2: rgba(30, 58, 138, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Glow Effects */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--glow-1);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--glow-2);
    bottom: -150px;
    right: -100px;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    z-index: 1;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeUp 0.8s ease-out;
}

.header {
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(29, 156, 121, 0.1);
    border: 1px solid rgba(29, 156, 121, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.status-badge span:last-child {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(29, 156, 121, 0.4);
    animation: pulse-animation 2s infinite;
}

.instruction {
    background: rgba(255,255,255,0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.instruction p {
    margin-bottom: 0;
    font-size: 14px;
}

.instruction strong {
    color: var(--text-main);
}

/* Animations */
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(29, 156, 121, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(29, 156, 121, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 156, 121, 0); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }
}
