body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.material-symbols-outlined {
    --icon-fill: 0;
    --icon-weight: 400;
    font-variation-settings: 'FILL' var(--icon-fill), 'wght' var(--icon-weight), 'GRAD' 0, 'opsz' 24;
}

.plus-jakarta-sans,
.font-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.inter,
.font-body,
.font-label {
    font-family: 'Inter', sans-serif;
}

.icon-filled {
    --icon-fill: 1;
}

.album-carousel {
    position: relative;
}

.album-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.album-carousel-track::-webkit-scrollbar {
    display: none;
}

.album-card {
    flex: 0 0 calc(100% - 0.5rem);
    scroll-snap-align: start;
}

.album-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #ffffff;
    color: rgba(8, 47, 73, 1);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-carousel-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

.album-thumb {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.partner-grid-wrapper {
    position: relative;
    overflow: hidden;
}

.partner-grid-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(45, 212, 191, 0.08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(8, 47, 73, 0.08), transparent 30%);
    pointer-events: none;
}

.partner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.partner-card {
    min-height: 110px;
}

.partner-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1.75rem 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(8, 47, 73, 0.06);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.partner-card:hover .partner-card-inner {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
    border-color: rgba(45, 212, 191, 0.22);
}

.partner-logo {
    width: min(100%, 150px);
    height: 52px;
    object-fit: contain;
    opacity: 0.72;
    filter: grayscale(1);
    transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.partner-card:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.02);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lightbox.hidden {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(10px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.lightbox-content {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.4);
}

.lightbox-image {
    display: block;
    width: 100%;
    max-height: min(72vh, 820px);
    object-fit: contain;
    background: rgba(15, 23, 42, 0.8);
}

.lightbox-caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.92);
}

.lightbox-counter {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.lightbox-close,
.lightbox-nav {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 9999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

@media (min-width: 768px) {
    .album-card {
        flex-basis: calc(50% - 0.75rem);
    }

    .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .album-card {
        flex-basis: calc(33.333% - 1rem);
    }

    .partner-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .lightbox {
        padding: 1rem;
    }

    .lightbox-dialog {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .lightbox-nav {
        position: absolute;
        top: calc(50% - 1.5rem);
    }

    .lightbox-nav-prev {
        left: 0.5rem;
    }

    .lightbox-nav-next {
        right: 0.5rem;
    }

    .lightbox-image {
        max-height: 65vh;
    }

    .lightbox-caption {
        flex-direction: column;
        align-items: flex-start;
    }
}
