/* =============================================
   LIVE SETS PAGE
   Dark theme, grid of video cards
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.live-sets-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #2d3540 0%, #252b33 50%, #1e2329 100%);
    color: #f5f5f5;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
}

img {
    display: block;
}

/* ---------- Header ---------- */
.live-sets-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    padding-top: 50px;
    z-index: 100;
}

.live-sets-page .header .logo {
    display: block;
}

.live-sets-page .header .logo img {
    width: 50px;
    height: auto;
}

.live-sets-page .menu {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.live-sets-page .menu:hover {
    opacity: 0.7;
}

/* ---------- Main Container ---------- */
main.live-sets-page {
    padding: 40px 85px;
    padding-top: 120px;
}

/* ---------- Hero / Title ---------- */
.live-sets-hero {
    padding-bottom: 50px;
}

.live-sets-title {
    color: #FBFBFB;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.live-sets-subtitle {
    color: #FBFBFB;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* ---------- Grid ---------- */
.live-sets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 70px;
}

.live-set-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.live-set-card--large {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
}

.live-set-card__link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.live-set-card__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1a1a1a;
    transition: transform 300ms ease-out;
}

.live-set-card__link:hover .live-set-card__image {
    transform: scale(1.03);
}

.live-set-card__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 28px 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    height: auto;
}

.live-set-card__overlay::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    background: linear-gradient(180deg, rgba(82, 107, 112, 0.00) 60.27%, rgba(0, 0, 0, 0.80) 100%);
    opacity: 1;
    transition: opacity 300ms ease-out;
    z-index: 0;
    pointer-events: none;
}

.live-set-card__link:hover .live-set-card__overlay::before {
    opacity: 0;
}

.live-set-card__location {
    color: #FFF;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    z-index: 1;
}

.live-set-card__genre {
    color: #FFF;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 1;
}

/* ---------- More Videos ---------- */
.live-sets-more {
    padding: 40px 0 80px;
    text-align: center;
}

.live-sets-more__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FBFBFB;
    font-family: 'Aeroport', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.live-sets-more__link:hover {
    opacity: 0.7;
}

.live-sets-more__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    main.live-sets-page {
        padding: 24px 16px;
        padding-top: 100px;
    }

    .live-sets-page .header {
        padding: 20px 16px;
    }

    .live-sets-page .header .logo img {
        width: 35px;
    }

    .live-sets-hero {
        padding-bottom: 32px;
    }

    .live-sets-title {
        margin-bottom: 8px;
        font-size: 32px;
    }

    .live-sets-subtitle {
        font-size: 16px;
    }

    .live-sets-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .live-set-card--large {
        aspect-ratio: 16 / 10;
    }

    .live-set-card__overlay {
        padding: 14px 16px 24px 16px;
    }

    .live-set-card__location {
        font-size: 14px;
    }

    .live-set-card__genre {
        font-size: 12px;
    }

    .live-sets-more {
        padding: 32px 0 48px;
    }
}
