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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    text-align: center;
    padding: 40px;
}

.error-code {
    font-size: 150px;
    font-weight: 700;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #eee;
}

.error-message {
    font-size: 16px;
    color: #aaa;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.home-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.server-info {
    margin-top: 50px;
    font-size: 12px;
    color: #555;
}
