:root {
    --primary: #e63946;
    --dark: #0a0a0a;
    --light: #f1faee;
    --accent: #457b9d;
    --gray: #1d1d1d;
    --glass: rgba(255, 255, 255, 0.03);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.background {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.2s ease-out;
}

.content {
    max-width: 600px;
    width: 90%;
    padding: 3rem;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-out;
}

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

header h1 {
    font-size: 3rem;
    letter-spacing: 0.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--primary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.progress-container {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 35%;
    background: var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary);
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 35%; }
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #666;
}
