:root {
    --bg-color: #050505;
    --text-primary: #e0e0e0;
    --text-secondary: #888888;
    --accent: #d4d4d8;
    /* Subtle silver/metal */
    --accent-glow: rgba(212, 212, 216, 0.2);
    --font-main: 'Outfit', sans-serif;
}

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

/* Screen reader only utility class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

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

/* Background gradient for depth */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(30, 30, 35, 1) 0%, rgba(5, 5, 5, 1) 100%),
        url('https://www.transparenttextures.com/patterns/dark-leather.png');
    /* Subtle texture */
    background-blend-mode: overlay;
    z-index: -1;
    opacity: 0.6;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 2s ease-out;
}

.logo-wrapper {
    position: relative;
    padding: 0.5rem;
}

.logo-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.logo {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8));
    animation: float 8s ease-in-out infinite;
}

.content {
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    color: var(--text-secondary);
}

.pulse {
    width: 6px;
    height: 6px;
    background-color: #666;
    border-radius: 50%;
    position: relative;
}

.pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

/* Base Responsive */
@media (max-width: 600px) {
    .logo {
        max-width: 200px;
    }

    .title {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }
}