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

body {
    background-color: #0a0a0f;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(255, 153, 0, 0.08), transparent 40%),
        linear-gradient(180deg, #0a0a0f 0%, #11111a 100%);
    color: #d8d4c8;
    font-family: Arial, Tahoma, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.main-banner {
    width: 600px;
    margin-top: 20px;
}

.main-banner img {
    display: block;
    width: 600px;
    height: 300px;
    object-fit: cover;
}

.main-text {
    width: 800px;
    margin: 30px 0;
    text-align: center;
    color: #a8a298;
    font-size: 15px;
    line-height: 1.7;
}

.main-text p {
    margin: 4px 0;
}

.server-select {
    display: flex;
    gap: 100px;
    margin: 30px 0 50px 0;
}

.server-card {
    display: block;
    width: 500px;
    height: 500px;
    border: 1px solid #3a3530;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.server-card img {
    display: block;
    width: 500px;
    height: 500px;
    object-fit: contain;
}

.server-card:hover {
    border-color: #FF9900;
    box-shadow: 0 0 40px 10px rgba(255, 153, 0, 0.6);
    transform: translateY(-3px);
}

.footer {
    width: 100%;
    padding: 20px 0;
    margin-top: auto;
    text-align: center;
    color: #6e6a60;
    font-size: 13px;
    border-top: 1px solid #2a2620;
}

/*---404---*/

.error-container {
    text-align: center;
    margin-top: 80px;
    color: #d8d4c8;
    font-family: Arial, Tahoma, Helvetica, sans-serif;
}

.error-logo {
    width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.error-code {
    font-size: 120px;
    font-weight: bold;
    color: #FF9900;
    text-shadow: 0 0 25px rgba(255, 153, 0, 0.5);
    margin-bottom: 10px;
}

.error-text {
    font-size: 20px;
    color: #a8a298;
    margin-bottom: 40px;
}

.error-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 15px;
    color: #0a0a0f;
    background-color: #FF9900;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.error-button:hover {
    background-color: #e68a00;
    box-shadow: 0 0 20px rgba(255, 153, 0, 0.5);
}