        body { 
            font-family: "M PLUS Rounded 1c", sans-serif; 
            background-color: #FFFFFF; 
            color: #000000;
            overflow-x: hidden;
        }

        /* Fixed Image / Scrolling Text Card Logic */
        .story-container {
            position: relative;
            height: 120vh; /* Extra height for scrolling effect */
            margin-bottom: 5vh;
        }
        .fixed-bg {
            position: sticky;
            top: 100px;
            height: 70vh;
            width: 100%;
            z-index: 1;
            overflow: hidden;
            border-radius: 8px;
        }
        .scrolling-card {
            position: relative;
            z-index: 2;
            margin-top: -30vh;
            margin-left: auto;
            margin-right: auto;
            width: 80%;
            max-width: 600px;
            background: white;
            padding: 3rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-radius: 4px;
        }

        /* Social Bar */
        .social-bar {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 100;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Interactive Card */
        .expand-card {
            transition: all 0.5s ease;
            cursor: pointer;
            overflow: hidden;
        }
        .expand-card:hover {
            transform: translateY(-10px);
        }
        .card-details {
            max-height: 0;
            transition: max-height 0.8s ease;
        }
        .expand-card.active .card-details {
            max-height: 300px;
            margin-top: 1rem;
        }

        /* Header link hover */
        .nav-link {
            position: relative;
            transition: opacity 0.3s;
        }
        .nav-link:hover {
            opacity: 0.7;
        }

        #modal-overlay {
            backdrop-filter: blur(10px);
            display: none;
        }
        
        .hamburger-line {
            width: 30px;
            height: 3px;
            background: white;
            margin: 6px 0;
            transition: 0.4s;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .scrolling-card { width: 95%; padding: 1.5rem; }
            .fixed-bg { height: 50vh; }
            .story-container { height: 100vh; }
        }
