/* FontAwesome Icons */
        @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");
        @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
    
        /* ----- 1. Global & Theme ----- */
        :root {
            --color-primary-black: #121212;
            --color-secondary-black: #1a1a1a;
            --color-surface: #2a2a2a;
            --color-primary-red: #e60000;
            --color-text-primary: #f0f0f0;
            --color-text-secondary: #aaaaaa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Sansation", serif;
			font-weight: 300;
            font-style: normal;
            background-color: var(--color-primary-black);
            color: var(--color-text-primary);
            line-height: 1.6;
            position: relative;
        }

        a {
            color: var(--color-primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #ff4d4d;
        }

        img {
            max-width: 100%;
            display: block;
        }
        
        img.blur-load {
            filter: blur(8px);
            opacity: 0.6;
            transition: filter 0.4s ease-out, opacity 0.4s ease-out;
        }

        img.blur-load.loaded {
            filter: blur(0);
            opacity: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ----- 2. Footer ----- */
        .main-footer {
            background-color: var(--color-secondary-black);
            border-top: 1px solid #333;
            padding: 40px 20px;
            margin-top: 40px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: left;
        }

        .footer-logo {
            width: 150px;
            margin-bottom: 20px;
        }
        
        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column h4 {
		    font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .footer-column a,
        .footer-column p {
            color: var(--color-text-secondary);
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        .footer-column a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            font-size: 1.5rem;
            color: var(--color-text-secondary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
			font-weight: 300;
            color: var(--color-text-secondary);
        }
        
        /* ----- 3. Media Queries (Mobile Responsive) ----- */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                margin: 0 auto 20px;
            }
            .social-links {
                justify-content: center;
            }
        }

        /*
        =====================================================
        NEW: MAGAZINE PAGE STYLES
        =====================================================
        */
        
        .magazine-container {
            background: var(--color-secondary-black);
            border-radius: 8px;
            padding: 30px;
            margin-top: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid #333;
        }
        
        .magazine-cover {
            width: 100%;
            max-width: 500px; /* How big the cover can get */
            margin: 0 auto 20px; /* Center the cover */
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .magazine-container h1 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .magazine-description {
            font-size: 1.1rem;
            color: var(--color-text-secondary);
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .button-group {
            display: flex;
            justify-content: space-between;
            max-width: 500px;
            margin: 0 auto;
            gap: 20px;
        }

        .btn {
            flex: 1; /* Make buttons share space */
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--color-primary-red);
            color: #fff;
        }
        .btn-primary:hover {
            background-color: #c00;
            color: #fff;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-text-primary);
            border: 2px solid var(--color-surface);
        }
        .btn-secondary:hover {
            background-color: var(--color-surface);
            color: var(--color-text-primary);
        }
        
        /* Mobile styles for magazine page */
        @media (max-width: 768px) {
            .magazine-container {
                padding: 20px;
            }
            .magazine-container h1 {
                font-size: 2rem;
            }
            .button-group {
                flex-direction: column; /* Stack buttons on mobile */
                gap: 15px;
            }
        }
