
#livevue-app h1,
#livevue-app h2,
#livevue-app h3,
#livevue-app h4,
#livevue-app h5,
#livevue-app h6 {
    color: #fff !important;
    font-family: system-ui, -apple-system, Arial !important;
    font-weight: 600;
}

#livevue-app {
    font-family: system-ui, -apple-system, Arial;
    background: #000;
    color: #fff;
    min-height: 100vh;
}

/* CENTER WRAPPER */
#livevue-app .lv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* HEADER */
#livevue-app .lv-header {
    text-align: left;
    margin-bottom: 30px;
}

#livevue-app .lv-header h1 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}

#livevue-app .lv-header input {
    margin-top: 15px;
    padding: 12px 15px;
    width: 100%;
    max-width: 420px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 6px;
    outline: none;
}

/* GRID (NETFLIX STYLE) */
#livevue-app #lv-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 18px;
}

/* CARD */
#livevue-app .lv-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER EFFECT */
#livevue-app .lv-card:hover {
    transform: scale(1.02);
    z-index: 5;

    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 1),
        0 10px 25px rgba(255,255,255,0.18),
        0 25px 60px rgba(255,255,255,0.12),
        0 0 80px rgba(255,255,255,0.10),
        0 0 120px rgba(255,255,255,0.06);
}

/* IMAGE (TRUE 16:9) */
#livevue-app .lv-image-wrap {
    position: relative;
}

#livevue-app .lv-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 9;   /* 🔥 TRUE CINEMATIC FORMAT */
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* IMAGE ZOOM ON HOVER */
#livevue-app .lv-card:hover .lv-image-wrap img {
    transform: scale(1.02);
}

/* DARK OVERLAY (NETFLIX FEEL) */
#livevue-app .lv-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0)
    );
}

/* CONTENT ON IMAGE */
#livevue-app .lv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    z-index: 2;
}

#livevue-app .lv-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

#livevue-app .lv-date {
    font-size: 15px;
    color: #bbb;
    margin-top: 4px;
}

/* LIVE BADGE */
#livevue-app .lv-live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 3;
}

/* LOAD MORE */
#livevue-app .lv-load-wrap {
    text-align: center;
    margin-top: 40px;
}

#livevue-app #lv-load-more {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 6px;
}

#livevue-app #lv-load-more:hover {
    background: #fff;
    color: #000;
}












/* SINGLE PAGE HERO */
/* 🔥 CENTER TEXT OVER IMAGE */
#livevue-app .lv-info {
    text-align: center;
    padding-top: 20px;
}