/* =============================================
   THE SCENE — News Hub Styles
   scene-hub.css
   ============================================= */

/* --- Content Type Badge System --- */
.scene-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
    line-height: 1;
    white-space: nowrap;
}

.scene-badge i {
    font-size: 0.65rem;
}

.scene-badge--article {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.scene-badge--interview {
    background: rgba(138, 43, 226, 0.2);
    color: #b388ff;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.scene-badge--music {
    background: rgba(212, 255, 0, 0.15);
    color: #111;
    border: 1px solid rgba(212, 255, 0, 0.4);
    background-color: var(--accent-lime);
}

.scene-badge--video {
    background: rgba(255, 87, 51, 0.2);
    color: #ff7043;
    border: 1px solid rgba(255, 87, 51, 0.3);
}

.scene-badge--update {
    background: rgba(255, 215, 0, 0.2);
    color: #111;
    border: 1px solid rgba(255, 215, 0, 0.4);
    background-color: #FFD700;
}

/* --- Scene Hero --- */
.scene-hero {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 10px;
}

.scene-hero .section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.scene-hero .section-subtitle {
    max-width: 650px;
    margin: 0 auto 15px;
}

.scene-teaser {
    text-align: center;
    color: var(--accent-lime);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: opacity 0.3s;
}

.scene-teaser:hover {
    opacity: 0.8;
}

/* ===== FEATURED SPOTLIGHT (60/40) ===== */
.scene-spotlight {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 25px;
    margin-bottom: 50px;
    min-height: 380px;
}

/* --- Rotator (left 60%) --- */
.scene-rotator {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}

.scene-rotator-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    cursor: pointer;
}

.scene-rotator-slide.active {
    opacity: 1;
    position: relative;
}

.scene-rotator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 380px;
}

.scene-rotator-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85) 60%);
}

.scene-rotator-overlay .scene-badge {
    margin-bottom: 10px;
}

.scene-rotator-overlay h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.scene-rotator-overlay p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 500px;
}

/* Rotator dots */
.scene-rotator-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.scene-rotator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
    border: none;
    padding: 0;
}

.scene-rotator-dot.active {
    background: var(--accent-lime);
    box-shadow: 0 0 8px rgba(212, 255, 0, 0.4);
}

/* --- Latest Drops (right 40%) --- */
.scene-drops {
    display: flex;
    flex-direction: column;
}

.scene-drops-header {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--accent-lime);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.scene-drops-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.scene-drop-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: 0.2s;
}

.scene-drop-item:hover {
    padding-left: 8px;
}

.scene-drop-item:last-child {
    border-bottom: none;
}

.scene-drop-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #222;
}

.scene-drop-info {
    flex: 1;
    min-width: 0;
}

.scene-drop-info .scene-badge {
    font-size: 0.6rem;
    padding: 2px 7px;
    margin-bottom: 5px;
}

.scene-drop-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scene-drop-snippet {
    font-size: 0.75rem;
    color: #888;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== FILTER BAR ===== */
.scene-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.scene-filters .search-input {
    flex: 1;
    min-width: 200px;
    max-width: 320px;
}

.scene-filter-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ===== MAGAZINE SECTIONS ===== */
.scene-section {
    margin-bottom: 50px;
}

.scene-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222;
}

.scene-section-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: white;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scene-section-title i {
    font-size: 0.9rem;
}

.scene-section-title .scene-section-accent {
    display: inline-block;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    margin-right: 5px;
}

.scene-section-accent--article  { background: #60a5fa; }
.scene-section-accent--interview { background: #b388ff; }
.scene-section-accent--music    { background: var(--accent-lime); }
.scene-section-accent--video    { background: #ff7043; }
.scene-section-accent--update   { background: #FFD700; }

.scene-section-viewall {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.2s;
    background: none;
    border: none;
    font-family: var(--font-body);
}

.scene-section-viewall:hover {
    color: var(--accent-lime);
}

/* ===== CARD BADGE OVERLAY ===== */
.scene-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

/* ===== MEDIA PLAY OVERLAY ===== */
.scene-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.news-card:hover .scene-play-overlay {
    opacity: 1;
}

.scene-play-overlay i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ===== SCENE UPDATES — Compact Feed ===== */
.scene-updates-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.scene-update-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: 0.2s;
}

.scene-update-item:hover {
    padding-left: 8px;
}

.scene-update-item:last-child {
    border-bottom: none;
}

.scene-update-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FFD700;
    font-size: 0.85rem;
}

.scene-update-body {
    flex: 1;
    min-width: 0;
}

.scene-update-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.scene-update-snippet {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

/* ===== EXCLUSIVE — Locked Preview ===== */
.scene-exclusive-locked {
    position: relative;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(218, 165, 32, 0.3);
    background: rgba(218, 165, 32, 0.04);
}

.scene-exclusive-locked .news-grid {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}

.scene-locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
    padding: 30px;
}

.scene-locked-overlay i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.scene-locked-overlay h3 {
    font-family: var(--font-head);
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.scene-locked-overlay p {
    color: #aaa;
    margin-bottom: 20px;
    max-width: 400px;
    font-size: 0.95rem;
}

.scene-locked-overlay .btn {
    padding: 12px 30px;
}

/* ===== DETAIL VIEW ===== */
.scene-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.scene-detail-date {
    color: #666;
    font-size: 0.95rem;
}

.scene-detail-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.scene-listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-lime);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
}

.scene-listen-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 255, 0, 0.3);
}

.scene-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: #ccc;
    border: 1px solid #333;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
}

.scene-share-btn:hover {
    border-color: var(--accent-lime);
    color: var(--accent-lime);
}

/* ===== RELATED CONTENT ===== */
.scene-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.scene-related h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ccc;
}

.scene-related .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
}

/* ===== EMPTY / LOADING ===== */
.scene-empty {
    color: #666;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
}

/* ===== SEARCH RESULTS MODE ===== */
.scene-search-results-header {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #ccc;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.scene-search-results-header span {
    color: var(--accent-lime);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .scene-spotlight {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .scene-rotator-img {
        min-height: 260px;
    }

    .scene-drops {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .scene-hero .section-title {
        font-size: 2.2rem;
    }

    .scene-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .scene-filters .search-input {
        max-width: none;
    }

    .scene-filter-btns {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
    }

    .scene-filter-btns::-webkit-scrollbar {
        display: none;
    }

    .scene-filter-btns .filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .scene-detail-actions {
        flex-direction: column;
    }

    .scene-listen-btn,
    .scene-share-btn {
        justify-content: center;
    }

    .scene-rotator-overlay h2 {
        font-size: 1.2rem;
    }

    .scene-rotator-overlay p {
        font-size: 0.8rem;
    }
}
