* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    position: relative;
}

/* Фоновое изображение */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Спонсоры */
.sponsors {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.sponsor-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
}

/* НАВИГАЦИЯ */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #888888;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-btn:hover {
    color: #FFFFFF;
}

.nav-btn.active {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

/* Псевдоним */
.artist-name {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #CCCCCC 50%, #888888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/* Вкладки */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* НОВОСТИ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.news-card {
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 40, 0.6);
    border-color: rgba(255,255,255,0.2);
}

.news-date {
    font-size: 12px;
    color: #888888;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.news-card p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.5;
}

/* КНОПКИ В НОВОСТЯХ */
.news-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.news-btn {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.news-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Разные стили для кнопок */
.watch-btn:hover {
    background: rgba(0, 255, 200, 0.2);
    border-color: #00FFCC;
    color: #00FFCC;
}

.listen-btn:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: #FF6464;
    color: #FF6464;
}

.details-btn:hover {
    background: rgba(100, 100, 255, 0.2);
    border-color: #6464FF;
    color: #6464FF;
}

.read-btn:hover {
    background: rgba(255, 200, 100, 0.2);
    border-color: #FFC864;
    color: #FFC864;
}

.watch-video-btn:hover {
    background: rgba(255, 50, 50, 0.2);
    border-color: #FF3232;
    color: #FF3232;
}

/* КАРТОЧКА КОНЦЕРТА */
.ticket-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.ticket-card:hover {
    background: rgba(30, 30, 40, 0.6);
    border-color: rgba(255,255,255,0.2);
}

.ticket-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 32px;
}

.ticket-date {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.ticket-city {
    font-size: 22px;
    font-weight: 600;
    color: #CCCCCC;
}

.ticket-venue {
    font-size: 20px;
    font-weight: 500;
    color: #AAAAAA;
}

.ticket-btn {
    background: #FFFFFF;
    color: #000000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 32px;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.ticket-card:hover .ticket-btn {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.ticket-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticket-card.open .ticket-body {
    max-height: 600px;
    opacity: 1;
}

.description-content {
    padding: 0 32px 32px 32px;
}

.description-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 24px;
}

.highlight {
    color: #FFFFFF;
    font-weight: 600;
}

.lineup {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lineup span {
    background: rgba(255,255,255,0.05);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #DDDDDD;
}

/* РЕЛИЗЫ - ПО ЦЕНТРУ */
.releases-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin: 0 auto;
}

.release-card {
    background: rgba(20, 20, 30, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.release-card:nth-child(1) { animation-delay: 0.1s; }
.release-card:nth-child(2) { animation-delay: 0.2s; }
.release-card:nth-child(3) { animation-delay: 0.3s; }
.release-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.release-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 40, 0.7);
    border-color: rgba(255,255,255,0.3);
}

/* Обложка релиза */
.release-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2a2a3a, #1a1a2a);
    border: 1px solid rgba(255,255,255,0.1);
}

.release-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.release-card:hover .release-img {
    transform: scale(1.03);
}

/* Информация о релизе */
.release-info {
    text-align: center;
}

.release-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.release-artist {
    font-size: 14px;
    color: #888888;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.release-description {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 0 8px;
}

/* Кнопка Слушать */
.release-btn {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.release-btn:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    transform: scale(1.02);
}

/* Контакты */
.contacts {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 48px;
    margin-top: 60px;
}

.contacts-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #888888;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #CCCCCC;
}

/* Социальные иконки */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.social-icon {
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.social-icon:hover {
    color: #FFFFFF;
}

/* Нижние ссылки */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #FFFFFF;
}

/* Футер */
.footer {
    text-align: center;
    font-size: 12px;
    color: #444444;
    padding-top: 24px;
}

/* Кнопка назад для страниц новостей */
.back-link {
    display: inline-block;
    color: #888888;
    text-decoration: none;
    margin-bottom: 40px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #FFFFFF;
}

/* Стили для детальной страницы новости */
.news-detail-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.news-detail-date {
    font-size: 14px;
    color: #888888;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.news-detail-content {
    font-size: 18px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 32px;
}

.news-detail-buttons {
    margin-top: 32px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .container {
        padding: 24px 16px 40px;
    }
    
    .sponsors {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .sponsor-logo {
        height: 30px;
    }
    
    .nav-menu {
        gap: 32px;
        margin-bottom: 30px;
    }
    
    .nav-btn {
        font-size: 12px;
    }
    
    .artist-name {
        margin-bottom: 40px;
        font-size: clamp(40px, 10vw, 80px);
    }
    
    .ticket-header {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
    }
    
    .ticket-date, .ticket-city, .ticket-venue {
        font-size: 18px;
    }
    
    .ticket-card {
        border-radius: 32px;
    }
    
    .ticket-card.open .ticket-body {
        max-height: 700px;
    }
    
    .description-content {
        padding: 0 24px 24px 24px;
    }
    
    .description-content h3 {
        font-size: 20px;
    }
    
    .description-content p {
        font-size: 14px;
    }
    
    .lineup span {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    /* Релизы на планшете */
    .release-card {
        max-width: 350px;
        padding: 20px;
    }
    
    .release-title {
        font-size: 24px;
    }
    
    .release-description {
        font-size: 13px;
    }
    
    .contacts-row {
        gap: 24px;
    }
    
    .contact-value {
        font-size: 14px;
    }
    
    .social-icons {
        gap: 24px;
    }
    
    .footer-links {
        gap: 24px;
    }
    
    .news-detail-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-btn {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .ticket-date, .ticket-city, .ticket-venue {
        font-size: 16px;
    }
    
    .ticket-card.open .ticket-body {
        max-height: 800px;
    }
    
    /* Релизы на телефоне */
    .release-card {
        max-width: 300px;
        padding: 20px;
    }
    
    .release-title {
        font-size: 22px;
    }
    
    .contacts-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        gap: 16px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .news-buttons {
        flex-direction: column;
    }
    
    .news-btn {
        text-align: center;
    }
    
    .news-detail-content {
        font-size: 14px;
    }
}
/* Стили для детальной страницы новости */
.news-detail-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF, #CCCCCC);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.news-detail-date {
    font-size: 14px;
    color: #888888;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.news-detail-content {
    font-size: 18px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 32px;
}

.news-detail-content p {
    margin-bottom: 16px;
}

.news-detail-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.news-detail-content li {
    margin-bottom: 8px;
    color: #CCCCCC;
}

.news-detail-content a {
    color: #00FFCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-detail-content a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Изображения в новостях */
.news-image {
    margin: 24px 0;
    border-radius: 24px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* Видео и музыка */
.video-embed,
.music-embed {
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
}

.video-embed iframe,
.music-embed iframe {
    border-radius: 16px;
}

.music-embed h4,
.video-embed h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #CCCCCC;
}

/* Кнопка покупки билетов */
.buy-btn:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: #FF6464;
    color: #FF6464;
}

/* Контейнер для кнопок в детальной новости */
.news-detail-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 480px) {
    .news-detail-content {
        font-size: 16px;
    }
    
    .video-embed iframe {
        height: 200px;
    }
    
    .news-detail-buttons {
        flex-direction: column;
    }
}
/* Подпись под фото */
.image-caption {
    text-align: center;
    font-size: 14px;
    color: #888888;
    margin-top: 8px;
    margin-bottom: 24px;
    font-style: italic;
}