:root {
    --bg-dark: #0a0a0c;
    --accent-blue: #4f46e5;
    --accent-glow: rgba(79, 70, 229, 0.4);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Handling */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') no-repeat center center/cover;
    opacity: 0.6;
    z-index: -2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 90%);
    z-index: -1;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

/* Typography */
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Glass Contact Box */
.contact-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2.5rem;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.email {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.email:hover {
    color: var(--accent-blue);
}

footer {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in { animation: fadeInUp 1s ease-out forwards; }
.fade-in-delay-1 { animation: fadeInUp 1s ease-out 0.2s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeInUp 1s ease-out 0.4s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeInUp 1s ease-out 0.6s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeInUp 1s ease-out 1s forwards; opacity: 0; }

/* Interactive Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s;
}

@media (max-width: 600px) {
    .contact-box {
        padding: 1rem 1.5rem;
    }
    .status {
        font-size: 2.5rem;
    }
}
