body {
    margin: 0;
    padding: 20px 0 20px 0; /* Отступ от верха 40px; bottom для мобильной прокрутки */
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #000033 100%);
    color: white;
    display: flex;
    justify-content: center; /* Горизонтальное центрирование */
    align-items: flex-start; /* Прижатие к верху вместо center */
    min-height: 100vh;
    overflow: auto;
    position: relative;
}

/* Neon cyberpunk background effects */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
    animation: neonPulse 4s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 400px;
    padding: 30px; /* Увеличен padding для лучшей обособленности */
    /* Визуальное отделение от фона */
    background: rgba(0, 0, 0, 0.6); /* Полупрозрачный темный фон */
    backdrop-filter: blur(10px); /* Размытие для современного эффекта */
    border: 1px solid rgba(255, 0, 255, 0.3); /* Неоновая граница */
    border-radius: 20px; /* Скругленные углы */
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.3), /* Внешняя неоновая тень */
        inset 0 0 20px rgba(0, 0, 0, 0.5); /* Внутренняя тень для глубины */
}

.album-art {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
    /* Убрана анимация rotate для статичности */
}

.album-art img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.album-title {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    margin-bottom: 10px;
    letter-spacing: 5px;
    color: #ff00ff;
}

.subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Выравнивание слева: текст + img */
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.5);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
}

.link-button:hover {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    transform: translateY(-2px);
}

/* Текст "Слушать в" слева от логотипа */
.listen-text {
    font-weight: bold;
    margin-right: 10px; /* Отступ между текстом и img */
    color: white;
    font-size: 1em;
}

/* Стили для логотипов платформ (теперь справа от текста) */
.platform-logo {
    max-width: 120px; /* Адаптивный размер; настройте под ваши изображения */
    height: auto;
    /* Прозрачный фон */
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.link-button:hover .platform-logo {
    opacity: 1; /* Полная яркость на hover */
}

.link-button:hover .listen-text {
    color: #ff00ff; /* Неоновый акцент на hover для текста */
}

/* Powered by блок: стили для контейнера */
.powered-by {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Текст "POWERED BY" выше лого */
.powered-text {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Стили для лого */
.powered-logo {
	margin-top: -20px;
    width: 150px; /* Настройте размер по необходимости */
    height: auto;
    opacity: 0.8; /* Прозрачность для лого */
}

/* Кликабельная ссылка для всего блока powered-by */
.powered-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.powered-link:hover .powered-text,
.powered-link:hover .powered-logo {
    opacity: 1; /* Увеличиваем прозрачность на hover для интерактивности */
}

.more-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
}