        :root {
            --cream: #FCFFC1;
            --orange: #EB5B00;
            --cyan: #08C2FF;
            --dark: #17313E;
        }

        body {
            background-color: var(--cream);
            color: var(--dark);
            font-family: 'Inter', sans-serif;
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .font-snow { font-family: 'Snowburst One', system-ui; }

        /* Navigation Animations */
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            text-shadow: 2px 2px 0px var(--orange);
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--orange);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* Hero Floating Cards */
        .hero-card {
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(2deg); }
            50% { transform: translateY(-20px) rotate(-2deg); }
        }

        /* Course Card Effects */
        .course-card {
            transition: all 0.4s ease;
            background: white;
            border: 3px solid transparent;
        }
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(235, 91, 0, 0.15);
            border-color: var(--cyan);
        }
        .course-card img { transition: transform 0.5s ease; }
        .course-card:hover img { transform: scale(1.1); }

        /* Timeline Path */
        .timeline-line {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 2s ease-out;
        }
        .timeline-line.active { stroke-dashoffset: 0; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--cream); }
        ::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 5px; }

        .btn-orange {
            background: var(--orange);
            color: white;
            transition: all 0.3s ease;
        }
        .btn-orange:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(235, 91, 0, 0.3);
        }

        .btn-cyan-outline {
            border: 3px solid var(--cyan);
            color: var(--cyan);
            transition: all 0.3s ease;
        }
        .btn-cyan-outline:hover {
            background: var(--cyan);
            color: var(--cream);
        }

        /* View Transitions */
        .page-view {
            animation: fadeIn 0.6s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
    