:root {
    --primary-color: #CD5A5A;
    --secondary-color: #FF5555;
    --accent-color: #FF5050;
    --dark-color: #2c2c54;
    --light-color: #f7f7f7;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --darkred: #AA0000;
    --red: #FF5555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/libs/img/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    
    background-color: #1a1a2e;
    background-attachment: scroll;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    backdrop-filter: blur(5px);
    background-color: rgba(26, 26, 46, 0.3);
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(170, 0, 0);
}*/

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--darkred), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(170, 0, 0);
    letter-spacing: 1px;
}

header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--light-color);
    margin-bottom: 20px;
}

header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 10px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2 0%, #3a45b5 100%);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.server-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(44, 44, 84, 0.7);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.info-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.main-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.main-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(44, 44, 84, 0.7);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    text-align: center;
    min-height: 200px;
}

.main-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(106, 90, 205, 0.3);
    border-color: var(--secondary-color);
}

.main-btn i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.main-btn h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.main-btn p {
    color: #ccc;
    font-size: 0.9rem;
}

.back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background: #3a3a4a;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #4a4a5a;
    transform: translateY(-2px);
}

.server-ip {
    background: rgba(44, 44, 84, 0.7);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.server-ip h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.ip-box {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ip-box:hover {
    background: rgba(255, 127, 80, 0.2);
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

.notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
    backdrop-filter: blur(3px);
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid var(--secondary-color);
}

.notification i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    header h2 {
        font-size: 1.4rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .main-buttons {
        grid-template-columns: 1fr;
    }
}