/* ============================================
   БАЗОВЫЕ НАСТРОЙКИ
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', 'Roboto', sans-serif;
    background-color: #0d0d0d; /* Глубокий черный/угольный фон */
    color: #f0f0f0;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Убираем скролл страницы, только модалки скроллятся */
}

/* ============================================
   КОНТЕЙНЕР ГЛАВНОЙ СТРАНИЦЫ
   ============================================ */
.iskr-main-container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Логотип */
.iskr-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 3.5rem;
    letter-spacing: 6px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Меню */
.iskr-menu-list {
    list-style: none;
    display: flex;
    gap: 40px;
}

.iskr-menu-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.iskr-menu-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   МОДАЛЬНОЕ ОКНО (СТЕКЛО / GLASSMORPHISM)
   ============================================ */
.iskr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.iskr-modal.active {
    display: flex;
}

/* Подложка (затемнение + блюр) */
.iskr-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Само стеклянное окно */
.iskr-modal__window {
    position: relative;
    z-index: 1;
   
    max-width: 700px;
    max-height: 85dvh;
    padding: 60px 50px;
    overflow-y: auto;
    
    /* Эффект жидкого стекла (Apple-style) */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    
    /* Анимация появления */
    animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Кнопка закрытия */
.iskr-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.iskr-modal__close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

/* Контент внутри окна */
.iskr-modal__content {
    color: #f0f0f0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iskr-about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 10px;
}

.iskr-modal__content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.iskr-about-quote {
    font-style: italic;
    color: #cba765; /* Золотистый акцент */
    font-size: 1.1rem;
    border-left: 2px solid #cba765;
    padding-left: 16px;
    margin: 10px 0;
}

.iskr-about-signature {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
    margin-top: 10px;
}

.iskr-about-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-align: center;
}

/* ============================================
   ФОТОГРАФИЯ (БИБЛИОТЕКА И ГАЛЕРЕЯ)
   ============================================ */

/* --- Заголовок фотографии --- */
.iskr-photo-header {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 4px;
}
.iskr-photo-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

/* --- Библиотека (сетка папок) --- */
.iskr-photo-library {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* --- Карточка папки (серии) --- */
.iskr-photo-folder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.iskr-photo-folder:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.iskr-photo-folder__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.iskr-photo-folder:hover .iskr-photo-folder__cover {
    transform: scale(1.05);
}

.iskr-photo-folder__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.iskr-photo-folder__title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.iskr-photo-folder__arrow {
    font-size: 1.5rem;
    color: #cba765; /* Золотистый */
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.iskr-photo-folder:hover .iskr-photo-folder__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- Специальный стиль для галереи (окно побольше) --- */
.iskr-modal__window--gallery {
    max-width: 1000px;
    max-height: 85dvh;
}

/* --- Сетка фотографий внутри галереи --- */
.iskr-gallery-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.iskr-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.iskr-gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.iskr-gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ============================================
   ЛАЙТБОКС (ПОЛНОЭКРАННЫЙ ПРОСМОТР ФОТО)
   ============================================ */
.iskr-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 2000; /* Поверх всех модалок */
    display: none;
    justify-content: center;
    align-items: center;
}
.iskr-lightbox.active {
    display: flex;
}

/* Подложка (затемнение) */
.iskr-lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Окно с фото */
.iskr-lightbox__window {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
    /* 3D-эффект при открытии */
    perspective: 1200px;
}

.iskr-lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    
    /* Плавное появление с 3D-поворотом */
    animation: lightboxZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: center center;
}

@keyframes lightboxZoom {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateY(10deg) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg) rotateX(0deg);
    }
}




/* ============================================
   КОНТАКТЫ
   ============================================ */
.iskr-contact-content {
    text-align: center;
    align-items: center;
    gap: 30px;
}

.iskr-contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.iskr-contact-email {
    margin: 10px 0;
}

.iskr-contact-email a {
    font-size: 1.3rem;
    color: #cba765; /* Золотой акцент */
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.iskr-contact-email a:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.iskr-contact-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.iskr-contact-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.iskr-contact-links a:hover {
    color: #ffffff;
}

.iskr-contact-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* ============================================
   MUSIC (БИБЛИОТЕКА АРТИСТОВ)
   ============================================ */
.iskr-modal__window--music {
    max-width: 1000px;
    max-height: 90dvh;
}

.iskr-music-header {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

/* Сетка карточек */
.iskr-artist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Общая карточка артиста */
.iskr-artist-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.iskr-artist-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* Фон карточки (градиент или картинка) */
.iskr-artist-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: transform 0.6s ease;
}

.iskr-artist-card:hover .iskr-artist-card__bg {
    transform: scale(1.05);
}

/* Оверлей (текст поверх фона) */
.iskr-artist-card__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
}

/* Тексты в карточке */
.iskr-artist-card__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.iskr-artist-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: -1px;
    margin: 0 0 6px 0;
    line-height: 1;
}

.iskr-artist-card__genre {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.iskr-artist-card__enter {
    font-size: 2rem;
    color: #cba765;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.iskr-artist-card:hover .iskr-artist-card__enter {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ISKARUA (ОСНОВНОЙ АРТИСТ)
   ============================================ */
.iskr-artist-card--iskarua .iskr-artist-card__bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* ============================================
   SOON (ЗАГЛУШКА)
   ============================================ */
.iskr-artist-card--soon {
    cursor: default;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.iskr-artist-card--soon .iskr-artist-card__bg {
    background: rgba(255, 255, 255, 0.02);
}

.iskr-artist-card--soon .iskr-artist-card__overlay {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.iskr-artist-card--soon .iskr-artist-card__name {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 4px;
}

.iskr-artist-card--soon .iskr-artist-card__enter {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: none;
    margin-top: 10px;
}


/* ============================================
   СТРАНИЦА АРТИСТА (ISKARUA)
   ============================================ */
.page-artist {
    background: #0d0d0d;
    overflow-y: auto; /* Разрешаем скролл на этой странице */
    height: auto;
    display: block;
    padding: 0 40px 80px 40px;
}

/* --- Хедер страницы --- */
.artist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-header__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.artist-header__home {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
}

.artist-header__home:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Обложка артиста --- */
.artist-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.artist-hero {
    text-align: center;
    padding: 40px 0;
}

.artist-hero__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.artist-hero__name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 5rem;
    letter-spacing: -2px;
    color: #ffffff;
    margin: 10px 0;
    line-height: 1;
}

.artist-hero__genre {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* --- Контейнер плеера (Стекло + Треклист) --- */
.artist-player-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

/* Стеклянный блок плеера */
.iskr-glass-player {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iskr-track-info {
    display: flex;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.iskr-track-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.iskr-player-controls {
    display: flex;
    gap: 20px;
}

.iskr-play-btn, .iskr-pause-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iskr-play-btn:hover, .iskr-pause-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Прогресс-бар */
.iskr-progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.iskr-progress-bar {
    height: 100%;
    width: 0%;
    background: #cba765;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.iskr-time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Треклист --- */
.iskr-tracklist-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
}

.iskr-tracklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.iskr-tracklist li {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.iskr-tracklist li:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.iskr-tracklist li.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-left: 2px solid #cba765;
    padding-left: 14px;
}

.iskr-tracklist .tl-title {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.iskr-tracklist .tl-duration {
    color: rgba(255, 255, 255, 0.3);
}