/* =========================================================
   Mini Text Feature Card - Quote / Word of Day
   ========================================================= */

.tmf-card {
    padding: 18px;
    border-radius: 20px !important;
    color: white;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,.08);
    background: #111827 !important;
}

    .tmf-card::after {
        content: "”";
        position: absolute;
        right: 16px;
        bottom: -48px;
        font-family: Georgia, serif;
        font-size: 130px;
        color: rgba(255,255,255,.035);
        pointer-events: none;
    }

.tmf-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

    .tmf-head span {
        display: block;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .tmf-head h3 {
        margin: 4px 0 0;
        font-size: 18px;
        letter-spacing: -.02em;
    }

    .tmf-head .mud-icon-button {
        color: currentColor !important;
        opacity: .85;
    }

.tmf-body {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tmf-icon {
    font-size: 34px !important;
    margin-bottom: 6px;
}

.tmf-body strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

.tmf-body p {
    margin: 10px 0 0;
    color: var(--tr-soft);
    font-size: 13px;
    line-height: 1.45;
}

.tmf-body small {
    display: block;
    margin-top: 12px;
    color: var(--tr-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.tmf-purple {
    background: radial-gradient(circle at top right, rgba(217,70,239,.18), transparent 38%), #111827 !important;
    border-color: rgba(217,70,239,.22);
}

    .tmf-purple .tmf-head span,
    .tmf-purple .tmf-icon {
        color: #f0abfc;
    }

.tmf-gold {
    background: radial-gradient(circle at top right, rgba(245,158,11,.18), transparent 38%), #111827 !important;
    border-color: rgba(245,158,11,.22);
}

    .tmf-gold .tmf-head span,
    .tmf-gold .tmf-icon {
        color: #fbbf24;
    }

.tmf-flipped {
    display: inline-block;
    transform: rotate(180deg);
    letter-spacing: .06em;
    opacity: .85;
}

/* =========================================================
   Cinema Release Shelf
   ========================================================= */

.tc-cinema {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(239,68,68,.18), transparent 36%), linear-gradient(180deg, #111827, #070b14);
    border: 1px solid rgba(239,68,68,.22);
    color: white;
    overflow: hidden;
}

.tc-cinema-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

    .tc-cinema-head h2 {
        margin: 0;
        font-size: 24px;
        letter-spacing: -.03em;
    }

    .tc-cinema-head p {
        margin: 4px 0 0;
        color: var(--tr-muted);
        font-size: 13px;
    }

    .tc-cinema-head .mud-button {
        color: #f87171 !important;
        text-transform: none;
        font-weight: 800;
    }

.tc-cinema-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.tc-movie-card {
    width: 190px;
    flex: 0 0 auto;
    cursor: pointer;
}

.tc-movie-poster {
    position: relative;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(239,68,68,.22);
    box-shadow: 0 18px 36px rgba(0,0,0,.4);
    transition: transform .18s ease, border-color .18s ease;
}

.tc-movie-card:hover .tc-movie-poster {
    transform: translateY(-6px);
    border-color: rgba(239,68,68,.6);
}

.tc-movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-movie-poster span {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0,0,0,.62);
    border: 1px solid rgba(255,255,255,.18);
    color: white;
    font-size: 11px;
    font-weight: 800;
}

.tc-movie-info {
    padding-top: 10px;
}

    .tc-movie-info strong {
        display: block;
        font-size: 15px;
        line-height: 1.25;
    }

    .tc-movie-info small {
        display: block;
        color: var(--tr-muted);
        margin-top: 5px;
        font-size: 12px;
    }

