* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: #0a0a0a; color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.header { position: sticky; top: 0; z-index: 999; background: rgba(8, 8, 8, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.brand img { width: 170px; }
.nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.nav a { color: #fff; text-decoration: none; position: relative; padding-bottom: 6px; transition: 0.25s ease; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: #fff; transition: width 0.25s ease; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.hero { padding: 60px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: start; }
.hero-logo-wrap { border-radius: 24px; overflow: hidden; }
.hero-logo { width: 100%; max-width: 720px; margin: 0 auto; }
.hero-copy h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; margin: 24px 0 12px; }
.hero-copy p { color: #d7d7d7; font-size: 1.05rem; }
.section { padding: 40px 0 70px; }
.section-title { text-align: center; margin-bottom: 28px; font-size: 2rem; letter-spacing: 1px; }
.home-carousel { position: relative; border-radius: 24px; overflow: hidden; background: #111; box-shadow: 0 18px 50px rgba(0,0,0,0.35); }
.carousel-slides { position: relative; min-height: 520px; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.carousel-slide img { width: 100%; height: 520px; object-fit: cover; }
.carousel-slide.is-active { opacity: 1; position: relative; }
.carousel-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.45); cursor: pointer; }
.dot.is-active { background: #fff; }
.fancy-player { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 26px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.player-header h2 { margin: 6px 0 8px; font-size: 2rem; }
.player-kicker { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #d0d0d0; }
.player-body audio { width: 100%; margin: 18px 0 20px; }
.playlist { display: grid; gap: 12px; max-height: 380px; overflow: auto; padding-right: 4px; }
.track-item { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); color: #fff; border-radius: 16px; padding: 14px 16px; display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer; transition: 0.25s ease; }
.track-item:hover, .track-item.is-active { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.28); transform: translateY(-1px); }
.track-no { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); font-weight: bold; flex: 0 0 auto; }
.track-meta strong, .track-meta small { display: block; }
.track-meta small { margin-top: 4px; color: #d8d8d8; }
.empty-playlist, .content-card { padding: 20px; border-radius: 16px; background: rgba(255,255,255,0.05); }
.footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.legal { margin-top: 30px; text-align: center; }
.admin-body { background: #0d0d0d; }
.admin-wrap { width: min(700px, 92%); margin: 50px auto; padding: 30px; background: #151515; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }
.upload-form { display: grid; gap: 12px; }
.upload-form input, .upload-form button { padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); }
.upload-form button { background: #fff; color: #111; font-weight: bold; cursor: pointer; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; }
.alert.success { background: #14361f; }
.alert.error { background: #4a1515; }
@media (max-width: 980px) { .hero-grid, .footer-grid { grid-template-columns: 1fr; } .nav { justify-content: flex-start; } }
@media (max-width: 768px) { .header-inner { flex-direction: column; align-items: flex-start; } .carousel-slides, .carousel-slide img { min-height: 320px; height: 320px; } }


.admin-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 30%),
        linear-gradient(135deg, #080808, #151515 60%, #0e0e0e);
    color: #fff;
    min-height: 100vh;
}

.admin-login-wrap,
.admin-panel-wrap {
    width: min(1200px, 94%);
    margin: 40px auto;
}

.admin-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    margin: 0;
    width: 100%;
}

.admin-login-wrap .admin-card {
    width: min(480px, 92%);
}

.admin-card h1,
.admin-card h2 {
    margin-top: 0;
}

.admin-subtitle {
    color: #d0d0d0;
    margin-bottom: 20px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
}

.upload-form {
    display: grid;
    gap: 12px;
}

.upload-form label {
    font-weight: 600;
    color: #f0f0f0;
}

.upload-form input,
.upload-form button {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 15px;
}

.upload-form input[type="text"],
.upload-form input[type="password"],
.upload-form input[type="file"] {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.upload-form button {
    background: #fff;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.upload-form button:hover {
    transform: translateY(-1px);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.alert.success {
    background: rgba(25, 128, 66, 0.25);
    border: 1px solid rgba(53, 197, 111, 0.3);
}

.alert.error {
    background: rgba(157, 33, 33, 0.22);
    border: 1px solid rgba(255, 86, 86, 0.25);
}

.admin-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid rgba(255,255,255,0.14);
}

.admin-btn.secondary {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.admin-btn.danger {
    color: #fff;
    background: rgba(180, 35, 35, 0.35);
}

.admin-btn.mini {
    padding: 10px 14px;
    font-size: 13px;
}

.admin-track-list {
    display: grid;
    gap: 14px;
}

.admin-track-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

.admin-track-item strong,
.admin-track-item small {
    display: block;
}

.admin-track-item small {
    margin-top: 4px;
    color: #d8d8d8;
}

.admin-track-actions {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.admin-track-actions audio {
    width: 100%;
}

.admin-links {
    margin-top: 18px;
}

.admin-links a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}



.now-playing {
    margin-bottom: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.now-playing-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cfcfcf;
    margin-bottom: 8px;
}

.now-playing h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
}

.now-playing p {
    margin: 6px 0 0;
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* HOME GALLERY CAROUSEL */
.gallery-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.gallery-carousel-track {
    position: relative;
    min-height: 520px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-slide.is-active {
    position: relative;
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.gallery-arrow.prev { left: 16px; }
.gallery-arrow.next { right: 16px; }

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
}

.gallery-dot.is-active {
    background: #fff;
}

/* UNDERTOW GRID */
.undertow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.undertow-thumb {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
}

.undertow-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.undertow-thumb:hover img {
    transform: scale(1.04);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

#lightboxCaption {
    margin-top: 14px;
    color: #fff;
    font-size: 1rem;
}

.lightbox-arrow,
.lightbox-close {
    position: absolute;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 28px;
}

.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 32px;
}

.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }

/* ADMIN IMAGE MODULE */
.admin-image-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.admin-image-item {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

.admin-image-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

.admin-image-item strong {
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .undertow-grid,
    .admin-image-list {
        grid-template-columns: 1fr;
    }

    .gallery-slide img {
        height: 320px;
    }

    .gallery-carousel-track {
        min-height: 320px;
    }
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.admin-stat-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.admin-stat-card .stat-label {
    display: block;
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 8px;
}

.admin-stat-card strong {
    font-size: 2rem;
    color: #fff;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dashboard-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.dashboard-card-head h2 {
    margin: 0;
}

.dashboard-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 13px;
    white-space: nowrap;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

@media (max-width: 980px) {
    .admin-stats-grid,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 18px;
    background: rgba(12,12,12,0.96);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.admin-sidebar-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
}

.admin-sidebar-brand span {
    display: block;
    color: #bdbdbd;
    margin-top: 6px;
    font-size: 0.92rem;
}

.admin-sidebar-nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.admin-sidebar-footer {
    display: grid;
    gap: 10px;
}

.admin-btn.full {
    width: 100%;
    text-align: center;
}

.admin-main {
    padding: 28px;
}

.admin-main-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-page-head {
    margin-bottom: 24px;
}

.admin-card-narrow {
    max-width: 760px;
}

@media (max-width: 1024px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .admin-main {
        padding: 18px;
    }
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.video-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.video-frame-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card-body {
    padding: 18px;
}

.video-card-body h3 {
    margin: 0;
    font-size: 1.1rem;
}

.admin-video-list {
    display: grid;
    gap: 14px;
}

.admin-video-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
}

.admin-video-item strong,
.admin-video-item small {
    display: block;
}

.admin-video-item small {
    margin-top: 6px;
    color: #d0d0d0;
    word-break: break-word;
}

.center-text {
    text-align: center;
}

.section-subtitle {
    color: #d0d0d0;
    margin-top: -10px;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .video-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.upload-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 15px;
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.album-catalog {
    display: grid;
    gap: 38px;
    margin-top: 30px;
}

.album-block {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.album-block-top {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 26px;
    align-items: center;
    margin-bottom: 24px;
}

.album-cover-wrap {
    width: 100%;
}

.album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    background: #111;
}

.album-cover-placeholder {
    display: grid;
    place-items: center;
    color: #d0d0d0;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.08);
}

.album-info h2 {
    margin: 8px 0 10px;
    font-size: 2rem;
}

.album-info p {
    margin: 0;
    color: #d0d0d0;
    font-size: 1rem;
}

.album-kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdbdbd;
}

.album-track-list {
    display: grid;
    gap: 12px;
}

.album-track-item {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    color: #fff;
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    transition: 0.25s ease;
}

.album-track-item:hover,
.album-track-item.is-active {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

.album-track-no {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    font-weight: 700;
}

.album-track-meta strong,
.album-track-meta small {
    display: block;
}

.album-track-meta small {
    margin-top: 4px;
    color: #d0d0d0;
}

.album-track-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    font-size: 0.9rem;
    color: #fff;
}

.sticky-player {
    position: sticky;
    bottom: 12px;
    margin-top: 36px;
    z-index: 20;
}

.sticky-player-inner {
    display: grid;
    grid-template-columns: 90px 1fr 420px;
    gap: 18px;
    align-items: center;
    background: rgba(12,12,12,0.94);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 16px 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

.sticky-player-cover {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    background: #111;
}

.sticky-player-cover-fallback {
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.sticky-player-meta h3 {
    margin: 4px 0 6px;
    font-size: 1.2rem;
}

.sticky-player-meta p {
    margin: 2px 0;
    color: #d0d0d0;
}

.sticky-player-audio audio {
    width: 100%;
}

@media (max-width: 980px) {
    .album-block-top {
        grid-template-columns: 1fr;
    }

    .sticky-player-inner {
        grid-template-columns: 1fr;
    }

    .sticky-player-cover-wrap {
        display: none;
    }
}

@media (max-width: 640px) {
    .album-track-item {
        grid-template-columns: 46px 1fr;
    }

    .album-track-play {
        display: none;
    }
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdbdbd;
    margin-bottom: 8px;
}

.left-title {
    text-align: left;
    margin: 0;
}

.featured-albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.featured-album-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.featured-album-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.14);
}

.featured-album-cover-wrap {
    width: 100%;
}

.featured-album-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #111;
}

.featured-album-cover-placeholder {
    display: grid;
    place-items: center;
    color: #d0d0d0;
    font-weight: bold;
}

.featured-album-body {
    padding: 20px;
}

.featured-album-label {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdbdbd;
    margin-bottom: 8px;
}

.featured-album-body h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.featured-album-body p {
    margin: 0 0 8px;
    color: #d0d0d0;
}

.featured-album-body small {
    display: block;
    color: #bdbdbd;
    margin-bottom: 16px;
}

.featured-album-actions {
    margin-top: 10px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
}

@media (max-width: 980px) {
    .featured-albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-albums-grid {
        grid-template-columns: 1fr;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    background: #fff;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

html {
    scroll-behavior: smooth;
}

.album-block {
    scroll-margin-top: 110px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.photo-item {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 900px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.photo-item {
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.photo-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.photo-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.42), rgba(0,0,0,0.10));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

/* PRO LIGHTBOX */
.photo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox-stage {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    width: 100%;
    text-align: center;
    position: relative;
}

.photo-lightbox-stage img {
    max-width: 100%;
    max-height: 76vh;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.photo-lightbox-stage img.is-visible {
    opacity: 1;
    transform: scale(1);
}

.photo-lightbox-caption-wrap {
    margin-top: 16px;
    color: #fff;
}

#photoLightboxCaption {
    margin: 0;
    font-size: 1rem;
    color: #f2f2f2;
}

.photo-lightbox-counter {
    margin-top: 6px;
    color: #bdbdbd;
    font-size: 0.92rem;
}

.photo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.photo-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 10;
}

.photo-lightbox-arrow.prev {
    left: 24px;
}

.photo-lightbox-arrow.next {
    right: 24px;
}

.photo-lightbox-close:hover,
.photo-lightbox-arrow:hover {
    background: rgba(255,255,255,0.18);
}

@media (max-width: 1100px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-lightbox {
        padding: 18px;
    }

    .photo-lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .photo-lightbox-arrow.prev {
        left: 10px;
    }

    .photo-lightbox-arrow.next {
        right: 10px;
    }

    .photo-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 520px) {
    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-lightbox-stage img {
        max-height: 68vh;
    }
}

.upload-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 15px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    resize: vertical;
}

.about-dynamic-wrap {
    display: grid;
    gap: 34px;
    margin-top: 24px;
}

.about-dynamic-block {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.about-dynamic-text h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 2rem;
}

.about-dynamic-copy {
    color: #e0e0e0;
    line-height: 1.8;
}

.about-dynamic-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.instagram-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.instagram-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 980px) {
    .about-dynamic-block {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}


.floating-social-menu {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social-link {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(10,10,10,0.88);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.28);
    transition: transform 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

.floating-social-link:hover {
    transform: scale(1.08);
    background: rgba(255,255,255,0.08);
}

.floating-social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .floating-social-menu {
        right: 12px;
        bottom: 16px;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: calc(100vw - 24px);
    }

    .floating-social-link {
        width: 48px;
        height: 48px;
    }
}

.contact-wrap {
    max-width: 600px;
    margin: 30px auto;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 10px;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #fff;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: 0.25s;
}

.contact-form button:hover {
    transform: translateY(-1px);
}

.tabs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.tab-card {
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 24px;
    padding: 22px;
    cursor: pointer;
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    transition: 0.25s ease;
}

.tab-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
}

.tab-card-kicker {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdbdbd;
    margin-bottom: 8px;
}

.tab-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.tab-card p {
    margin: 0;
    color: #d0d0d0;
}

.tab-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tab-modal.is-open {
    display: flex;
}

.tab-modal-dialog {
    width: min(1400px, 96vw);
    height: min(90vh, 900px);
    background: #101010;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
    display: grid;
    grid-template-rows: auto 1fr;
}

.tab-modal-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tab-modal-header h2 {
    margin: 6px 0 0;
    font-size: 1.3rem;
}

.tab-modal-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdbdbd;
}

.tab-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-modal-close {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.tab-modal-body {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
}

.tab-modal-body iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.tab-modal-note {
    padding: 12px 18px;
    font-size: 0.92rem;
    color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

@media (max-width: 980px) {
    .tabs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-modal-dialog {
        width: 98vw;
        height: 92vh;
    }
}

@media (max-width: 640px) {
    .tabs-grid {
        grid-template-columns: 1fr;
    }

    .tab-modal-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 18px;
    background: rgba(12,12,12,0.96);
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    z-index: 1200;
}

.admin-sidebar-brand a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
}

.admin-sidebar-brand span {
    display: block;
    color: #bdbdbd;
    margin-top: 6px;
    font-size: 0.92rem;
}

.admin-sidebar-nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}

.admin-sidebar-footer {
    display: grid;
    gap: 10px;
}

.admin-btn.full {
    width: 100%;
    text-align: center;
}

.admin-main {
    padding: 28px;
    min-width: 0;
}

.admin-main-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-page-head {
    margin-bottom: 24px;
}

.admin-card-narrow {
    max-width: 760px;
}

/* MOBILE TOPBAR */
.admin-mobile-topbar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1300;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(12,12,12,0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.admin-mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.admin-mobile-brand {
    display: grid;
    gap: 2px;
}

.admin-mobile-brand strong {
    color: #fff;
    font-size: 1rem;
}

.admin-mobile-brand span {
    color: #bdbdbd;
    font-size: 0.85rem;
}

/* BACKDROP */
.admin-sidebar-backdrop {
    display: none;
}

.admin-sidebar-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1190;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .admin-mobile-topbar {
        display: flex;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 290px;
        max-width: 86vw;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: 0;
        box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    }

    .admin-sidebar.is-open {
        transform: translateX(0);
    }

    .admin-main {
        padding: 18px;
    }
}

.upload-progress-wrap {
    display: none;
    margin: 12px 0;
}

.upload-progress-bar {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.upload-progress-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 0.2s ease;
}

#uploadProgressText {
    display: block;
    margin-top: 8px;
    color: #d0d0d0;
    font-size: 0.92rem;
}