        /* Scroll Presentation Container */
        .scroll-presentation {
            position: relative;
            background: var(--secondary);
        }

        /* Scroll Indikator */
        .scroll-indicator {
            position: fixed;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .indicator-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .indicator-dot.active {
            background: #00ff88;
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
        }

        .indicator-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 25px;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: #00ff88;
            transition: width 0.3s ease;
        }

        .indicator-dot.active::before {
            width: 15px;
        }

        /* Slide Sections */
        .slide {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 5%;
        }

        .slide-content {
            max-width: 800px;
            text-align: left;
            color: white;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }

        .slide h1 {
            /* font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: -0.02em; */
        }

        .slide h3 {
            color: var(--tertiary);
        }

        .slide p {
            /* font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 1rem; */
        }

        /* Background Pattern */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(45deg, transparent 49%, rgba(0, 255, 136, 0.03) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(0, 255, 136, 0.03) 50%, transparent 51%);
            background-size: 40px 40px;
            z-index: -1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .scroll-indicator {
                right: 20px;
            }

            .slide-content {
                text-align: center;
            }
        }
        .scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
