/* 
 * Shared Movies Styles
 * Base styles shared across all movie page layouts
 */

/* Import core base styles */
@import url('/assets/css/core/base.css');

/* Movies page specific shared styles */
.movie-page {
    min-height: 100vh;
    background: var(--background-primary);
    color: var(--text-primary);
}

.movie-title {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.section-title {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.genre {
    background: var(--primary-brand);
    transition: background-color 0.3s ease;
}

/* Ensure color theme compatibility */
:root {
    --primary-brand: var(--theme-primary, #e50914);
    --primary-dark: var(--theme-primary-dark, #b8070f);
    --secondary: var(--theme-accent, #e50914);
}

/* Theme-aware elements */
.text-secondary {
    color: var(--primary-brand) !important;
}

.bg-primary {
    background-color: var(--primary-brand) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.border-primary\/50 {
    border-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.5) !important;
}

.hover\:border-primary\/50:hover {
    border-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.5) !important;
}

.hover\:shadow-primary\/20:hover {
    box-shadow: 0 0 40px rgba(var(--theme-primary-rgb, 229, 9, 20), 0.2) !important;
}

.bg-secondary\/20 {
    background-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.2) !important;
}

.bg-secondary\/30 {
    background-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.3) !important;
}

.bg-secondary\/80 {
    background-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.8) !important;
}

.border-secondary\/30 {
    border-color: rgba(var(--theme-primary-rgb, 229, 9, 20), 0.3) !important;
}

.hover\:border-secondary:hover {
    border-color: var(--primary-brand) !important;
}

.hover\:bg-secondary:hover {
    background-color: var(--primary-brand) !important;
}
