:root {
    /* Color Palette */
    --bg-body: #060608;
    --bg-card: rgba(20, 20, 25, 0.6);
    --bg-card-hover: rgba(30, 30, 38, 0.8);
    --bg-header: rgba(6, 6, 8, 0.85);
    
    --accent: #d4af37; /* Champagne Gold */
    --accent-rgb: 212, 175, 55;
    --accent-light: #e5c158;
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
    --gradient-dark: linear-gradient(180deg, rgba(6,6,8,0) 0%, rgba(6,6,8,0.95) 100%);
    --gradient-hero: linear-gradient(90deg, rgba(6,6,8,1) 0%, rgba(6,6,8,0.7) 40%, rgba(6,6,8,0) 100%);
    
    --text-primary: #f4f4f7;
    --text-secondary: #a1a1b2;
    --text-muted: #626270;
    
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(212, 175, 55, 0.3);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 0 20px rgba(212, 175, 55, 0.15);
    
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.logo-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 6px;
}

.logo-tv {
    background-color: var(--accent);
    color: #000;
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 800;
}

.primary-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Main Content Spacing */
main {
    margin-top: 80px; /* Offset fixed header */
    min-height: calc(100vh - 80px - 400px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Cinematic Hero */
.cinematic-hero {
    position: relative;
    height: 65vh;
    min-height: 480px;
    max-height: 700px;
    display: flex;
    align-items: center;
    background-color: #020203;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.6;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero), var(--gradient-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.badge {
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gradient-accent);
    color: #060608;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
    padding-left: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 4px;
}

/* Entity Grid Layout */
.stars-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.star-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.star-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-accent);
}

.star-card-image {
    height: 280px;
    background-color: #121217;
    position: relative;
    overflow: hidden;
}

.star-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.star-card:hover .star-card-image img {
    transform: scale(1.05);
}

.star-card-content {
    padding: 24px;
}

.star-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.star-meta-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-meta-item strong {
    color: var(--accent);
}

/* Article News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-grid-featured {
    grid-column: span 2;
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-grid-featured:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-accent);
}

.featured-img-wrap {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-grid-featured:hover .featured-img-wrap img {
    transform: scale(1.03);
}

.featured-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-accent);
}

.article-card-image {
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-title a:hover {
    color: var(--accent);
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-link {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more-link:hover {
    color: var(--text-primary);
}

/* Detail Templates Layout */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    padding: 40px 0;
}

.main-content {
    min-width: 0; /* Prevent flex blowout */
}

.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 32px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.sidebar-widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    color: var(--accent);
}

/* Article Detail Styles */
.breadcrumb {
    display: flex;
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    gap: 8px;
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 8px;
}

.breadcrumb-item:last-child::after {
    content: '';
}

.breadcrumb-item.active {
    color: var(--accent);
}

.article-header h1 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    margin-bottom: 32px;
}

.author-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1a1a24;
    overflow: hidden;
}

.author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-name a {
    color: var(--accent);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-hero-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    height: 450px;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e4e4e7;
}

.article-body-content p {
    margin-bottom: 24px;
}

.article-body-content h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    color: var(--text-primary);
}

.article-body-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-body-content a {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.article-body-content a:hover {
    border-bottom-color: var(--accent);
}

/* Star Detail template formatting */
.star-profile-header {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.star-profile-image {
    width: 300px;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.star-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-profile-info {
    flex-grow: 1;
}

.star-profile-info h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.star-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.stat-item {
    font-size: 0.95rem;
}

.stat-item strong {
    color: var(--accent);
}

.star-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Filmography List */
.filmography-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.filmography-item {
    display: flex;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    gap: 16px;
    align-items: center;
    transition: var(--transition);
}

.filmography-item:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.filmography-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.film-title {
    font-weight: 600;
    font-size: 1rem;
}

.film-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Author Profile Detail */
.author-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 60px;
}

.author-large-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.author-large-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-text h1 {
    font-size: 2.2rem;
    margin-bottom: 4px;
}

.author-profile-text .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
}

.author-credentials-list {
    list-style: none;
    margin-top: 16px;
}

.author-credentials-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.author-credentials-list li::before {
    content: '✓';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact and Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-method {
    margin-bottom: 24px;
}

.contact-method h4 {
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-form-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Alert styles for Form messages */
.alert-success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

/* Static Policy Page styling */
.static-page-layout {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 24px;
}

.static-page-layout h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.static-page-layout .last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.static-content {
    line-height: 1.8;
}

.static-content h2 {
    font-size: 1.6rem;
    margin: 36px 0 16px 0;
    color: var(--accent);
}

.static-content p {
    margin-bottom: 20px;
}

.static-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.static-content li {
    margin-bottom: 8px;
}

/* Footer Section */
.site-footer {
    background-color: #030304;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px 0;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-brand .logo {
    display: inline-block;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 16px 0 24px 0;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-socials a:hover {
    color: #000;
    background: var(--gradient-accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    background-color: #08080a;
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    flex-grow: 1;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.footer-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    max-width: 400px;
    text-align: right;
    line-height: 1.4;
}

/* Sidebar List items */
.sidebar-list {
    list-style: none;
}

.sidebar-list-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.sidebar-list-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-list-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.sidebar-list-title a:hover {
    color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid-featured {
        grid-column: span 2;
    }
    
    .layout-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .primary-navigation {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #060608;
        border-bottom: 1px solid var(--border);
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .primary-navigation.open {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu a {
        display: block;
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .news-grid-featured {
        flex-direction: column;
    }
    
    .featured-img-wrap,
    .featured-content {
        width: 100%;
    }
    
    .featured-img-wrap {
        height: 250px;
    }
    
    .star-profile-header {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    
    .star-profile-image {
        width: 100%;
        height: 350px;
    }
    
    .star-profile-info h1 {
        font-size: 2.25rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
    
    .filmography-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid-featured {
        grid-column: span 1;
    }
    
    .star-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
