body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    background-image: url('img/img.jpg'); /* Замените на путь к вашему фоновому изображению */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden; /* Предотвращаем горизонтальную прокрутку */
}

/* Прозрачная рамка */
.transparent-frame {
    background-color: rgba(3, 3, 3, 0.329);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 500px; /* Ограничиваем максимальную ширину контейнера */
    box-sizing: border-box; /* Учитываем padding в ширине */
}

/* Контейнер */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #ffcc00;
    font-weight: 600;
}

/* Стили для профиля */
.profile {
    margin-bottom: 20px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #e100ff;
}

.nickname {
    font-size: 2em;
    margin: 10px 0;
    color: #ffffff;
    font-weight: 600;
}

.description {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Стили для кнопок */
.button-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между кнопками */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.1em;
    color: #fff;
    background-color: #00f;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 300px; /* Ограничиваем максимальную ширину кнопок */
    box-sizing: border-box;
    text-align: center;
}

.button:hover {
    background-color: #ff00ff;
    transform: translateY(-10px);
}

header {
    position: absolute;
    top: 10px;
    right: 10px;
}

.contactbutton {
    padding: 8px 8px;
    font-size: 0.9em;
    color: #fff;
    background-color: #ff00ff;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contactbutton:hover {
    background-color: #00f;
    transform: translateY(-5px);
}

.contactadmin-button:hover {
    background-color: #00f;
    transform: translateY(-3px);
}

/* Адаптация под мобильные устройства */
@media (max-width: 600px) {
    .nickname {
        font-size: 1.5em;
    }

    .description {
        font-size: 1em;
    }

    .button {
        padding: 8px 16px;
        font-size: 1em;
        max-width: 100%; /* Кнопки занимают всю ширину */
    }

    .avatar {
        width: 120px;
        height: 120px;
    }

    .transparent-frame {
        padding: 15px;
    }

    .button-container {
        gap: 10px;
    }
}

/* Анимация появления элементов */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
