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

        body {
            overflow-x: hidden; 
            background-color: #ffffff; 
            color: #111827; 
            font-family: 'Lato', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            scroll-behavior: smooth;
        }


        /* --- Methodology Page Layout (Hero Section) --- */
        .methodology-header {
            position: relative;
            padding: 80px 20px; 
            background-color: #000;
            text-align: center;
            border-bottom: 4px solid #FCBA04;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 200px;
            overflow: hidden;
            text-align: center; /* Center alignment for the title text */

        }

        /* Hero Image Layer - Default/Mobile setup */
        .methodology-header::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://res.cloudinary.com/dhlerngui/image/upload/v1778255099/Untitled_design_wyoru1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        /* Fade to Black Layer - Default/Mobile setup */
        .methodology-header::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 100%);
            z-index: 2;
        }

        @media (min-width: 1024px) {
            .methodology-header { 
                padding: 180px 20px;
                min-height: 400px;
                 text-align: center; /* Center alignment for the title text */
            }
            /* Desktop Width Adjustment: Image only takes up 50% */
            .methodology-header::before {
                width: 50%;
            }
            /* Desktop Fade Adjustment: Solid black for 50%, then fade into image */
            .methodology-header::after {
                background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 85%);
            }
            .header-text-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                width: 100%;
                padding: 0 1.5rem;
            }
        }

        /* Content wrapper to stay above the background layers */
        .header-text-wrapper {
            position: relative;
            z-index: 3;
        }

        .methodology-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 100;
            letter-spacing: clamp(0.2rem, 2vw, 1rem);
            font-size: clamp(2.5rem, 10vw, 4.5rem);
            color: #ffffff;
            text-transform: uppercase;
            text-shadow: 0 4px 15px rgba(0,0,0,1);
            margin-bottom: 15px;
        }

        /* Section: Site & Creators Introduction */
        .site-intro {
            padding: 80px 1.5rem;
            background-color: #f8fafc;
        }

        .intro-flex-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            text-align: center;
        }

        .intro-content {
            flex: 1.2;
        }

        .intro-label {
            font-family: 'Oswald', sans-serif;
            color: #0b1426;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            display: block;
            margin-bottom: 20px;
        }

        .intro-text {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #374151;
            font-weight: 300;
        }

        /* Faint info box for site details */
        .facts-box-wrapper {
            flex: 0.8;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.03); /* Very faint background */
            padding: 35px;
            border: none; 
            text-align: left;
            border-radius: 4px;
        }

        .facts-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #4b5563;
            font-weight: 400;
        }

        .facts-bullet-list {
            margin-top: 20px;
            padding-left: 20px;
            list-style-type: square;
        }

        .facts-bullet-list li {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 8px;
            font-weight: 700; /* Bold text as requested */
        }

        .facts-bullet-list li::marker {
            color: #FCBA04; /* Yellow accent color for bullet points */
        }


        @media (min-width: 1024px) {
            .intro-flex-wrapper {
                flex-direction: row;
                text-align: left;
                align-items: center;
            }
        }

        /* Mid-page Methodology Sub-header */
        .mid-page-header {
            padding: 100px 1.5rem 20px;
            text-align: center;
            background-color: #ffffff;
        }

        .mid-page-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #0b1426;
            position: relative;
            display: inline-block;
        }

        .mid-page-header h2::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #FCBA04;
        }

        /* Container and General Section Formatting */
        .methodology-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 1.5rem 80px;
        }

        .section-header-block {
            margin-bottom: 40px;
        }

        .section-number {
            font-family: 'Oswald', sans-serif;
            color: #FCBA04;
            font-size: 0.85rem;
            letter-spacing: 2px;
            display: block;
            margin-bottom: 5px;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #0b1426;
        }

        /* Protocol 01: Data Scope - High Impact List */
        .scope-v3-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 100px;
            border-left: 4px solid #FCBA04;
            padding-left: 2.5rem;
        }
        .scope-v3-item {
            position: relative;
        }
        .scope-v3-item h3 {
            font-family: 'Oswald', sans-serif;
            color: #0b1426;
            text-transform: uppercase;
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 0.75rem;
        }
        .scope-v3-item p {
            font-size: 1.15rem;
            line-height: 1.7;
            color: #374151;
            font-weight: 400;
        }

        .athlete-id-description {
            color:white;
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: 300;

        }


        .athlete-id-description a {
        color:white;
        text-decoration:none;
        border-bottom: 2px solid #FCBA04;

        }
        /* Protocol 02: Athlete Identification - Unique Cards */
        .id-section-wrapper {
            width: 100%;
            padding: 100px 0;
            margin-bottom: 100px;
            background-color: #000;
            background-image: 
                linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%),
                url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto,w_1920/v1778254589/pexels-victorfreitas1-2261477_i9nyyk.jpg');
            background-size: cover;
            background-position: center top; 
            background-repeat: no-repeat;
        }

        .id-inner-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .id-section-wrapper .section-title { color: #ffffff; }

        .id-cards-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        @media (min-width: 768px) { .id-cards-container { grid-template-columns: repeat(3, 1fr); } }

        .id-unique-card {
            background-color: rgba(255, 255, 255, 0.95);
            border-top: 4px solid #FCBA04;
            padding: 40px 30px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        .id-unique-card:hover { transform: translateY(-5px); background-color: #ffffff; }

        .id-unique-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #0b1426;
            text-transform: uppercase;
        }

        .id-unique-card p { font-size: 1rem; color: #4b5563; line-height: 1.6; }

        /* Protocol 03: Athlete Verification - Checklist style */
        .verification-section {
            background-color: #ffffff;
            padding: 60px 0;
            margin-bottom: 100px;
            border-bottom: 1px solid #e2e8f0;
        }

        .verification-content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        @media (min-width: 1024px) { .verification-content-wrapper { grid-template-columns: 350px 1fr; } }

        .verification-summary h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #0b1426;
        }

        .verification-summary a {
            text-decoration: none;
            border-bottom: 2px solid #FCBA04;
            color:#64748b;
        }

        .link-description {
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: 400;
            margin-bottom:30px;

        }


        .verification-checklist {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media (min-width: 640px) { .verification-checklist { grid-template-columns: 1fr 1fr; } }

        .check-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            padding: 20px;
            background: #f1f5f9;
        }

        .check-icon { color: #FCBA04; font-size: 1.2rem; margin-top: 3px; }

        /* Protocol 04: Link Verification - Split Layout */
        .links-section {
            margin-bottom: 80px;
            padding-top: 20px;
        }

        .links-pillar-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        @media (min-width: 1024px) {
            .links-pillar-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .pillar-box {
            padding: 40px;
            height: 100%;
        }

        .pillar-sources {
            border: 1px solid #e2e8f0;
            background-color: #ffffff;
        }

        .pillar-archives {
            background-color: #0b1426;
            color: #ffffff;
        }

        .pillar-title {
            font-family: 'Oswald', sans-serif;
            font-size: 1.4rem;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pillar-sources .pillar-title { color: #0b1426; }
        .pillar-archives .pillar-title { color: #FCBA04; }

        .source-list {
            list-style: none;
        }

        .source-item {
            padding: 15px 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            gap: 15px;
            color: #4b5563;
            font-weight: 500;
        }

        .source-item:last-child { border-bottom: none; }

        .source-dot {
            width: 8px;
            height: 8px;
            background-color: #FCBA04;
            flex-shrink: 0;
        }

        .archive-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .archive-note {
            display: block;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #FCBA04;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .logo-text { font-size: 1rem; letter-spacing: 3px; }
            .methodology-title { font-size: 2rem; }
            .mid-page-header h2 { font-size: 2rem; }
            .intro-text { font-size: 1.05rem; }
            .scope-v3-container { padding-left: 1.5rem; }
            .id-section-wrapper { 
                padding: 60px 0;
                background-position: center top; 
                background-image: 
                    linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 100%),
                    url('https://res.cloudinary.com/dhlerngui/image/upload/f_auto,q_auto,w_1000/v1778254589/pexels-victorfreitas1-2261477_i9nyyk.jpg');
            }
            .pillar-box { padding: 30px 20px; }
        }

