        /* Reset and base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
            background-color: #000000;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
        }

        /* Container for vertical centering and spacing */
        .manifesto {
            text-align: center;
            max-width: 1200px;
            width: 100%;
        }

        /* Top tagline - "WE WILL DO IT OURSELVES" */
        .tagline-top {
            color: #ff6b4a;
            font-size: clamp(0.9rem, 2vw, 1.4rem);
            font-weight: 400;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        /* Main section items container */
        .sections {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        /* Individual section item - outlined style */
        .section-item {
            font-size: clamp(3rem, 10vw, 7.5rem);
            font-weight: 900;
            line-height: 1.05;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            
            /* Outlined text effect */
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
            text-stroke: 2px rgba(255, 255, 255, 0.9);
            
            /* Interaction states */
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        /* Hover effect - fill with orange */
        .section-item:hover {
            color: #ff6b4a;
            -webkit-text-stroke: 2px #ff6b4a;
            text-stroke: 2px #ff6b4a;
            text-shadow: 0 0 40px rgba(255, 107, 74, 0.4);
        }

        /* Active/highlighted section - solid orange */
        .section-item.active {
            color: #ff6b4a;
            -webkit-text-stroke: 0;
            text-stroke: 0;
            text-shadow: 0 0 60px rgba(255, 107, 74, 0.3);
        }

        /* Bottom tagline - "NEVER GIVE UP" */
        .tagline-bottom {
            color: #ff6b4a;
            font-size: clamp(0.8rem, 1.8vw, 1.2rem);
            font-weight: 400;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            margin-top: 50px;
        }

        /* Links should inherit styling */
        .section-item a {
            color: inherit;
            text-decoration: none;
            -webkit-text-stroke: inherit;
            text-stroke: inherit;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            body {
                padding: 40px 15px;
            }

            .section-item {
                -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.9);
                text-stroke: 1.5px rgba(255, 255, 255, 0.9);
            }

            .section-item:hover,
            .section-item.active {
                -webkit-text-stroke: 1.5px #ff6b4a;
                text-stroke: 1.5px #ff6b4a;
            }

            .section-item.active {
                -webkit-text-stroke: 0;
                text-stroke: 0;
            }

            .tagline-top {
                letter-spacing: 0.2em;
                margin-bottom: 30px;
            }

            .tagline-bottom {
                letter-spacing: 0.25em;
                margin-top: 35px;
            }
        }

        @media (max-width: 480px) {
            .section-item {
                letter-spacing: -0.03em;
            }
        }
