/* 🌍 Глобальные стили */
body {
    background-image: url('/api/icons/logoai.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #00AEEF;
    font-family: 'Poppins', sans-serif;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

/* Затемнение фона для улучшения читаемости текста */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}


/* 📻 Контейнер с плеером */
.container {
    position: relative;
    max-width: 360px;
    margin: auto;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* 🏷 Логотипы */
.logo-title {
    width: 130px; /* Увеличили ширину */
    display: block;
    margin: -5px auto 0 auto; /* Чуть поднимаем вверх */
    transform: scale(1.15); /* Дополнительно увеличиваем */
    object-fit: contain; /* Обрезка пустот, если есть */
}

.logo {
    width: 120px;
    height: 120px;
    margin: 10px auto;
    display: block;
    border-radius: 15px;
}

/* ▶ Контейнер кнопки Play/Pause */
.play-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    z-index: 11;
}

/* 🔘 Кнопка Play/Pause */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 12;
}

/* 🔊 Иконки Play и Pause */
.btn svg {
    width: 40px;
    height: 40px;
    fill: #00AEEF;
}

#pause-icon {
    display: none;
}

/* Ссылка "VIDEO" */
.video-container {
    text-align: center;
    margin-top: 10px;
}

/* Прячем ссылку на мобильных устройствах */
@media (max-width: 768px) {
    .video-container {
        display: none;
    }
}

.video-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.video-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* 🌊 Анимация волн при загрузке */
.wave-animation {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(0, 174, 239, 0.7);
    animation: wave 1.5s infinite ease-in-out;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Вторая волна */
.wave-animation::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(0, 174, 239, 0.5);
    animation: wave 2s infinite ease-in-out;
}

/* 🌊 Анимация волн */
@keyframes wave {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* 🔍 SEO-контейнер */
.seo-container {
    max-width: 360px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85); /* Затемняем фон */
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    backdrop-filter: blur(5px);
}

/* Заголовки SEO */
.seo-container h3 {
    font-size: 18px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Список преимуществ */
.seo-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

/* Пункты списка */
.seo-container li {
    font-size: 14px;
    padding: 5px 0;
    text-align: left;
}

/* 🔥 Желтые ссылки в SEO-контейнере */
.seo-container a {
    color: #FFD700; /* Желтый цвет */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.seo-container a:hover {
    text-decoration: underline;
    color: #FFEA00; /* Чуть ярче при наведении */
}

/* 📞 WhatsApp Кнопка */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
    z-index: 999;
}

/* Увеличение при наведении */
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Логотип WhatsApp */
.whatsapp-button img {
    width: 40px;
    height: 40px;
}

.royalty-container {
    text-align: center;
    margin-top: 10px;
}

.royalty-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.royalty-link .icon {
    font-size: 18px;
}

.royalty-link:hover,
.royalty-link:visited,
.royalty-link:active {
    color: #FFEA00;
    text-decoration: underline;
}

.small-hint {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
    transition: color 0.3s ease;
}

.royalty-link:hover + .small-hint {
    color: #FFEA00;
}

/* PRO Badge */
.pro-badge {
    background: #ffcc00;
    color: #222;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

}