:root {
    --bg-color: #0f1115;
    --text-color: #e0e0e0;
    --accent-color: #00d2ff;
    --metal-gradient: linear-gradient(to bottom, #cfd8dc, #607d8b, #37474f);
    --gold-gradient: linear-gradient(45deg, #FFD700, #FDB931, #C0A020);
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Effects */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, #1a1e25 0%, #000000 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 2px);
    z-index: 2;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 210, 255, 0.05);
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Logo */
.logo-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    background: var(--metal-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--accent-color);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow: 0 0 15px var(--accent-color);
}

.status-text {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #fff;
    text-transform: uppercase;
}

.glitch {
    position: relative;
    color: var(--accent-color);
    font-weight: 700;
}

.sub-text {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}



/* Footer */
.contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.contact-item {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.label {
    color: #888;
    margin-right: 0.5rem;
}

.link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-color);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #555;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .status-text {
        font-size: 1.5rem;
    }

    .content-wrapper {
        width: 90%;
        padding: 1.5rem;
    }
}