:root {
            /* Trigonometry Amber Theme */
            --color-amber: #ffb000;
            --color-amber-glow: rgba(255, 176, 0, 0.35);
            --color-accent: #ffb000;
            --color-accent-glow: rgba(255, 176, 0, 0.35);

            --color-real: #38bdf8; /* Cyan for Real */
            --color-imag: #f43f5e; /* Rose for Imaginary */
            --color-spiral: #a855f7; /* Purple for Taylor Spiral */
        }

        .sidebar-drawer .syllabus-item.active a {
            background: var(--color-amber) !important;
            box-shadow: 0 4px 20px var(--color-amber-glow) !important;
            color: var(--bg-color) !important;
        }

        .sidebar-drawer .syllabus-item.active a .syllabus-title,
        .sidebar-drawer .syllabus-item.active a .syllabus-desc {
            color: var(--bg-color) !important;
        }

        section {
            margin-bottom: 6rem;
            scroll-margin-top: 2rem;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.75rem;
        }

        .section-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: var(--color-amber);
            background: rgba(255, 176, 0, 0.1);
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid rgba(255, 176, 0, 0.2);
            text-shadow: 0 0 5px var(--color-amber-glow);
        }

        .section-header h2 {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .section-intro {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.6;
            font-size: 1rem;
            max-width: 850px;
        }

        .equation-box {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.015);
            border-radius: 16px;
            border: 1px dashed rgba(255, 255, 255, 0.06);
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .slider-group {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .slider-row {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .slider-label {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .slider-row input[type="range"] {
            -webkit-appearance: none;
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            outline: none;
            margin: 8px 0;
        }

        .slider-row.angle-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--color-amber);
            cursor: pointer;
            box-shadow: 0 0 8px var(--color-amber);
        }
        .slider-row.terms-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--color-spiral);
            cursor: pointer;
            box-shadow: 0 0 8px var(--color-spiral);
        }

        .formula-steps {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            padding: 1.25rem;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            line-height: 1.6;
            color: var(--text-color);
            border: 1px solid var(--card-border);
        }

        .identity-highlight {
            background: linear-gradient(135deg, rgba(255, 176, 0, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
            border: 1px solid rgba(255, 176, 0, 0.25);
            box-shadow: 0 0 15px rgba(255, 176, 0, 0.15);
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: 1rem;
            display: none;
            transition: all var(--transition-speed) ease;
        }

        .math-symbol {
            font-style: italic;
        }

        .quiz-option {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quiz-option:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateX(4px);
        }

        .quiz-option.correct {
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.3);
            color: #10b981;
        }

        .quiz-option.incorrect {
            background: rgba(244, 63, 94, 0.08);
            border-color: rgba(244, 63, 94, 0.3);
            color: #f43f5e;
        }

        .quiz-feedback {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--card-border);
            font-size: 0.9rem;
            line-height: 1.5;
            display: none;
        }

        .canvas-label {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: var(--text-color);
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-family: 'JetBrains Mono', monospace;
            border: 1px solid var(--card-border);
            pointer-events: none;
            z-index: 10;
        }