        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        body {
            font-family: 'Segoe UI Light', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #000;
            color: #fff;
            overflow: hidden;
            height: 100vh;
        }
        
        /*
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont,
                        'Segoe UI', Roboto, Ubuntu, Cantarell,
                        'Helvetica Neue', Arial, sans-serif;
            background: #000;
            color: #fff;
            overflow: hidden;
            height: 100vh;
        }
        */

        .panorama-header {
            position: fixed;
            top: 30px;
            left: 36px;
            font-size: 72px;
            font-weight: 200;
            letter-spacing: -3px;
            white-space: nowrap;
            pointer-events: none;
            z-index: 10;
            display: flex;
        }

        .header-segment {
            margin-right: 60px;
            transition: opacity 0.3s ease, color 0.3s ease;
        }

        .header-segment.dim {
            opacity: 0.3;
        }

        .header-segment.active {
            color: var(--accent-color);
        }


        .scroll-container {
            display: flex;
            height: 100vh;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .scroll-container::-webkit-scrollbar {
            display: none;
        }

        .page {
            min-width: 100vw;
            height: 100vh;
            padding: 180px 40px 60px 40px;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            position: relative;
            scrollbar-width: none;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 80px, black 160px, black 100%);
            mask-image: linear-gradient(to bottom, transparent 0%, transparent 80px, black 160px, black 100%);
        }

        .page::-webkit-scrollbar {
            display: none;
        }

        h2 {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 30px;
            opacity: 0.7;
        }

        p {
            font-size: 20px;
            font-weight: 300;
            max-width: 1200px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .large-text {
            font-size: 28px;
            font-weight: 200;
            max-width: 800px;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .list-item {
            margin-bottom: 40px;
            max-width: 1100px;/*700px;*/
        }

        .list-item h3 {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 8px;
        }

        .date {
            font-size: 16px;
            opacity: 0.5;
            font-weight: 300;
            margin-bottom: 12px;
        }

        .skill-category {
            margin-bottom: 35px;
            max-width: 1100px;/*600px;*/
        }

        .skill-category h3 {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .skill-category p {
            font-size: 18px;
            opacity: 0.7;
        }

        .project-item {
            margin-bottom: 45px;
            max-width: 1100px;/*700px;*/
            font-size: 20px
        }

        .project-item h3 {
            font-size: 28px;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }

        .contact-link {
            display: block;
            font-size: 22px;
            font-weight: 300;
            text-decoration: none;
            color: inherit;
            margin-bottom: 25px;
            opacity: 0.7;
            transition: opacity 0.2s ease;
            max-width: fit-content;
        }

        .contact-link:hover {
            opacity: 1;
        }

        .flag-subtitle {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .flag-subtitle img {
            height: 18px;
            width: auto;
            opacity: 1;
        }

        .flag-subtitle .dot {
            opacity: 0.5;
        }

        .flag-subtitle {
            opacity: 1;
        }

        .accordion {
            max-width: 900px;
            margin-top: 30px;
        }

        .accordion-title {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .accordion-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .accordion-header {
            width: 100%;
            background: none;
            border: none;
            color: inherit;
            text-align: left;
            font-size: 22px;
            font-weight: 300;
            padding: 18px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-header:hover {
            opacity: 0.85;
        }

        .accordion-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .accordion-content p {
            font-size: 18px;
            opacity: 0.75;
            padding-bottom: 18px;
        }

        .accordion-item.open .accordion-content {
            max-height: 500px;
        }

        .accordion-item.open .accordion-icon {
            transform: rotate(45deg);
        }



        @media (max-width: 768px) {
            .panorama-header { 
                font-size: 48px; 
                top: 20px;
                left: 25px;
            }
            .page { padding: 120px 25px 40px 25px; }
            .large-text { font-size: 22px; }
        }
