*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.75;
    font-size: 1.25em;
    font-family:
        "PT Sans Narrow", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background-color: #121212;
    color: #fff;
    background-image: url("/assets/img/header-disco.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}

.container {
    max-width: 90ch;
    padding: 1em 1em;
    margin: auto;
}

.site-hero-css {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.site-hero-css .hero-inner .header {
    font-size: 2rem;
}

/* Ссылки — светящиеся/яркие */
a {
    color: #00e5ff; /* неоново-голубой */
    text-decoration: none;
}
a:hover {
    color: #ff3b3b; /* при наведении — розово-красный */
    text-decoration: underline;
}

/* Заголовки — немного ярче и крупнее */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-weight: 600;
}

figure {
    margin: 0;
    padding: 0;
}

/* Чтобы текст песен тоже выглядел чисто */
.lyrics {
    white-space: pre-wrap; /* сохраняем переводы строк */
    color: #ffffff;
    line-height: 0.8;
    text-align: center;
}

.lyrics h2 {
    margin-top: 0;
}

.lyrics p {
    margin: 0;
}

/* Немного осветлим абзацы, чтобы текст был читаемее */
p {
    color: #eaeaea;
}

.embed {
    display: flex;
    justify-content: center; /* выравнивает по горизонтали */
    align-items: center; /* выравнивает по вертикали (если есть высота) */
    margin: 2rem auto; /* отступы сверху и снизу + центрирование */
    max-width: 800px; /* чтобы не растягивалось на весь экран */
    width: 100%;
}

/* Адаптивное видео (с правильными пропорциями 16:9) */
.embed iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* сохраняет соотношение сторон */
    border: none;
    border-radius: 12px; /* чуть округлые углы, можно убрать */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); /* лёгкая подсветка */
}

.platforms {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1rem auto;
    width: 100%;
}

.song {
    background-color: #121212; /* тёмно-серый фон (не абсолютный чёрный) */
    border: 1px solid #2a2a2a; /* тонкая рамка чуть светлее фона */
    border-radius: 20px; /* полукруглые углы */
    padding: 2rem; /* внутренние отступы */
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.05); /* лёгкое свечение */
    margin: 1rem 0;
}

/* Если хочешь чуть больше «глубины» */
.song:hover {
    border-color: #444;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.song-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 900px) {
    .song-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.song-card {
    list-style: none;
}

.song-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* квадратная обложка */
.thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* квадрат */
    border-radius: 18px; /* скруглённые углы */
    overflow: hidden;
    background: #0f0f0f; /* фон на случай отсутствия картинки */
    box-shadow:
        0 0 0 1px #2a2a2a inset,
        0 10px 30px rgba(0, 0, 0, 0.35);
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* не искажать */
    display: block;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

/* подпись */
.song-caption {
    margin-top: 0.65rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
    opacity: 0.95;
}

/* ховер-эффект */
.song-link:hover .thumb img {
    transform: scale(1.03);
    filter: brightness(1.07);
}
.song-link:hover .thumb {
    box-shadow:
        0 0 0 1px #444 inset,
        0 16px 40px rgba(0, 0, 0, 0.45);
}

.coming-soon-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 40%, #222 0%, #000 100%);
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.banner-inner {
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Лёгкое свечение и «анимация ожидания» */
.coming-soon-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 20px;
    overflow: hidden;
    background: #0a0a0a; /* базовый тёмно-серый фон */
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.05),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    isolation: isolate; /* корректный блендинг слоёв */
}

/* цветные «огни» */
.coming-soon-banner::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(40% 40% at 18% 70%, rgba(255, 59, 59, 0.7) 0%, rgba(255, 59, 59, 0) 60%),
        radial-gradient(40% 40% at 50% 28%, rgba(124, 60, 255, 0.75) 0%, rgba(124, 60, 255, 0) 58%),
        radial-gradient(40% 40% at 82% 64%, rgba(0, 229, 255, 0.75) 0%, rgba(0, 229, 255, 0) 60%),
        radial-gradient(38% 38% at 70% 18%, rgba(0, 255, 123, 0.75) 0%, rgba(0, 255, 123, 0) 58%),
        radial-gradient(38% 38% at 35% 86%, rgba(255, 212, 0, 0.7) 0%, rgba(255, 212, 0, 0) 60%);
    filter: blur(60px);
    mix-blend-mode: screen;
    animation: disco-drift 16s ease-in-out infinite alternate;
    z-index: 0;
}

/* диагональный мягкий «луч-перелив» */
.coming-soon-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        115deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 5.2s linear infinite;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* текст сверху всех слоёв */
.banner-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.banner-inner p {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* анимации */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
@keyframes disco-drift {
    0% {
        transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(-1deg);
    }
    100% {
        transform: translate3d(2%, 1%, 0) scale(1.05) rotate(1deg);
    }
}

/* уважение к пользователю: отключим анимации при reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .coming-soon-banner::before,
    .coming-soon-banner::after {
        animation: none;
    }
}
