/* FontAwesome Icons (for footer) */
        @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;
        }

        /* ----- 2. Logo Animation (No Header) ----- */
        .logo-container {
            padding: 20px 25px;
            background-color: var(--color-secondary-black);
            border-bottom: 1px solid #333;
            overflow: hidden;
        }
        
        .logo-link-animated {
            display: inline-block;
        }

        .logo-img-animated {
            height: 85px;
            width: auto;
            object-fit: contain;
            animation: slideInFromLeft 1.2s ease-out forwards;
        }
        
        @keyframes slideInFromLeft {
            0% { transform: translateX(-100%); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }

        /* ----- 3. Two-Column Ratings Layout ----- */
        .ratings-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            gap: 50px;
        }
        
        .ratings-left {
            flex: 1.5; /* Give text more space */
        }
        
        .ratings-right {
            flex: 1; 
            padding-top: 20px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }
        
        .ratings-left h1 {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--color-text-primary);
            margin-bottom: 25px;
            border-bottom: 2px solid var(--color-primary-red);
            padding-bottom: 10px;
        }
        
        .ratings-left h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-top: 40px;
            margin-bottom: 15px;
        }
        
        .ratings-left p {
            font-size: 1rem;
            color: var(--color-text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .ratings-left ul {
            list-style-type: none;
            padding-left: 0;
            color: var(--color-text-secondary);
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .ratings-left li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
        
        .ratings-left li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-primary-red);
            font-size: 1.2rem;
            line-height: 1.6;
        }
        
        .ratings-left strong {
            font-weight: 700;
            color: var(--color-text-primary);
        }
        
        /* NEW: Hide mobile logo on desktop */
        .mobile-rating-logo {
            display: none; 
        }

        /* ----- 4. Rating Logos (Right Column - Desktop) ----- */
        .ratings-logo-container {
            display: flex;
            flex-direction: column; /* Stack vertically */
            align-items: center;    /* Center horizontally */
            gap: 30px;              /* Vertical spacing */
            padding: 20px 0;
        }
        
        .rating-logo {
            width: auto;
            max-width: 250px;
            height: auto; 
            object-fit: contain;
            opacity: 0; /* Start hidden for animation */
        }

        /* ----- 5. Footer ----- */
        .main-footer {
            background-color: var(--color-secondary-black);
            border-top: 1px solid #333;
            padding: 40px 20px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }
        
        .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);
        }
        
        .social-links a:hover {
            color: var(--color-primary-red);
        }

        .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);
        }
        
        /* ----- 6. Media Queries ----- */
        @media (max-width: 768px) {
            .ratings-container {
                flex-direction: column;
                margin-top: 20px;
                gap: 0; /* Let headers control spacing */
            }
            
            /* 1. Hide the entire desktop right column */
            .ratings-right {
                display: none;
            }
            
            /* 2. Style the new mobile layout */
            .rating-header {
                display: flex;
                justify-content: space-between; /* Title on left, logo on right */
                align-items: center; /* Vertically center them */
                gap: 15px; /* Space between */
            }

            /* 3. Show and style the mobile logo */
            .mobile-rating-logo {
                display: block; /* Show the logo */
                flex-shrink: 0; /* Don't let it shrink */
                width: auto; /* Noticeable but not too big */
                height: 70px;
                object-fit: contain;
                /* Static - no animations on mobile */
                opacity: 1;
                transform: none;
                animation: none;
            }

            /* 4. Adjust h2 styles to fit */
            .ratings-left h2 {
                font-size: 1.3rem;
                flex-grow: 1; /* Let the title take up the remaining space */
            }

            .ratings-left h1 {
                font-size: 2rem;
            }

            .logo-img-animated {
                height: 70px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                margin: 0 auto 20px;
            }
            .social-links {
                justify-content: center;
            }
        }
        
        /* ----- 7. Content Animations (Desktop Only) ----- */
        
        @keyframes slideUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-slide-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out 0.8s forwards;
        }

        /* Desktop logo animation */
        .animate-pop-up {
            opacity: 0;
            transform: translateY(50px);
            animation: slideUp 1s ease-out forwards;
        }
        
        /* Staggered delays for the logos (Desktop) */
        .ratings-right .rating-logo:nth-child(1) { animation-delay: 1.0s; }
        .ratings-right .rating-logo:nth-child(2) { animation-delay: 1.2s; }
        .ratings-right .rating-logo:nth-child(3) { animation-delay: 1.4s; }