:root {
            --bg-color: #050505;
            --surface-color: #111;
            --surface-light: #1a1a1a;
            --primary-color: #e8210a;
            --text-main: #f0f0f0;
            --text-muted: #888;
            --font-head: 'Bebas Neue', sans-serif;
            --font-body: 'Barlow', sans-serif;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
        }

        /* Standard Header Fixed */
        .site-header {
            background: rgba(5, 5, 5, 0.95);
            border-bottom: 1px solid #222;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }
        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: var(--font-head);
            font-size: 2.2rem;
            color: #fff;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        .logo span { color: var(--primary-color); }
        .header-nav { 
            display: flex; 
            gap: 10px; 
        }
        .header-nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            padding: 8px 16px;
            transition: color 0.3s;
        }
        .header-nav a:hover, .header-nav a.active { color: var(--primary-color); }

        /* Magazine Hero */
        .mag-hero {
            text-align: center;
            padding: 60px 20px 40px;
            background: linear-gradient(to bottom, #111, var(--bg-color));
            border-bottom: 1px solid #222;
        }
        .mag-hero h1 {
            font-family: var(--font-head);
            font-size: 4rem;
            letter-spacing: 2px;
            margin: 0 0 10px 0;
            color: #fff;
        }
        .mag-hero p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.5;
        }

        /* PREMIUM CATEGORY SELECT DROPDOWN */
.mag-article-header {
            text-align: center;
            padding: 60px 20px 40px;
            background: #050505;
            border-bottom: 1px solid #222;
        }
        .mag-article-header h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            letter-spacing: 1px;
            margin: 0 0 15px 0;
            line-height: 1.1;
        }
        .mag-article-meta {
            color: #e8210a;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mag-article-meta span { color: #888; font-weight: 600; }
        
        /* Premium Film Navigation Buttons */
        .film-nav-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 30px 0 50px 0;
            padding: 0 20px;
        }
        .btn-film-link {
            display: inline-flex;
            align-items: center;
            background: #111;
            color: #fff;
            text-decoration: none;
            font-family: 'Barlow', sans-serif;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 24px;
            border: 1px solid #333;
            border-radius: 4px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        .btn-film-link::before {
            content: '▶';
            color: #e8210a;
            margin-right: 10px;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        .btn-film-link:hover {
            background: #1a1a1a;
            border-color: #e8210a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(232, 33, 10, 0.2);
        }
        
        /* Prose enhancements for Magazine */
        .prose h2 { margin-top: 50px; font-size: 2.2rem; }
        .prose h3 { margin-top: 35px; color: #f0f0f0; }
        .prose blockquote {
            border-left: 4px solid #e8210a;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #bbb;
            font-size: 1.2rem;
            line-height: 1.6;
        }
        .diamond-tip {
            background: #111;
            border: 1px solid #333;
            border-top: 3px solid #e8210a;
            padding: 25px;
            margin: 40px 0;
            border-radius: 4px;
        }
        .diamond-tip-title {
            display: flex;
            align-items: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .diamond-tip-title span { margin-right: 10px; font-size: 1.4rem; }
        .mag-category-select-wrapper {
            background: #0a0a0a;
            border-bottom: 1px solid #222;
            padding: 25px 20px;
            text-align: center; /* Centers the inline-block child */
        }
        .mag-category-select {
            display: inline-block;
            width: 100%;
            max-width: 340px;
            margin: 0 auto;
            padding: 14px 45px 14px 20px;
            background-color: #151515;
            color: #fff;
            border: 1px solid #333;
            border-radius: 4px;
            font-family: var(--font-body);
            font-size: 1.05rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            outline: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            
            /* Hide Native Arrows */
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            
            /* Custom Premium Red Arrow SVG */
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M2 5 L8 11 L14 5' fill='none' stroke='%23e8210a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 14px;
        }
        
        .mag-category-select:hover,
        .mag-category-select:focus {
            border-color: var(--primary-color);
            background-color: #1a1a1a;
            box-shadow: 0 0 15px rgba(232, 33, 10, 0.15);
        }

        /* Dropdown Native Options Styling */
        .mag-category-select option {
            background-color: #111;
            color: #fff;
            font-weight: 600;
            padding: 15px;
        }

        /* Main Content */
        .mag-main {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Featured Article */
        .featured-article {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            background: var(--surface-color);
            border: 1px solid #222;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 40px;
            transition: transform 0.3s;
        }
        .featured-article:hover { border-color: #444; }
        .featured-img-wrap {
            position: relative;
            height: 100%;
            min-height: 300px;
            overflow: hidden;
        }
        .featured-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-article:hover .featured-img-wrap img { transform: scale(1.05); }
        .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .art-tag {
            display: inline-block;
            color: var(--primary-color);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .featured-content h2 {
            font-family: var(--font-head);
            font-size: 3rem;
            margin: 0 0 15px 0;
            line-height: 1.1;
        }
        .featured-content h2 a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .featured-content h2 a:hover { color: var(--primary-color); }
        .art-excerpt {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        .art-meta {
            font-size: 0.85rem;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .read-btn {
            display: inline-block;
            background: #fff;
            color: #000;
            font-weight: 800;
            text-decoration: none;
            padding: 12px 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            align-self: flex-start;
            transition: all 0.2s;
        }
        .read-btn:hover { background: var(--primary-color); color: #fff; }

        /* Article Grid */
        .mag-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .art-card {
            background: var(--surface-color);
            border: 1px solid #222;
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s;
        }
        .art-card:hover { border-color: #444; transform: translateY(-5px); }
        .art-img {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #000;
        }
        .art-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0.8;
        }
        .art-card:hover .art-img img { transform: scale(1.05); opacity: 1; }
        .art-card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .art-card-content h3 {
            font-family: var(--font-head);
            font-size: 1.8rem;
            margin: 0 0 10px 0;
            line-height: 1.1;
        }
        .art-card-content h3 a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
        .art-card-content h3 a:hover { color: var(--primary-color); }
        .art-card-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 20px 0;
            flex-grow: 1;
        }
        .read-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .read-link::after { content: '→'; transition: transform 0.2s; }
        .read-link:hover::after { transform: translateX(5px); }

        /* Standard Footer — matches main site (top.css) */
        footer {
            background: #000;
            border-top: 2px solid var(--primary-color);
            padding: 60px 20px;
            text-align: center;
            margin-top: 60px;
        }
        .footer-logo {
            font-family: var(--font-head);
            font-size: 2.5rem;
            color: #fff;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        .footer-logo span { color: var(--primary-color); }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #666;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s;
            text-transform: uppercase;
        }
        .footer-links a:hover { color: var(--primary-color); }
        .footer-copy {
            color: #444;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        /* Mobile Adjustments */
        @media (max-width: 480px) {
            .header-inner { flex-direction: column; gap: 15px; }
            .header-nav { flex-wrap: wrap; justify-content: center; gap: 5px; }
            .header-nav a { font-size: 0.95rem; padding: 6px 12px; }
            .mag-hero h1 { font-size: 2.8rem; }
            .featured-article { grid-template-columns: 1fr; }
            .featured-img-wrap { min-height: 200px; }
            .featured-content { padding: 25px; }
            .featured-content h2 { font-size: 2.2rem; }
            .art-excerpt { font-size: 1rem; }
            
            /* Select Mobile Fix */
            .mag-category-select { font-size: 0.95rem; }
        }