* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile {
    text-align: center;
    color: white;
}

.avatar {
    width: 120px; /* Увеличил размер аватара */
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.status {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    margin: 0 10px;
}

.icon {
    width: 32px; /* Увеличил иконки соцсетей */
    height: 32px;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 20px 30px; /* Увеличил размер кнопок */
    border-radius: 30px;
    font-size: 20px; /* Увеличил шрифт кнопок */
    width: 280px; /* Увеличил ширину кнопок */
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover {
    background-color: white;
    color: black;
}

.button-icon {
    width: 32px; /* Увеличил размер иконок на кнопках */
    height: 32px;
    margin-right: 10px;
    /* Убрал filter: invert(100%) */
}

/* Добавьте в styles.css */
.container {
    position: relative;
    overflow: hidden; /* Скрываем всё, что выходит за пределы контейнера */
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: pulseBackground 12s infinite ease-in-out; /* Анимация для фона */
}

/* Затемняющий слой */
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Затемнение (0.5 — это 50% прозрачности) */
    z-index: -1;
}

/* Анимация пульсации фона */
@keyframes pulseBackground {
    0% {
        transform: scale(1); /* Исходный размер */
    }
    50% {
        transform: scale(1.05); /* Увеличение на 5% */
    }
    100% {
        transform: scale(1); /* Возврат к исходному размеру */
    }
}



/* Стили для кнопки ONLYFANS */
.btn {
    position: relative; /* Чтобы надпись "7 DAY FREE" позиционировалась относительно кнопки */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 20px 30px;
    border-radius: 30px;
    font-size: 20px;
    width: 280px;
    transition: background-color 0.3s, color 0.3s;
}

/* Стили для надписи "7 DAY FREE" */
.free-label {
    position: absolute;
    top: -5px; /* Поднимаем надпись выше кнопки */
    right: -30px; /* Сдвигаем вправо */
    transform: rotate(15deg); /* Поворот на 45 градусов */
    background-color: #ff007f; /* Розовый цвет */
    color: white;
    font-size: 14px; /* Увеличиваем размер шрифта */
    font-weight: bold;
    padding: 5px 10px; /* Увеличиваем отступы */
    border-radius: 3px;
    animation: pulsePink 2s infinite; /* Анимация пульсации */
    z-index: 1; /* Надпись будет поверх кнопки */
    pointer-events: none; /* Отключаем клики на надписи */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Тень для выделения */
}

/* Анимация пульсации розового цвета */
@keyframes pulsePink {
    0% {
        background-color: #ff007f; /* Начальный цвет */
        transform: rotate(15deg) scale(1); /* Начальный масштаб */
    }
    50% {
        background-color: #ff66b3; /* Более светлый розовый */
        transform: rotate(15deg) scale(1.1); /* Увеличение масштаба */
    }
    100% {
        background-color: #ff007f; /* Возврат к начальному цвету */
        transform: rotate(15deg) scale(1); /* Возврат к начальному масштабу */
    }
}

/* Стили для кружочка "-55%" */
.discount-circle {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background-color: #ff007f;
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: pulsePink 2s infinite;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    
    /* Убираем любые повороты */
    transform: none !important;
    rotate: 0deg !important;
    writing-mode: horizontal-tb !important; /* На всякий случай сбрасываем ориентацию текста */
}

/* Если родительская кнопка вдруг повернута */
.btn,
a {
    transform: none !important;
}