
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #000000;
            color: #FFFFFF;
            font-family: 'Oxanium', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #C0C0C0, #D8D8D8, #F0F0F0);
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #D8D8D8, #F0F0F0, #FFFFFF);
            box-shadow: 0 0 10px rgba(192, 192, 192, 0.4),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        
        ::-webkit-scrollbar-thumb:active {
            background: linear-gradient(180deg, #A0A0A0, #C0C0C0, #D8D8D8);
        }
        
        html {
            scrollbar-width: thin;
            scrollbar-color: #C0C0C0 rgba(0, 0, 0, 0.2);
        }
        
        h1 {
            font-family: 'Michroma', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 2.5rem;
            color: #FFFFFF;
            line-height: 1.2;
        }
        
        h2 {
            font-family: 'Michroma', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.8rem;
            color: #FFFFFF;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
        }
        
        h3 {
            font-family: 'Michroma', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 1.4rem;
            color: #FFFFFF;
            margin-bottom: 20px;
        }
        
        h4 {
            font-family: 'Oxanium', sans-serif;
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0.5px;
            font-size: 1.2rem;
            color: #FFFFFF;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        h5 {
            font-family: 'Oxanium', sans-serif;
            font-weight: 500;
            text-transform: none;
            letter-spacing: 0.3px;
            font-size: 1.1rem;
            color: #FFFFFF;
            margin-bottom: 8px;
        }
        
        h6 {
            font-family: 'Oxanium', sans-serif;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 5px;
        }
        
        p {
            font-family: 'Oxanium', sans-serif;
            letter-spacing: 0.3px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        @media (max-width: 600px) {
            h1 {
              font-size: 1.5rem;
              letter-spacing: 1px;
            }
            h2 {
              font-size: 1.1rem;
              letter-spacing: 1px;
            }
            h3 {
              font-size: 1rem;
              letter-spacing: 0.8px;
            }
            h4 {
              font-size: 0.95rem;
            }
            h5 {
              font-size: 0.9rem;
            }
            h6 {
              font-size: 0.85rem;
              letter-spacing: 0.6px;
            }
            p {
              font-size: 0.98rem;
              line-height: 1.5;
            }
          }
        
        .container {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        header {
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid #1A1A1A;
            margin-bottom: 60px;
            font-family: 'Oxanium', sans-serif;
        }
        
        .subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            color: #B8B8B8;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            font-size: 14px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .date {
            position: relative;
        }
        
        .date::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background: #555;
            border-radius: 50%;
        }
        
        main {
            padding-bottom: 80px;
        }
        
        section {
            margin-bottom: 80px;
        }
    
        p.lead {
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
            line-height: 1.6;
            color: #FFFFFF;
            margin-bottom: 40px;
            font-weight: 400;
            font-family: 'Oxanium', sans-serif;
        }
        
        ul {
            margin: 24px 0;
            padding-left: 0;
            list-style: none;
        }
        
        li {
            margin-bottom: 16px;
            padding-left: 24px;
            position: relative;
            line-height: 1.7;
        }
        
        li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #666;
            font-weight: bold;
        }
        
        .image-placeholder {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            overflow: hidden;
            position: relative;
            background-color: #1a1a1a;
            transition: all 0.3s ease;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            color: #666;
            font-style: italic;
        }
        
        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .image-placeholder figcaption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 0.8rem 1rem;
            font-size: 0.9rem;
            text-align: center;
            opacity: 0.9;
            transition: all 0.3s ease;
        }
        
        .image-placeholder:hover img {
            transform: scale(1.02);
        }
        
        .image-placeholder:hover figcaption {
            background: rgba(0, 0, 0, 0.9);
        }
        
        .highlight {
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
            background: rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            padding: 32px;
            margin: 48px 0;
        }
        
        .quote {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-style: italic;
            line-height: 1.5;
            text-align: center;
            margin: 48px 0;
            color: #E0E0E0;
            padding: 0 40px;
        }
        


        .card {
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            padding: 32px;
            margin: 32px 0;
            transition: all 0.3s ease;
        }

        .card:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(192, 192, 192, 0.3);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin: 48px 0;
        }

        .stat-item {
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(192, 192, 192, 0.3);
        }

        .stat-number {
            font-family: 'Michroma', sans-serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #C0C0C0;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .stat-label {
            font-family: 'Oxanium', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .process-diagram {
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            padding: 32px;
            margin: 48px 0;
            text-align: center;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin: 32px 0;
        }

        .process-step {
            flex: 1;
            min-width: 120px;
            padding: 20px 16px;
            border: 1px solid rgba(192, 192, 192, 0.2);
            clip-path: polygon(4px 0%, 100% 0%, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0% 100%, 0% 4px);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(8px);
            font-size: 0.9rem;
            color: #FFFFFF;
            text-align: center;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(192, 192, 192, 0.1);
        }

        .process-step small {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }

        .process-arrow {
            color: #C0C0C0;
            font-size: 1.5rem;
            font-family: 'Michroma', sans-serif;
        }

        .emphasis {
            color: #C0C0C0;
            font-weight: 600;
        }

        .key-point {
            background: rgba(192, 192, 192, 0.05);
            border-left: 4px solid #C0C0C0;
            padding: 20px;
            margin: 24px 0;
            font-style: italic;
        }

        .quote-source {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #B8B8B8;
            font-style: normal;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .link-placeholder {
            color: #C0C0C0;
            text-decoration: underline;
            text-decoration-color: rgba(192, 192, 192, 0.5);
            transition: all 0.3s ease;
        }

        .link-placeholder:hover {
            color: #FFFFFF;
            text-decoration-color: #FFFFFF;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            header {
                padding: 60px 0 40px;
                margin-bottom: 40px;
            }
            
            section {
                margin-bottom: 60px;
            }
            
            .highlight, .card {
                padding: 24px;
                margin: 32px 0;
            }
            
            .quote {
                padding: 0 20px;
                margin: 32px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .process-steps {
                flex-direction: column;
            }

            .process-arrow {
                transform: rotate(90deg);
            }
        }
        
        @media (max-width: 600px) {
            body {
                font-size: 15px;
            }
            
            .container {
                padding: 0 16px;
            }
            
            header {
                padding: 40px 0 32px;
                margin-bottom: 32px;
            }
            
            section {
                margin-bottom: 48px;
            }
            
            .author-info {
                flex-direction: column;
                gap: 8px;
            }
            
            .date::before {
                display: none;
            }

            .fade-in {
                padding: 16px;
                margin: 16px 0;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
    
       
.content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}