/* Cult Classics Page Styles */

/* Breadcrumb */
.breadcrumb {
    font-size: 0.85em;
    color: #7f8c8d;
    margin-bottom: 15px;
}
.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb .separator {
    margin: 0 8px;
    color: #bdc3c7;
}

/* Category Switcher */
.category-switcher {
    float: right;
    margin-bottom: 10px;
}
.category-switcher select {
    padding: 8px 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #2c3e50;
    color: #fff;
    font-size: 0.9em;
    cursor: pointer;
}
.category-switcher select:hover {
    border-color: #e74c3c;
}

.cult-header {
    background: linear-gradient(135deg, #2c3e50, #000000);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #e74c3c;
}

.cult-title {
    font-size: 2em;
    font-weight: bold;
    color: #e74c3c;
    /* Red focus */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cult-subtitle {
    font-size: 1.1em;
    color: #bdc3c7;
    margin-bottom: 20px;
    font-style: italic;
}

.cult-stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.cult-stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.cult-stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #f1c40f;
    display: block;
}

.cult-stat-label {
    font-size: 0.8em;
    color: #ecf0f1;
    text-transform: uppercase;
}

/* Movie card wrapper for badge positioning */
.movie-card-wrapper {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.cult-score-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 0.65em;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cult tier labels */
.cult-tier {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-left: 5px;
    text-transform: uppercase;
    font-weight: bold;
}
.tier-legendary { background: #9b59b6; color: #fff; }
.tier-epic { background: #e74c3c; color: #fff; }
.tier-classic { background: #f39c12; color: #fff; }

/* Explainer box */
.cult-explainer {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #555;
    border-radius: 0 5px 5px 0;
}
.cult-explainer strong {
    color: #e74c3c;
}

/* Enhancements for existing elements in this context */
.mainbox3 a.current-sort {
    color: #e74c3c;
    font-weight: bold;
    text-decoration: underline;
}

/* Clear float after header */
.cult-header::after {
    content: "";
    display: table;
    clear: both;
}