/* 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. Terms Content Area ----- */
        .terms-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
            z-index: 2;
        }
        
        .terms-container 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;
        }
        
        .terms-container h2 {
            /* This is your "bolded subtitle" */
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-text-primary);
            margin-top: 40px;
            margin-bottom: 15px;
        }
        
        .terms-container p {
            /* This is your "paragraph" */
            font-size: 1rem;
            color: var(--color-text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .terms-container ul {
            list-style-position: inside;
            color: var(--color-text-secondary);
            margin-left: 10px;
            margin-bottom: 20px;
        }
        
        .terms-container li {
            margin-bottom: 10px;
            line-height: 1.7;
        }

        /* ----- 3. 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);
        }

        .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);
        }

        /* ----- 4. Background Scroller (MODIFIED) ----- */
        .background-scroller {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 600px; 
            z-index: -1; 
            overflow: hidden;
            filter: blur(5px) opacity(0.3);
            
            mask-image: linear-gradient(
                to bottom, 
                black 20%,
                transparent 80%
            );
            -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 80%);
        }

        .scroller-track {
            display: flex;
            width: calc(20 * 400px);
            animation: scrollHorizontal 120s linear infinite;
        }

        .scroller-track img {
            width: 400px;
            height: 600px;
            object-fit: cover;
            flex-shrink: 0;
        }

        @keyframes scrollHorizontal {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-10 * 400px));
            }
        }
        
        /* ----- 5. Media Queries ----- */
        @media (max-width: 768px) {
            .terms-container h1 {
                font-size: 2rem;
            }
            .terms-container h2 {
                font-size: 1.3rem;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-logo {
                margin: 0 auto 20px;
            }
            .social-links {
                justify-content: center;
            }
        }
        