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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: linear-gradient(135deg, #0a1928 0%, #0f2337 50%, #152d45 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5c8c6;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
}

.content {
    background: linear-gradient(135deg, rgba(10, 25, 40, 0.8) 0%, rgba(15, 35, 55, 0.6) 100%);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(91, 138, 154, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.domain-name {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: #e8f4f8;
    text-shadow: 0 0 15px rgba(126, 200, 227, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #5b8a9a, #7ec8e3, #5b8a9a);
    margin: 1rem auto 1.5rem;
    border-radius: 1px;
}

.tagline {
    font-size: 1rem;
    color: #8a9a9a;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* BEEF ARENA Feature */
.featured-game {
    margin: 1.5rem 0;
}

.game-link {
    display: block;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-link:hover {
    transform: translateY(-3px);
}

.game-link:hover .capsule-art {
    box-shadow: 0 8px 30px rgba(126, 200, 227, 0.4);
}

.capsule-art {
    width: 100%;
    max-width: 460px;
    border-radius: 8px;
    border: 1px solid rgba(91, 138, 154, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.2s ease;
}

.game-title {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #7ec8e3;
    font-weight: 600;
}

.game-subtitle {
    font-size: 0.85rem;
    color: #5b8a9a;
    margin-top: 0.25rem;
}

.steam-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border: 1px solid rgba(126, 200, 227, 0.3);
    border-radius: 4px;
    color: #7ec8e3;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.steam-button:hover {
    background: linear-gradient(135deg, #2a475e 0%, #3d6580 100%);
    border-color: rgba(126, 200, 227, 0.5);
    color: #a8dff0;
    text-shadow: 0 0 8px rgba(126, 200, 227, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.steam-icon {
    width: 20px;
    height: 20px;
}

.status {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(91, 138, 154, 0.15);
    border: 1px solid rgba(91, 138, 154, 0.3);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #5b8a9a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
}

/* 404 Page */
.error-code {
    font-size: 4rem;
    font-weight: 700;
    color: #7ec8e3;
    text-shadow: 0 0 20px rgba(126, 200, 227, 0.5);
    margin-bottom: 0.5rem;
}

.message {
    color: #8a9a9a;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.home-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
    border: 1px solid rgba(126, 200, 227, 0.3);
    color: #7ec8e3;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.home-link:hover {
    background: linear-gradient(135deg, #2a475e 0%, #3d6580 100%);
    color: #a8dff0;
    text-shadow: 0 0 8px rgba(126, 200, 227, 0.4);
}

footer {
    margin-top: 2rem;
    color: #5b8a9a;
    font-size: 0.8rem;
}

footer a {
    color: #7ec8e3;
    text-decoration: none;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #a8dff0;
    text-shadow: 0 0 8px rgba(126, 200, 227, 0.4);
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .content {
        padding: 1.5rem 1.25rem;
    }

    .capsule-art {
        max-width: 100%;
    }

    .error-code {
        font-size: 3rem;
    }
}
