* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Popins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('/static/img/layer1.jpg');
    background-size: cover;
    background-position: center;
}

.wrapper {
    width: 60vw;
    min-width: 300px;
    max-width: 800px;
    height: auto;
    min-height: 60vh;
    background: rgba(8, 2, 22, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(118, 205, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(118, 205, 255, 0.3);
    color: #fff;
    padding: 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wrapper h2 {
    text-transform: uppercase;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.wrapper a {
    text-align: center;
    font-size: 1.5em;
    margin: 15px 0;
    color: rgb(255, 255, 255);
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.contact {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Icon colors */
.wrapper a .fab.fa-discord {
    color: #5865F2;
}

.wrapper a .fab.fa-telegram {
    color: #26A5E4;
}

.wrapper a .far.fa-envelope {
    color: #D44638;
}

.wrapper a .fab.fa-github {
    color: #f0f6fc;
}

/* Hover effects */
.wrapper a:hover {
    color: #76cdff;
    transform: scale(1.05);
}

.wrapper a:hover i {
    transform: scale(1.1);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .wrapper {
        width: 90vw;
        padding: 20px;
    }
    
    .wrapper h2 {
        font-size: 1.8em;
    }
    
    .wrapper a {
        font-size: 1.2em;
    }
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
