:root {
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.4);
    --bg-dark: #0a0a0c;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

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

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

/* Use the generated image as background */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('abstract_construction_background.png') no-repeat center center;
    background-size: cover;
    opacity: 0.6;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    z-index: 10;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 40px;
    width: 100%;
    max-width: 500px;
    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(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    margin-bottom: 40px;
}

.logo-symbol {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid var(--primary);
    padding: 10px 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 0 20px var(--primary-glow);
}

h1 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

.content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content p {
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.status-badge {
    background: rgba(138, 43, 226, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

/* Progress Section */
.progress-container {
    margin-bottom: 40px;
}

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

.progress-fill {
    height: 100%;
    width: 85%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
    animation: progressFill 3s ease-in-out infinite alternate;
}

@keyframes progressFill {
    from { opacity: 0.8; }
    to { opacity: 1; filter: brightness(1.2); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Socials */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Footer */
.footer {
    font-size: 0.85rem;
    color: var(--text-dim);
    opacity: 0.6;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    opacity: 0.5;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: move1 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #4f46e5;
    bottom: -50px;
    left: -50px;
    animation: move2 15s infinite alternate;
}

@keyframes move1 {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 100px) scale(1.1); }
}

@keyframes move2 {
    from { transform: translate(0, 0); }
    to { transform: translate(100px, -50px) scale(1.2); }
}

/* Responsive */
@media (max-width: 600px) {
    .glass-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
    
    .logo-symbol {
        font-size: 1.5rem;
    }
}
