:root {
    --primary: #ffffff;
    --primary-light: #f3f4f6;
    --secondary: #6b7280;
    --accent: #9ca3af;
    --bg-dark: #000000;
    --card-bg: rgba(15, 15, 15, 0.4);
    --border: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-dim: #a1a1aa;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.05;
    transition: transform 0.3s ease-out;
}

#orb-1 {
    background: #ffffff;
    top: -100px;
    left: -100px;
    animation: float 20s infinite alternate;
}

#orb-2 {
    background: #333333;
    bottom: -100px;
    right: -100px;
    animation: float 25s infinite alternate-reverse;
}

#orb-3 {
    background: #555555;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    animation: pulse 15s infinite;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, 100px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.2); }
}

/* Main Layout */
.content-wrapper {
    z-index: 1;
    perspective: 1000px;
    width: 90%;
    max-width: 650px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: cardEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEntrance {
    from { 
        opacity: 0;
        transform: translateY(30px) rotateX(-5deg);
    }
    to { 
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.message {
    color: var(--text-dim);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, #333 0%, #fff 100%);
    border-radius: 4px;
    animation: progressSlow 3s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes progressSlow {
    from { width: 0%; }
    to { width: 75%; }
}

.progress-text {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-primary {
    background: #ffffff;
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 14px;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    animation: pulseLoop 2s infinite;
}

@keyframes pulseLoop {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Responsive */
@media (max-width: 480px) {
    body { padding: 40px 0; }
    h1 { font-size: 2.5rem; }
    .content-wrapper { width: 92%; }
    .glass-card { padding: 40px 20px; }
    .message { font-size: 1rem; margin-bottom: 30px; }
    .progress-container { margin-bottom: 30px; }
    .action-buttons { flex-direction: column; }
    .btn { width: 100%; }
}
