/* Google Fonts & Reset */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

                :root {
            --bg-obsidian: #020508;
            --bg-sidebar: #05080c;
            --bg-card: rgba(4, 15, 8, 0.45);
            --border-card: rgba(0, 255, 102, 0.12);
            --color-accent: #00ff66;
            --color-secondary: #00cc52;
            --color-pink: #00ffcc;
            --color-success: #00ff66;
            --color-warning: #f59e0b;
            --color-danger: #ef4444;
            --text-primary: #e1ffd6;
            --text-secondary: #729c7b;
            --text-muted: #3e5f46;
            --border-radius-lg: 12px;
            --border-radius-md: 8px;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

                body {
            background-color: var(--bg-obsidian);
            color: var(--text-primary);
            font-family: 'JetBrains Mono', 'Inter', monospace;
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            position: relative;
        }

        /* Ambient Blobs in Background */
        .ambient-blob-1 {
            position: fixed;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 255, 102, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: none;
        }

        .ambient-blob-2 {
            position: fixed;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 255, 204, 0.07) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: none;
        }

        @keyframes pulse-blob {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15) translate(30px, -30px); }
        }

        /* App Layout Container */
        .app-container {
            display: flex;
            width: 100%;
            min-height: 100vh;
            position: relative;
            z-index: 1;
        }

        /* Sidebar CSS */
        .sidebar {
            width: 280px;
            background-color: var(--bg-sidebar);
            border-right: 1px solid var(--border-card);
            display: flex;
            flex-direction: column;
            padding: 30px 20px;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 100;
            transition: var(--transition);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 40px;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
        }

        .logo-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--bg-obsidian);
        }

        .logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-grow: 1;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: var(--border-radius-md);
            border: 1px solid transparent;
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
        }

        .nav-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            transition: transform 0.2s ease;
        }

        .nav-link:hover {
            color: var(--text-primary);
            background: rgba(0, 255, 102, 0.04);
            border-color: rgba(0, 255, 102, 0.1);
            transform: translateX(4px);
        }

        .nav-link:hover svg {
            transform: scale(1.1);
        }

        .nav-link.active {
            color: var(--color-accent);
            background: rgba(6, 182, 212, 0.08);
            border-color: rgba(6, 182, 212, 0.15);
            box-shadow: 0 4px 20px rgba(6, 182, 212, 0.05);
            font-weight: 600;
        }

        .sidebar-footer {
            padding-top: 20px;
            border-top: 1px solid var(--border-card);
            text-align: center;
        }

        .sidebar-footer-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }

        /* Main Content Container */
        .main-content {
            flex-grow: 1;
            margin-left: 280px;
            padding: 20px 25px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            max-width: 100%;
        }

        /* Header UI */
        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .dashboard-title h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .dashboard-title p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 4px;
        }

        /* Progress Card Widget */
        .progress-widget {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            padding: 16px 24px;
            min-width: 320px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .progress-circle-container {
            position: relative;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .progress-svg {
            transform: rotate(-90deg);
            width: 54px;
            height: 54px;
        }

        .progress-bg-circle {
            fill: none;
            stroke: rgba(255, 255, 255, 0.05);
            stroke-width: 5;
        }

        .progress-bar-circle {
            fill: none;
            stroke: var(--color-accent);
            stroke-width: 5;
            stroke-dasharray: 154;
            stroke-dashoffset: 154;
            stroke-linecap: round;
            transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .progress-circle-text {
            position: absolute;
            font-family: 'Outfit', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .progress-info {
            flex-grow: 1;
        }

        .progress-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .progress-bar-text {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 2px;
        }

        /* Dashboard Tab Contents */
        .tab-panel {
            display: none;
            animation: tab-fade-in 0.05s ease-out forwards;
            position: relative;
        }

        .tab-panel.active {
            display: block;
        }

        @keyframes tab-fade-in {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Glassmorphism Card Style */
        .glass-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            padding: 20px;
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            opacity: 0.2;
            transition: var(--transition);
        }

        .glass-card:hover::before {
            opacity: 0.8;
        }
        /* Overview Tab Layout */
        .overview-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 16px;
        }

        .stat-card-group {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
margin-top: 25px;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--border-radius-md);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
        }

        .stat-box:hover {
            background: rgba(6, 182, 212, 0.02);
            border-color: rgba(6, 182, 212, 0.1);
        }

        .stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1.1;
        }

        .stat-lbl {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 6px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .welcome-card h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .welcome-card p {
            color: var(--text-secondary);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .tips-list {
            margin-top: 20px;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tip-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .tip-icon {
            color: var(--color-secondary);
            font-weight: bold;
            margin-top: 2px;
        }

        /* Roadmap Timeline Accordion Layout */
        .roadmap-timeline {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .timeline-stage-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            transition: var(--transition);
        }

        .timeline-stage-card:hover {
            border-color: rgba(6, 182, 212, 0.25);
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
        }

        .stage-header-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 30px;
            cursor: pointer;
            -webkit-user-select: none;
            -webkit-user-select: none;
            user-select: none;
            background: rgba(255, 255, 255, 0.01);
            transition: var(--transition);
        }

        .stage-header-trigger:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .stage-header-left {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .stage-num-badge {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            color: var(--bg-obsidian);
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(6, 182, 212, 0.2);
        }

        .stage-header-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .stage-header-info .stage-duration {
            font-size: 0.85rem;
            color: var(--color-warning);
            font-weight: 600;
            margin-top: 2px;
        }

        .stage-header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stage-progress-pill {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-secondary);
            padding: 4px 12px;
        }

        .accordion-arrow {
            width: 24px;
            height: 24px;
            fill: var(--text-secondary);
            transition: var(--transition);
        }

        .timeline-stage-card.open .accordion-arrow {
            transform: rotate(180deg);
            fill: var(--color-accent);
        }

        .stage-body-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 1px solid transparent;
            background: rgba(0, 0, 0, 0.15);
        }

        .timeline-stage-card.open .stage-body-content {
            max-height: 1200px;
            border-color: var(--border-card);
        }

        .stage-body-wrapper {
            padding: 20px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .skills-checklist-col h4, .resources-col h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .skills-checklist-col h4 svg, .resources-col h4 svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .checklist-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .checklist-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.02);
            border-radius: var(--border-radius-md);
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
            -webkit-user-select: none;
            user-select: none;
        }

        .checklist-item:hover {
            background: rgba(0, 255, 102, 0.02);
            border-color: rgba(0, 255, 102, 0.08);
            transform: translateX(3px);
        }

        /* Custom Checkbox Design */
        .skill-checkbox {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid var(--text-muted);
            border-radius: 5px;
            outline: none;
            background-color: transparent;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-top: 1px;
        }

        .skill-checkbox:checked {
            border-color: var(--color-success);
            background-color: rgba(16, 185, 129, 0.1);
            transform: scale(1.1);
        }

        .skill-checkbox:checked::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 6px;
            width: 5px;
            height: 10px;
            border: solid var(--color-success);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checklist-item-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            transition: var(--transition);
        }

        .checklist-item:has(.skill-checkbox:checked) .checklist-item-text {
            color: var(--text-muted);
            text-decoration: line-through;
        }

        /* Recommended Certifications section inside stages */
        .stage-certs {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .certs-label {
            display: block;
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .cert-tag {
            display: inline-block;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.25);
            color: var(--color-success);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 6px;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: var(--transition);
        }

        .cert-tag:hover {
            background: rgba(16, 185, 129, 0.15);
            border-color: var(--color-success);
        }

        /* Stage Resources Links */
        .stage-resource-section {
            margin-bottom: 25px;
        }

        .stage-resource-section:last-child {
            margin-bottom: 0;
        }

        .resource-tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .resource-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 6px;
            text-decoration: none;
            transition: var(--transition);
        }

        .resource-btn:hover {
            color: var(--color-accent);
            background: rgba(6, 182, 212, 0.06);
            border-color: rgba(6, 182, 212, 0.25);
            transform: translateY(-1px);
        }

        .resource-btn.yt {
            border-color: rgba(239, 68, 68, 0.15);
        }

        .resource-btn.yt:hover {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.06);
            border-color: rgba(239, 68, 68, 0.3);
        }

        .resource-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* Tool Finder Hub styles */
        .tools-section-title {
            margin-bottom: 20px;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 20px;
        }

        .tool-category-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            padding: 20px;
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .tool-category-card:hover {
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.15);
            transform: translateY(-4px) scale(1.015);
        }

        .tool-category-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 12px;
        }

        .tool-items-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .tool-card-item {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 8px;
            padding: 10px 14px;
            background: rgba(255, 255, 255, 0.01);
            border-left: 3px solid var(--color-accent);
            border-radius: 0 6px 6px 0;
            transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        background 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        border-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .tool-card-item:hover {
            background: rgba(6, 182, 212, 0.05);
            transform: translateX(4px);
        }

        .tool-card-item-left {
            flex-grow: 1;
        }

        .tool-lbl-name {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            font-size: 0.95rem;
        }

        .tool-lbl-desc {
            display: block;
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        
        
        /* Search Box Styles */
        .search-container {
            max-width: 600px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 10;
        }

        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(4, 15, 8, 0.6);
            border: 2px solid rgba(0, 255, 102, 0.2);
            border-radius: 30px;
            padding: 5px 10px 5px 20px;
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            width: 100%;
        }

        .search-wrapper:focus-within {
            border-color: var(--color-accent);
            box-shadow: 0 0 25px rgba(0, 255, 102, 0.3);
            transform: translateY(-2px);
        }

        .search-icon {
            width: 20px;
            height: 20px;
            fill: var(--text-secondary);
            margin-right: 12px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .search-wrapper:focus-within .search-icon {
            fill: var(--color-accent);
        }

        .search-input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-primary);
            font-size: 1.05rem;
            padding: 10px 0;
            font-family: inherit;
        }

        .search-input::placeholder {
            color: var(--text-muted);
            opacity: 0.8;
        }

        .clear-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .clear-btn:hover {
            background: rgba(0, 255, 102, 0.1);
            color: var(--color-accent);
        }

        .clear-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Highlight styles */
        .highlight {
            background: rgba(0, 255, 102, 0.25);
            color: #FFFFFF;
            padding: 2px 4px;
            border-radius: 4px;
            border-bottom: 2px solid var(--color-accent);
            font-weight: bold;
        }

        /* Fallback No Results UI */
        .no-results-container {
            display: none;
            text-align: center;
            padding: 40px 20px;
            background: rgba(4, 15, 8, 0.4);
            border: 2px dashed rgba(239, 68, 68, 0.25);
            border-radius: var(--border-radius-lg);
            margin-top: 30px;
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .no-results-text {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .yt-fallback-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 20px;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
            transition: var(--transition);
        }

        .yt-fallback-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(239, 68, 68, 0.5);
        }

        /* General Helper Styles to eliminate inline styles */
        .tab-subtitle {
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .search-container.full-width {
            max-width: 100%;
            margin-bottom: 25px;
        }

        .green-fallback-btn {
            background: rgba(0, 255, 102, 0.08);
            border: 1px solid rgba(0, 255, 102, 0.3);
            color: var(--color-accent);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .green-fallback-btn:hover {
            background: rgba(0, 255, 102, 0.15);
            border-color: var(--color-accent);
            box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
            transform: translateY(-2px);
        }

        .search-wrapper:focus-within {
            border-color: var(--color-accent) !important;
            box-shadow: 0 0 20px rgba(0, 255, 102, 0.3) !important;
            background: rgba(4, 15, 8, 0.8) !important;
        }

        .git-clone-btn {
            background: rgba(0, 255, 102, 0.03);
            border: 1px solid rgba(0, 255, 102, 0.15);
            color: var(--text-secondary);
            transition: all 0.2s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.82rem;
            font-weight: 500;
            font-family: 'JetBrains Mono', monospace;
        }

        .git-clone-btn:hover {
            background: rgba(0, 255, 102, 0.1);
            border-color: var(--color-accent);
            color: var(--color-accent);
            box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
        }

        .git-badge {
            background: rgba(0, 255, 102, 0.06) !important;
            border-color: rgba(0, 255, 102, 0.2) !important;
            color: var(--color-accent) !important;
        }

        .glass-card-compact {
            padding: 20px !important;
            margin-bottom: 0 !important;
        }

        .tab-section-title {
            font-size: 1.25rem;
            font-family: 'Outfit', sans-serif;
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .ctf-badge-unsolved {
            background: rgba(234, 179, 8, 0.05) !important;
            border-color: rgba(234, 179, 8, 0.2) !important;
            color: var(--color-warning) !important;
            font-size: 0.68rem !important;
            margin: 0 !important;
            padding: 2px 6px !important;
        }

        .ctf-badge-solved {
            background: rgba(16, 185, 129, 0.08) !important;
            border-color: var(--color-success) !important;
            color: var(--color-success) !important;
            font-size: 0.68rem !important;
            margin: 0 !important;
            padding: 2px 6px !important;
        }

        .ctf-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 6px;
        }

        .ctf-card-title {
            color: var(--text-primary);
            font-size: 0.9rem;
        }

        .ctf-card-desc {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .ctf-card-meta {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }

        .terminal-header-spacer {
            width: 42px;
        }

        .terminal-footer {
            padding: 10px 15px;
            border-top: 1px solid rgba(0, 255, 102, 0.1);
            background: #030712;
        }

        .repo-meta-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 0.78rem;
            color: var(--text-muted);
            font-family: 'JetBrains Mono', monospace;
        }

        /* About Page Styles */
        .about-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 20px;
            align-items: start;
        }

        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }
        }

        .about-profile-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius-lg);
            position: relative;
            overflow: hidden;
        }

        .about-avatar-container {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(4, 15, 8, 0.6);
            border: 2px solid var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 20px;
        }

        .about-avatar-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
            animation: none;
            pointer-events: none;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .about-avatar-placeholder {
            width: 50px;
            height: 50px;
            fill: var(--color-accent);
        }

        .about-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin: 0 0 4px 0;
            letter-spacing: -0.3px;
        }

        .about-title {
            font-size: 0.85rem;
            color: var(--color-accent);
            font-family: 'JetBrains Mono', monospace;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        .about-divider {
            width: 50px;
            height: 2px;
            background: rgba(0, 255, 102, 0.2);
            margin-bottom: 15px;
        }

        .about-bio {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            max-width: 280px;
        }

        .about-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
        }

        .about-link-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            padding: 18px;
            display: flex;
            gap: 16px;
            align-items: center;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                        border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
        }

        .about-link-card:hover {
            transform: translateY(-3px) scale(1.01);
            border-color: var(--color-accent);
            box-shadow: 0 10px 25px rgba(0, 255, 102, 0.1);
        }

        .about-card-icon-wrapper {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .about-link-card:hover .about-card-icon-wrapper {
            transform: scale(1.08);
        }

        .about-card-icon-wrapper svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .about-card-icon-wrapper.github-icon {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .about-card-icon-wrapper.linkedin-icon {
            background: rgba(10, 102, 194, 0.08);
            border: 1px solid rgba(10, 102, 194, 0.25);
            color: #0a66c2;
        }

        .about-card-icon-wrapper.website-icon {
            background: rgba(0, 255, 102, 0.04);
            border: 1px solid rgba(0, 255, 102, 0.15);
            color: var(--color-accent);
        }

        .about-card-icon-wrapper.youtube-icon {
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.25);
            color: #ef4444;
        }

        .about-card-icon-wrapper.instagram-icon {
            background: rgba(225, 48, 108, 0.08);
            border: 1px solid rgba(225, 48, 108, 0.25);
            color: #e1306c;
        }

        .about-card-icon-wrapper.discord-icon {
            background: rgba(88, 101, 242, 0.08);
            border: 1px solid rgba(88, 101, 242, 0.25);
            color: #5865f2;
        }

        .about-card-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
            flex-grow: 1;
            min-width: 0;
        }

        .about-card-info h3 {
            font-size: 0.95rem;
            font-family: 'Outfit', sans-serif;
            color: var(--text-primary);
            margin: 0;
            font-weight: 700;
        }

        .about-card-info p {
            font-size: 0.76rem;
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.4;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .about-card-action {
            font-size: 0.8rem;
            color: var(--color-accent);
            text-decoration: none;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
            margin-top: 4px;
            display: inline-block;
            transition: var(--transition);
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .about-card-action:hover {
            text-decoration: underline;
            opacity: 0.85;
        }
        .repo-lang-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .repo-stat-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .repo-stat-icon {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }
        .git-card-actions {
            display: flex;
            gap: 8px;
            margin-top: auto;
            width: 100%;
        }
        .git-view-btn {
            flex: 1;
            justify-content: center;
            margin: 0 !important;
            padding: 8px 12px !important;
            font-size: 0.82rem !important;
        }

        .mb-30 {
            margin-bottom: 30px !important;
        }

        .yt-fallback-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Filter Chips styling */
        .filter-chips-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            position: relative;
            z-index: 10;
        }

        .filter-chip {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-chip:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .filter-chip.active {
            background: rgba(6, 182, 212, 0.1);
            border-color: var(--color-accent);
            color: var(--color-accent);
            box-shadow: 0 2px 10px rgba(6, 182, 212, 0.1);
            font-weight: 600;
        }

        
        /* Tool Links container (full width below text) */
        .tool-links {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
            margin-top: 2px;
        }

        /* Tool buttons (symmetric equal-width) */
        .tool-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 6px;
            font-size: 0.78rem;
            font-weight: 600;
            border-radius: 20px;
            text-decoration: none;
            font-family: 'JetBrains Mono', monospace;
            transition: var(--transition);
            white-space: nowrap;
        }

        .tool-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .site-btn {
            background: rgba(0, 255, 102, 0.08);
            border: 1px solid rgba(0, 255, 102, 0.3);
            color: var(--color-accent);
        }

        .site-btn:hover {
            background: rgba(0, 255, 102, 0.2);
            border-color: var(--color-accent);
            box-shadow: 0 4px 15px rgba(0, 255, 102, 0.25);
            transform: translateY(-2px) scale(1.02);
        }

        .yt-btn {
            background: rgba(239, 68, 68, 0.08);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: var(--color-danger);
        }

        .yt-btn:hover {
            background: rgba(239, 68, 68, 0.2);
            border-color: var(--color-danger);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
            transform: translateY(-2px) scale(1.02);
        }

        .pdf-btn {
            background: rgba(0, 255, 204, 0.08);
            border: 1px solid rgba(0, 255, 204, 0.3);
            color: var(--color-pink);
        }

        .pdf-btn:hover {
            background: rgba(0, 255, 204, 0.2);
            border-color: var(--color-pink);
            box-shadow: 0 4px 15px rgba(0, 255, 204, 0.25);
            transform: translateY(-2px) scale(1.02);
        }

        /* Tool Finder Search Row Layout */
        .search-container-row {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 15px;
        }

        .pdf-search-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 255, 204, 0.08);
            border: 1px solid rgba(0, 255, 204, 0.3);
            color: var(--color-pink);
            font-family: inherit;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            height: 44px;
            box-shadow: 0 4px 15px rgba(0, 255, 204, 0.05);
        }

        .pdf-search-btn:hover {
            background: rgba(0, 255, 204, 0.18);
            border-color: var(--color-pink);
            box-shadow: 0 4px 15px rgba(0, 255, 204, 0.2);
            transform: translateY(-1px);
        }

        .pdf-search-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Tool responsive wrapping - handled by default */

        /* YouTube Channel Directory Grid */
        .channels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 16px;
        }

        .channel-card {
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            padding: 20px;
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            min-height: 200px;
        }

        .channel-card:hover {
            border-color: var(--color-accent);
            box-shadow: 0 12px 30px rgba(0, 255, 102, 0.15);
            transform: translateY(-4px) scale(1.015);
        }

        .channel-badge {
            background: rgba(139, 92, 246, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.25);
            color: var(--color-secondary);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            width: fit-content;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .channel-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .channel-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .channel-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid rgba(6, 182, 212, 0.25);
            padding: 8px 16px;
            border-radius: 8px;
            width: fit-content;
        }

        .channel-btn:hover {
            background: rgba(6, 182, 212, 0.1);
            border-color: var(--color-accent);
            gap: 12px;
        }

        .channel-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Footer styling inside Overview */
        .disclaimer-card {
            background: rgba(245, 158, 11, 0.03) !important;
            border: 1px dashed rgba(245, 158, 11, 0.25) !important;
        }

        .disclaimer-card::before {
            background: var(--color-warning) !important;
        }

        .disclaimer-card h3 {
            color: var(--color-warning);
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .disclaimer-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Mobile Header */
        .mobile-header {
            display: none;
            background-color: var(--bg-sidebar);
            border-bottom: 1px solid var(--border-card);
            padding: 15px 20px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 110;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-btn {
            background: transparent;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Practice Quiz Styles */
        .quiz-container {
            padding: 24px;
            position: relative;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--border-radius-lg);
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
        }

        .quiz-badge-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 255, 102, 0.06);
            border: 2px solid rgba(0, 255, 102, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 0 20px rgba(0, 255, 102, 0.15);
            animation: pulse-icon 2s infinite alternate;
        }

        .quiz-badge-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--color-accent);
        }

        @keyframes pulse-icon {
            0% { box-shadow: 0 0 10px rgba(0, 255, 102, 0.1); transform: scale(1); }
            100% { box-shadow: 0 0 20px rgba(0, 255, 102, 0.25); transform: scale(1.05); }
        }

        .quiz-category-chips {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* Progress Bar */
        .quiz-progress-track {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 3px;
            overflow: hidden;
        }

        .quiz-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            width: 0%;
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        /* Option Buttons */
        .quiz-option {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            text-align: left;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-bottom: 10px;
            outline: none;
        }

        .quiz-option:hover:not(.disabled) {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateX(4px);
            color: var(--text-primary);
        }

        .quiz-option-marker {
            width: 22px;
            height: 22px;
            border: 2px solid var(--text-muted);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            font-size: 0.75rem;
            flex-shrink: 0;
            transition: all 0.2s ease;
            color: var(--text-muted);
        }

        .quiz-option:hover:not(.disabled) .quiz-option-marker {
            border-color: var(--text-primary);
            color: var(--text-primary);
        }

        /* Option State Classes */
        .quiz-option.correct {
            background: rgba(16, 185, 129, 0.08) !important;
            border-color: rgba(16, 185, 129, 0.4) !important;
            color: var(--color-success) !important;
        }

        .quiz-option.correct .quiz-option-marker {
            border-color: var(--color-success) !important;
            background: var(--color-success) !important;
            color: var(--bg-obsidian) !important;
        }

        .quiz-option.incorrect {
            background: rgba(239, 68, 68, 0.08) !important;
            border-color: rgba(239, 68, 68, 0.4) !important;
            color: var(--color-danger) !important;
        }

        .quiz-option.incorrect .quiz-option-marker {
            border-color: var(--color-danger) !important;
            background: var(--color-danger) !important;
            color: var(--text-primary) !important;
        }

        .quiz-option.disabled {
            cursor: not-allowed;
            opacity: 0.65;
        }

        /* Explanation Box */
        .quiz-feedback-box {
            padding: 16px 20px;
            border-radius: 8px;
            background: rgba(6, 182, 212, 0.03);
            border-left: 3px solid var(--color-accent);
            animation: slide-down-fade 0.35s ease-out;
        }

        .quiz-feedback-header {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .quiz-feedback-box.correct-feedback {
            border-left-color: var(--color-success);
            background: rgba(16, 185, 129, 0.02);
        }
        .quiz-feedback-box.correct-feedback .quiz-feedback-header {
            color: var(--color-success);
        }

        .quiz-feedback-box.incorrect-feedback {
            border-left-color: var(--color-danger);
            background: rgba(239, 68, 68, 0.02);
        }
        .quiz-feedback-box.incorrect-feedback .quiz-feedback-header {
            color: var(--color-danger);
        }

        .quiz-feedback-body {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        @keyframes slide-down-fade {
            0% { opacity: 0; transform: translateY(-6px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Radial Results Circle */
        .quiz-score-circle {
            position: relative;
            width: 140px;
            height: 140px;
        }

        .quiz-score-circle svg {
            width: 140px;
            height: 140px;
            transform: rotate(-90deg);
        }

        .score-circle-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.04);
            stroke-width: 6;
        }

        .score-circle-fill {
            fill: none;
            stroke: var(--color-accent);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .quiz-score-value {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .quiz-score-value span:first-child {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.1;
        }

        /* Progress Table Styles */
        .progress-table-container {
            margin-top: 15px;
            overflow-x: auto;
        }

        .progress-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.88rem;
        }

        .progress-table th {
            padding: 12px 14px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 2px solid rgba(0, 255, 102, 0.15);
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--color-accent);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-size: 0.8rem;
        }

        .progress-table td {
            padding: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            vertical-align: middle;
            color: var(--text-secondary);
        }

        .progress-table tbody tr {
            transition: all 0.2s ease;
        }

        .progress-table tbody tr:hover {
            background: rgba(6, 182, 212, 0.02);
        }

        .progress-table tbody tr.completed-row {
            background: rgba(16, 185, 129, 0.015) !important;
        }

        .progress-table tbody tr.completed-row td {
            color: var(--text-primary);
        }

        /* Table Progress Bar */
        .table-progress-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 140px;
        }

        .table-progress-bar {
            flex-grow: 1;
            height: 6px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

        .table-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            width: 0%;
            border-radius: 3px;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .table-progress-percent {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.78rem;
            font-weight: 700;
            min-width: 32px;
            text-align: right;
            color: var(--text-primary);
        }

        /* Action link in table */
        .table-action-link {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s ease;
            cursor: pointer;
            font-family: 'JetBrains Mono', monospace;
            border: 1px solid rgba(6, 182, 212, 0.2);
            padding: 5px 10px;
            border-radius: 12px;
            background: rgba(6, 182, 212, 0.03);
            white-space: nowrap;
        }

        .table-action-link:hover {
            color: var(--text-primary);
            background: rgba(0, 255, 102, 0.08);
            border-color: var(--color-accent);
            box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
            transform: translateY(-1px);
        }

        /* Study Planner & Notes Layout */
        .planner-grid {
            display: grid;
            grid-template-columns: 1.25fr 0.75fr;
            gap: 20px;
        }

        @media (max-width: 992px) {
            .planner-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Notepad Text Area */
        .notes-textarea-container {
            position: relative;
            width: 100%;
        }

        .notes-textarea {
            width: 100%;
            height: 350px;
            background: rgba(4, 15, 8, 0.4);
            border: 1px solid rgba(0, 255, 102, 0.15);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.88rem;
            padding: 16px;
            resize: vertical;
            outline: none;
            line-height: 1.6;
            transition: all 0.25s ease;
        }

        .notes-textarea:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 15px rgba(0, 255, 102, 0.1);
        }

        .notes-status-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.75rem;
            color: var(--color-success);
            font-family: 'JetBrains Mono', monospace;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .notes-status-indicator.visible {
            opacity: 1;
        }

        /* Custom small checkboxes for syllabus */
        .syllabus-checkbox {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid var(--text-muted);
            border-radius: 4px;
            outline: none;
            background-color: transparent;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin: 0 auto;
            display: block;
        }

        .syllabus-checkbox:checked {
            border-color: var(--color-success);
            background-color: rgba(16, 185, 129, 0.1);
            transform: scale(1.1);
        }

        .syllabus-checkbox:checked::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 5px;
            width: 4px;
            height: 8px;
            border: solid var(--color-success);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        /* CTF Sandbox Styles */
        .ctf-grid {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 20px;
        }

        @media (max-width: 992px) {
            .ctf-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Challenge Cards */
        .ctf-challenge-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ctf-challenge-card {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.02);
            border-radius: var(--border-radius-md);
            padding: 14px;
            transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
            border-left: 3px solid var(--text-muted);
        }

        .ctf-challenge-card:hover {
            border-color: rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }

        .ctf-challenge-card.solved {
            border-left-color: var(--color-success) !important;
            background: rgba(16, 185, 129, 0.015) !important;
        }

        .ctf-challenge-card.active-challenge {
            border-left-color: var(--color-accent);
            background: rgba(6, 182, 212, 0.01);
        }

        /* Terminal styling */
        .terminal-window {
            background: #020509;
            border: 1px solid rgba(0, 255, 102, 0.2);
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            display: flex;
            flex-direction: column;
            height: 480px;
            overflow: hidden;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.88rem;
        }

        .terminal-header {
            background: #080c12;
            padding: 10px 15px;
            border-bottom: 1px solid rgba(0, 255, 102, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            -webkit-user-select: none;
            user-select: none;
        }

        .terminal-buttons {
            display: flex;
            gap: 6px;
        }

        .terminal-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .dot-red { background: #ef4444; }
        .dot-yellow { background: #eab308; }
        .dot-green { background: #22c55e; }

        .terminal-title {
            color: var(--text-muted);
            font-size: 0.72rem;
            letter-spacing: 0.5px;
            font-family: inherit;
        }

        .terminal-body {
            flex-grow: 1;
            padding: 15px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 6px;
            scroll-behavior: smooth;
        }

        .terminal-stdout {
            color: #b9c2ce;
            line-height: 1.5;
            white-space: pre-wrap;
            margin: 0;
            padding: 0;
        }

        .terminal-stdout .terminal-line {
            margin-bottom: 4px;
        }

        .terminal-stdout .error {
            color: var(--color-danger);
        }

        .terminal-stdout .success {
            color: var(--color-success);
        }

        .terminal-stdout .info {
            color: var(--color-secondary);
        }

        .terminal-input-row {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--color-accent);
        }

        .terminal-input-prompt {
            color: var(--color-accent);
            white-space: nowrap;
            -webkit-user-select: none;
            user-select: none;
        }

        .terminal-input-field {
            flex-grow: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-family: inherit;
            font-size: inherit;
            padding: 0;
            caret-color: var(--color-accent);
        }

        /* Blinking cursor effect */
        .terminal-input-field {
            font-weight: 500;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            body {
                padding-top: 64px;
            }

            .sidebar {
                transform: translateX(-100%);
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
                padding: 20px 16px;
            }

            .mobile-header {
                display: flex;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .stage-body-wrapper {
                grid-template-columns: 1fr;
            }
        }

/* ===== INLINE STYLE REPLACEMENTS ===== */
.m-t-0 { margin-top: 0 !important; }
.p-20 { padding: 20px !important; }
.w-42 { width: 42px !important; }
.w-70 { width: 70px !important; }
.w-110 { width: 110px !important; }
.w-70-center { width: 70px !important; text-align: center !important; }
.flex-col-gap20 { display: flex !important; flex-direction: column !important; gap: 20px !important; }
.study-notes-card { padding: 20px !important; display: flex !important; flex-direction: column !important; margin-bottom: 0 !important; }
.flex-space-between-center { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 12px !important; }
.study-notes-title { font-size: 1.25rem !important; font-family: 'Outfit', sans-serif !important; color: var(--text-primary) !important; font-weight: 700 !important; margin: 0 !important; }
.study-notes-subtitle { color: var(--text-secondary) !important; font-size: 0.82rem !important; margin-bottom: 12px !important; line-height: 1.4 !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.h-180 { height: 180px !important; }
.flex-end-gap10 { display: flex !important; gap: 10px !important; justify-content: flex-end !important; margin-top: 15px !important; }
.btn-padding-small { padding: 6px 12px !important; }
.btn-danger-small { padding: 6px 12px !important; border-color: rgba(239, 68, 68, 0.2) !important; background: rgba(239, 68, 68, 0.03) !important; color: var(--color-danger) !important; }
.focus-station-card { padding: 20px !important; margin-bottom: 0 !important; }
.focus-station-title { font-size: 1.25rem !important; font-family: 'Outfit', sans-serif !important; color: var(--text-primary) !important; font-weight: 700 !important; margin-bottom: 15px !important; }
.focus-station-chips { margin-bottom: 15px !important; justify-content: flex-start !important; gap: 8px !important; }
.chip-padding-small { padding: 5px 10px !important; font-size: 0.78rem !important; }
.flex-around-center { display: flex !important; align-items: center !important; justify-content: space-around !important; margin-bottom: 15px !important; }
.pomodoro-time-display { font-family: 'JetBrains Mono', monospace !important; font-size: 2.2rem !important; font-weight: 800 !important; color: var(--color-accent) !important; text-shadow: 0 0 10px rgba(0, 255, 102, 0.2) !important; }
.pomodoro-status-badge { background: rgba(6, 182, 212, 0.06) !important; border-color: rgba(6, 182, 212, 0.2) !important; color: var(--color-secondary) !important; margin: 0 !important; font-size: 0.72rem !important; padding: 2px 8px !important; }
.flex-center-gap10 { display: flex !important; gap: 10px !important; justify-content: center !important; }
.btn-pomodoro-action { padding: 5px 12px !important; font-size: 0.8rem !important; }
.btn-pomodoro-reset { padding: 5px 12px !important; font-size: 0.8rem !important; border-color: rgba(255, 255, 255, 0.1) !important; background: transparent !important; color: var(--text-secondary) !important; }
.countdown-wrapper { margin-bottom: 10px !important; text-align: center !important; }
.countdown-inputs-row { display: flex !important; align-items: center !important; gap: 8px !important; justify-content: center !important; margin-bottom: 12px !important; flex-wrap: wrap !important; }
.countdown-date-input { background: rgba(4, 15, 8, 0.6) !important; border: 1px solid rgba(0, 255, 102, 0.2) !important; border-radius: 8px !important; padding: 5px 10px !important; color: var(--text-primary) !important; font-family: inherit !important; font-size: 0.82rem !important; outline: none !important; cursor: pointer !important; height: 32px !important; }
.countdown-set-btn { padding: 5px 10px !important; font-size: 0.8rem !important; height: 32px !important; }
.countdown-display-text { font-family: 'JetBrains Mono', monospace !important; font-size: 1.1rem !important; font-weight: 700 !important; color: var(--text-primary) !important; margin-top: 10px !important; }
.countdown-placeholder-text { font-size: 0.78rem !important; color: var(--text-muted) !important; }
.wargame-subtitle { color: var(--text-secondary) !important; margin-bottom: 25px !important; font-size: 1.05rem !important; }
.wargame-card { padding: 20px !important; }
.wargame-card-title { font-size: 1.25rem !important; font-family: 'Outfit', sans-serif !important; color: var(--text-primary) !important; font-weight: 700 !important; margin-bottom: 15px !important; }
.wargame-item-header { display: flex !important; justify-content: space-between !important; align-items: flex-start !important; margin-bottom: 6px !important; }
.wargame-item-title { color: var(--text-primary) !important; font-size: 0.9rem !important; }
.ctf-status-badge { background: rgba(234, 179, 8, 0.05) !important; border-color: rgba(234, 179, 8, 0.2) !important; color: var(--color-warning) !important; font-size: 0.68rem !important; margin: 0 !important; padding: 2px 6px !important; }
.wargame-item-desc { color: var(--text-secondary) !important; font-size: 0.8rem !important; margin-bottom: 8px !important; line-height: 1.4 !important; }
.wargame-item-meta { font-size: 0.72rem !important; color: var(--text-muted) !important; font-family: 'JetBrains Mono', monospace !important; }
.chat-footer-card { padding: 10px 15px !important; border-top: 1px solid rgba(0, 255, 102, 0.1) !important; background: #030712 !important; }
.d-none { display: none !important; }

/* Custom icons styles to replace static SVG inline styles */
.icon-16 { width: 16px !important; height: 16px !important; fill: currentColor !important; }
.icon-14 { width: 14px !important; height: 14px !important; fill: currentColor !important; }

/* --- ADHD FOCUS HUB WORKSPACE & GRAPHICS SYSTEM --- */
.adhd-hub-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    align-items: start;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .adhd-hub-grid {
        grid-template-columns: 1fr;
    }
}

.adhd-left-col, .adhd-right-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Section Text Styling */
.adhd-section-title {
    font-size: 1.15rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.adhd-section-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Level HUD Badge Card */
.adhd-hud-card {
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
}

.hud-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.hud-level-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 255, 102, 0.1);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.25);
}

.hud-info {
    display: flex;
    flex-direction: column;
}

.hud-rank-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hud-xp-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hud-progress-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.hud-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px var(--color-accent);
}

/* Focus State Cards Selector */
.focus-state-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .focus-state-grid {
        grid-template-columns: 1fr;
    }
}

.focus-state-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.focus-state-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.focus-state-emoji {
    font-size: 1.8rem;
}

.focus-state-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.focus-state-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.25;
}

/* Active Focus State Styling */
.focus-state-card.active-state {
    background: rgba(0, 255, 102, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}

.focus-state-card[data-state="distracted"].active-state {
    background: rgba(245, 158, 11, 0.08);
    border-color: var(--color-warning);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.focus-state-card[data-state="zombie"].active-state {
    background: rgba(239, 68, 68, 0.08);
    border-color: var(--color-danger);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

/* Recommendations Box */
.adhd-recommendation-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 16px;
    margin-top: 15px;
}

.adhd-recommendation-box h4 {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.adhd-recommendation-box p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.adhd-recommendation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.adhd-action-chip-btn {
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.25);
    color: var(--color-accent);
    font-family: inherit;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.adhd-action-chip-btn:hover {
    background: var(--color-accent);
    color: #000;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.3);
}

/* Side Quest Generator styles */
.quest-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.quest-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.quest-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.quest-box h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.quest-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.quest-reward {
    display: inline-block;
    font-size: 0.78rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: var(--color-pink);
    background: rgba(0, 255, 204, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.quest-actions {
    display: flex;
    gap: 12px;
}

.quest-btn {
    flex: 1;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.generate-btn {
    background: rgba(0, 255, 102, 0.08);
    border-color: rgba(0, 255, 102, 0.25);
    color: var(--color-accent);
}

.generate-btn:hover {
    background: rgba(0, 255, 102, 0.16);
    border-color: var(--color-accent);
}

.claim-btn {
    background: var(--color-success);
    color: #000000;
}

.claim-btn:hover:not(:disabled) {
    box-shadow: 0 0 12px rgba(0, 255, 102, 0.4);
    transform: translateY(-1px);
}

.claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Break It Down Select and Lists */
.breakdown-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.adhd-select {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.adhd-select:focus {
    border-color: var(--color-accent);
}

.breakdown-step-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
    line-height: 1.4;
}

.breakdown-step-label:hover {
    background: rgba(0, 255, 102, 0.03);
    border-color: rgba(0, 255, 102, 0.12);
}

.breakdown-cb {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--text-muted);
    border-radius: 3px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.breakdown-cb:checked {
    border-color: var(--color-success);
    background-color: rgba(16, 185, 129, 0.1);
}

.breakdown-cb:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid var(--color-success);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.breakdown-step-label:has(.breakdown-cb:checked) {
    border-color: rgba(0, 255, 102, 0.15);
    background: rgba(0, 255, 102, 0.02);
    color: var(--text-muted);
    text-decoration: line-through;
}

.breakdown-reward {
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--color-accent);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
    animation: pulse-success 2s infinite;
}

/* Ambient Soundboard layouts */
.soundboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.soundboard-channel {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: var(--transition);
}

.soundboard-channel:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.soundboard-channel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 110px;
}

.soundboard-emoji {
    font-size: 1.1rem;
}

.soundboard-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.soundboard-volume {
    flex: 1;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.soundboard-volume::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 6px rgba(0, 255, 102, 0.6);
    transition: transform 0.1s ease;
}

.soundboard-volume::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.soundboard-synth-btn {
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 102, 0.25);
    background: rgba(0, 255, 102, 0.08);
    color: var(--color-accent);
    cursor: pointer;
    min-width: 68px;
    text-align: center;
    transition: var(--transition);
}

.soundboard-synth-btn:hover {
    background: rgba(0, 255, 102, 0.15);
    border-color: var(--color-accent);
}

.soundboard-synth-btn.playing {
    background: var(--color-success);
    color: #000000;
    border-color: var(--color-success);
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

/* Accessibility Settings switches and layouts */
.acc-settings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 6px 0;
}

.acc-setting-row label {
    font-size: 0.88rem;
    color: var(--text-primary);
}

.acc-select {
    width: 170px;
    padding: 6px 10px;
    font-size: 0.82rem;
}

/* Toggle Switch slider styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-secondary);
    transition: .3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: rgba(0, 255, 102, 0.15);
    border-color: var(--color-accent);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(18px);
    background-color: var(--color-accent);
    box-shadow: 0 0 6px rgba(0, 255, 102, 0.6);
}

/* Command & Payload Explainer tokens & displays */
.explainer-tokens-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px dashed var(--border-card);
}

.command-token-chip.active-token {
    background: rgba(0, 255, 102, 0.2) !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.25);
    font-weight: 600;
}

.explainer-explanation-box {
    padding: 14px;
    background: rgba(0, 255, 102, 0.05);
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
    transition: var(--transition);
}

/* --- ACCESSIBILITY VARIANTS ENGINE (THEMES, TEXT, SPACING, MOTION) --- */

/* 1. Calm Blue Theme */


body.theme-calm .logo-icon svg {
    fill: #3b82f6;
}

body.theme-calm .sidebar-footer {
    border-top-color: rgba(59, 130, 246, 0.16);
}

body.theme-calm .hud-level-circle {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

/* 2. Dyslexia-friendly setup */


body.theme-dyslexia p, 
body.theme-dyslexia a, 
body.theme-dyslexia td, 
body.theme-dyslexia th,
body.theme-dyslexia li, 
body.theme-dyslexia label,
body.theme-dyslexia span,
body.theme-theme-dyslexia h2,
body.theme-dyslexia h3,
body.theme-dyslexia h4 {
    font-family: 'Lexend', 'Comic Neue', sans-serif !important;
}

/* 3. High Contrast Theme */


body.theme-contrast * {
    text-shadow: none !important;
    box-shadow: none !important;
}

body.theme-contrast .glass-card, 
body.theme-contrast .sidebar, 
body.theme-contrast .soundboard-channel,
body.theme-contrast .explainer-tokens-grid {
    border: 2px solid #ffffff !important;
    background: #000000 !important;
}

body.theme-contrast .command-token-chip {
    border: 1px solid #ffffff !important;
    background: #000000 !important;
    color: #ffffff !important;
}

body.theme-contrast .command-token-chip.active-token {
    border: 2px solid #00ff00 !important;
    background: #ffffff !important;
    color: #000000 !important;
}

body.theme-contrast button {
    border: 2px solid #ffffff !important;
    background: #000000 !important;
    color: #ffffff !important;
}

body.theme-contrast button:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* 4. Spacing adjustment class */
body.increased-spacing {
    line-height: 1.8 !important;
}

body.increased-spacing p {
    margin-bottom: 12px;
}

body.increased-spacing .glass-card {
    padding: 30px !important;
}

/* 5. Reduced Motion */
body.no-animations, 
body.no-animations * {
    animation: none !important;
    transition: none !important;
    transition-duration: 0s !important;
}

/* 6. ADHD Light Mode Theme */


/* Let's make sure SVGs, text colors, and elements look clean and have high contrast on light mode */
body.theme-light .glass-card {
    background: #ffffff !important;
    border: 1px solid var(--border-card) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

body.theme-light .logo-icon svg {
    fill: var(--color-accent) !important;
}

body.theme-light .sidebar-footer {
    border-top-color: var(--border-card) !important;
}

body.theme-light .hud-level-circle {
    border-color: var(--color-accent) !important;
    color: var(--color-accent) !important;
    background: rgba(0, 119, 51, 0.08) !important;
}

body.theme-light .nav-link {
    color: var(--text-secondary) !important;
}

body.theme-light .nav-link.active {
    background: rgba(0, 119, 51, 0.08) !important;
    color: var(--color-accent) !important;
}

body.theme-light .soundboard-channel {
    background: #fbfbf8 !important;
    border-color: var(--border-card) !important;
}

body.theme-light .command-token-chip {
    background: #f0ede6 !important;
    color: var(--text-primary) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.theme-light .command-token-chip.active-token {
    background: var(--color-accent) !important;
    color: #ffffff !important;
}

body.theme-light input[type="text"], 
body.theme-light input[type="date"], 
body.theme-light select {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: var(--text-primary) !important;
}

body.theme-light .accordion-arrow {
    fill: var(--text-secondary) !important;
}

body.theme-light .sidebar {
    background-color: var(--bg-sidebar) !important;
    border-right: 1px solid var(--border-card) !important;
}

body.theme-light .mobile-header {
    background-color: var(--bg-sidebar) !important;
    border-bottom: 1px solid var(--border-card) !important;
}

body.theme-light .table-progress-bar {
    background: #e2dfd5 !important;
}

/* Keyframes animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-success {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}


/* Light Mode (ADHD Focus) */






/* --- REFACTORED INLINE STYLES --- */
.refactored-style-1 { margin-bottom: 0; }
.refactored-style-2 { font-size: 1.25rem; font-family:'Outfit', sans-serif; margin-bottom: 15px; }
.refactored-style-3 { margin-top: 20px; }
.refactored-style-4 { font-size: 1.25rem; font-family:'Outfit', sans-serif; margin-bottom: 15px; color: var(--text-primary); font-weight: 700; }
.refactored-style-5 { position: relative; height:300px; width:100%; }
.refactored-style-6 { display: flex; justify-content: center; }
.refactored-style-7 { background: rgba(0, 255, 102, 0.05); border-color: rgba(0, 255, 102, 0.2); color: var(--color-accent); font-size: 0.72rem; margin: 0; padding: 2px 8px; }
.refactored-style-8 { background: rgba(6, 182, 212, 0.05); border-color: rgba(6, 182, 212, 0.2); color: var(--color-secondary); font-size: 0.72rem; margin: 0; padding: 2px 8px; }
.refactored-style-9 { background: rgba(139, 92, 246, 0.05); border-color: rgba(139, 92, 246, 0.2); color: #8b5cf6; font-size: 0.72rem; margin: 0; padding: 2px 8px; }
.refactored-style-10 { background: rgba(239, 68, 68, 0.05); border-color: rgba(239, 68, 68, 0.2); color: var(--color-danger); font-size: 0.72rem; margin: 0; padding: 2px 8px; }
.refactored-style-11 { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.05rem; }
.refactored-style-12 { max-width: 100%; margin-bottom: 0; }
.refactored-style-13 { margin-top: 30px; }
.refactored-style-14 { margin-top: 15px; }
.refactored-style-15 { display:none; }
.refactored-style-16 { color: var(--text-secondary); margin-bottom: 35px; font-size: 1.05rem; }
.refactored-style-17 { max-width: 100%; margin-bottom: 25px; }
.refactored-style-18 { display: none; margin-top: 30px; }
.refactored-style-19 { background: rgba(0, 255, 102, 0.08); border-color: rgba(0, 255, 102, 0.3); color: var(--color-accent); font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; font-weight: 600; padding: 10px 20px; border-radius: 20px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.refactored-style-20 { width: 16px; height: 16px; fill: currentColor; }
.refactored-style-21 { text-align: center; padding: 20px 10px; }
.refactored-style-22 { font-family: 'Outfit', sans-serif; font-size: 1.75rem; margin-bottom: 12px; color: var(--text-primary); }
.refactored-style-23 { color: var(--text-secondary); max-width: 500px; margin: 0 auto 30px; font-size: 0.95rem; line-height: 1.6; }
.refactored-style-24 { font-family: 'Outfit', sans-serif; text-transform: uppercase; font-size: 0.85rem; color: var(--color-accent); letter-spacing: 1px; margin-bottom: 15px; }
.refactored-style-25 { margin: 0 auto; display: inline-flex; }
.refactored-style-26 { margin-bottom: 25px; }
.refactored-style-27 { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 8px; }
.refactored-style-28 { width: 10%; }
.refactored-style-29 { background: rgba(0, 255, 102, 0.06); border-color: rgba(0, 255, 102, 0.2); color: var(--color-accent); margin-bottom: 12px; display: inline-block; }
.refactored-style-30 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; line-height: 1.5; color: var(--text-primary); font-weight: 700; }
.refactored-style-31 { display: none; margin-bottom: 25px; }
.refactored-style-32 { display: flex; justify-content: flex-end; }
.refactored-style-33 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; margin-bottom: 25px; color: var(--text-primary); font-weight: 700; }
.refactored-style-34 { display: flex; justify-content: center; margin-bottom: 25px; }
.refactored-style-35 { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; font-weight: 500; letter-spacing: 0.5px; margin-top: 2px; }
.refactored-style-36 { background: rgba(0, 255, 102, 0.08); border-color: var(--color-accent); color: var(--color-accent); font-size: 0.95rem; padding: 8px 16px; border-radius: 20px; text-shadow: 0 0 10px rgba(0, 255, 102, 0.2); display: inline-block; }
.refactored-style-37 { display: flex; gap: 15px; justify-content: center; }
.refactored-style-38 { padding: 10px 20px; border-radius: 20px; font-weight: 600; width: fit-content; display: inline-flex; height: auto; }
.refactored-style-39 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 15px; }
.refactored-style-40 { background: rgba(4, 15, 8, 0.6); border: 1px solid rgba(0, 255, 102, 0.2); border-radius: 12px; padding: 8px 16px; color: var(--text-primary); font-family: inherit; font-size: 0.88rem; outline: none; cursor: pointer; transition: var(--transition); }
.refactored-style-41 { width: 14px; height: 14px; fill: currentColor; }
.refactored-style-42 { padding: 5px 12px; font-size: 0.8rem; display: none; }
.refactored-style-43 { display: none; margin-top: 16px; }
.refactored-style-44 { font-size: 0.9rem; color: var(--color-accent); margin-bottom: 10px; }
.refactored-style-45 { display: none; }
.refactored-style-46 { width: 100%; margin-bottom: 12px; }
.refactored-style-47 { display: flex; gap: 10px; margin-top: 12px; }
.refactored-style-48 { flex: 1; font-family: 'JetBrains Mono', monospace; background: rgba(0, 20, 10, 0.4); border: 1px solid var(--border-card); border-radius: 8px; padding: 10px 14px; color: var(--text-primary); outline: none; transition: var(--transition); }
.refactored-style-49 { margin-top: 0; min-width: 100px; }
.refactored-style-50 { font-size: 0.9rem; color: var(--color-accent); margin-bottom: 10px; font-weight: 500; }
.refactored-style-51 { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; padding: 12px; background: rgba(0, 0, 0, 0.3); border-radius: 8px; border: 1px dashed var(--border-card); }
.refactored-style-52 { display: none; padding: 14px; background: rgba(0, 255, 102, 0.05); border-left: 3px solid var(--color-accent); border-radius: 4px; transition: var(--transition); }
.refactored-style-53 { display: block; color: var(--color-accent); margin-bottom: 6px; font-size: 0.95rem; font-family: 'JetBrains Mono', monospace; }
.refactored-style-54 { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.4; }




/* Force specific badge text colors if they have a light background */






/* Force specific structural elements to respect the soothing palette */

body.theme-light-adhd h1, 
body.theme-light-adhd h2, 
body.theme-light-adhd h3, 
body.theme-light-adhd h4,
body.theme-light-adhd p,
body.theme-light-adhd .logo-text,
body.theme-light-adhd th,
body.theme-light-adhd td {
    color: var(--text-primary);
}

body.theme-light-adhd .text-muted {
    color: var(--text-muted) !important;
}


body.theme-light-adhd .glass-card {
    background: #ffffff; /* Slightly brighter than background to stand out, but still soft */
    border: 2px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

body.theme-light-adhd .glass-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(38, 139, 210, 0.1);
}

body.theme-light-adhd .sidebar-nav .nav-link {
    color: var(--text-secondary);
}

body.theme-light-adhd .sidebar-nav .nav-link:hover,
body.theme-light-adhd .sidebar-nav .nav-link.active {
    background: rgba(38, 139, 210, 0.1);
    color: var(--color-accent);
    border-right-color: var(--color-accent);
}

body.theme-light-adhd .nav-link svg,
body.theme-light-adhd .logo-icon svg {
    fill: var(--text-secondary);
}

body.theme-light-adhd .sidebar-nav .nav-link:hover svg,
body.theme-light-adhd .sidebar-nav .nav-link.active svg {
    fill: var(--color-accent);
}

/* Ensure channel badge and text styles look good */
body.theme-light-adhd .channel-badge {
    color: var(--text-primary);
    border-color: var(--border-card);
}

/* --- FULL LIGHT MODE --- */
body.theme-light-adhd {
    --bg-obsidian: #f1f5f9;     /* Light slate background */
    --bg-sidebar: #ffffff;      /* Pure white sidebar */
    --bg-card: #ffffff;         /* Pure white cards */
    --border-card: #cbd5e1;     /* Light slate border */
    
    --color-accent: #2563eb;    /* Bright Blue */
    --color-secondary: #059669; /* Emerald Green */
    --color-pink: #db2777;      /* Bright Pink */
    --color-danger: #dc2626;    /* Bright Red */
    --color-success: #16a34a;   /* Bright Green */
    
    --text-primary: #0f172a;    /* Near Black */
    --text-secondary: #475569;  /* Dark Gray */
    --text-muted: #64748b;      /* Slate Gray */
    
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Force standard text elements to use the dark text color in light mode */
body.theme-light-adhd,
body.theme-light-adhd h1, 
body.theme-light-adhd h2, 
body.theme-light-adhd h3, 
body.theme-light-adhd h4,
body.theme-light-adhd p,
body.theme-light-adhd span:not(.channel-badge):not([class*="refactored-style-"]),
body.theme-light-adhd .logo-text,
body.theme-light-adhd .dashboard-title p,
body.theme-light-adhd th,
body.theme-light-adhd td,
body.theme-light-adhd .sidebar-footer-text,
body.theme-light-adhd a {
    color: var(--text-primary);
}

/* Specific overrides for sidebar and cards to ensure full light mode */
body.theme-light-adhd .sidebar {
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border-card);
}

body.theme-light-adhd .sidebar-nav .nav-link {
    color: var(--text-secondary);
}

body.theme-light-adhd .sidebar-nav .nav-link:hover,
body.theme-light-adhd .sidebar-nav .nav-link.active {
    background: #eff6ff; /* light blue background */
    color: var(--color-accent);
    border-right-color: var(--color-accent);
}

body.theme-light-adhd .nav-link svg,
body.theme-light-adhd .logo-icon svg {
    fill: var(--text-secondary);
}

body.theme-light-adhd .sidebar-nav .nav-link:hover svg,
body.theme-light-adhd .sidebar-nav .nav-link.active svg {
    fill: var(--color-accent);
}

body.theme-light-adhd .glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body.theme-light-adhd .text-muted,
body.theme-light-adhd .stage-header p {
    color: var(--text-muted) !important;
}

body.theme-light-adhd .search-input {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid #94a3b8;
}

body.theme-light-adhd .search-input::placeholder {
    color: var(--text-muted);
}

/* --- EXTRA PREMIUM DEEP LIGHT MODE OVERRIDES --- */

/* Scrollbars */
body.theme-light-adhd ::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
}
body.theme-light-adhd ::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border: 3px solid #f1f5f9 !important;
    border-radius: 9999px;
}
body.theme-light-adhd ::-webkit-scrollbar-thumb:hover {
    background: #94a3b8 !important;
}

/* Ambient background blobs: soften colors significantly in light mode */
body.theme-light-adhd .ambient-blob-1,
body.theme-light-adhd .ambient-blob-2 {
    opacity: 0.12 !important;
    filter: blur(120px) !important;
}

/* Specific overrides for status and difficulty badges to maintain colorful but high-contrast slate aesthetics */
body.theme-light-adhd .refactored-style-7 {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border: 1px solid #bbf7d0 !important;
}
body.theme-light-adhd .refactored-style-8 {
    background: #ecfeff !important;
    color: #0891b2 !important;
    border: 1px solid #c5f6fa !important;
}
body.theme-light-adhd .refactored-style-9 {
    background: #faf5ff !important;
    color: #7c3aed !important;
    border: 1px solid #e9d5ff !important;
}
body.theme-light-adhd .refactored-style-10 {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 1px solid #fecaca !important;
}
body.theme-light-adhd .refactored-style-19 {
    background: #eff6ff !important;
    color: #2563eb !important;
    border: 1px solid #bfdbfe !important;
}
body.theme-light-adhd .refactored-style-29 {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border: 1px solid #bbf7d0 !important;
}
body.theme-light-adhd .refactored-style-36 {
    background: #f0fdf4 !important;
    color: #16a34a !important;
    border: 1px solid #bbf7d0 !important;
}
body.theme-light-adhd .refactored-style-38 {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 1px solid #2563eb !important;
}

/* Override dark backgrounds inside dashboard interactive controls */
body.theme-light-adhd .refactored-style-40 {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-light-adhd .refactored-style-48 {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
}
body.theme-light-adhd .refactored-style-51 {
    background: #f8fafc !important;
    border: 1px dashed #cbd5e1 !important;
}
body.theme-light-adhd .refactored-style-52 {
    background: #eff6ff !important;
    border-left: 3px solid #2563eb !important;
}
body.theme-light-adhd .refactored-style-53 {
    color: #2563eb !important;
}

/* Soundboard cards & volume sliders */
body.theme-light-adhd .soundboard-channel {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
}
body.theme-light-adhd .soundboard-channel:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-adhd .soundboard-volume {
    background: #cbd5e1 !important;
}
body.theme-light-adhd .soundboard-volume::-webkit-slider-thumb {
    background: #2563eb !important;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.4) !important;
}

/* Settings sliders and toggles */
body.theme-light-adhd .toggle-slider {
    background-color: #cbd5e1 !important;
    border: 1px solid #94a3b8 !important;
}
body.theme-light-adhd .toggle-slider:before {
    background-color: #ffffff !important;
}
body.theme-light-adhd .toggle-switch input:checked + .toggle-slider {
    background-color: rgba(37, 99, 235, 0.2) !important;
    border-color: #2563eb !important;
}
body.theme-light-adhd .toggle-switch input:checked + .toggle-slider:before {
    background-color: #2563eb !important;
    box-shadow: 0 0 6px rgba(37, 99, 235, 0.4) !important;
}

/* Level details indicator */
body.theme-light-adhd .hud-level-circle {
    border-color: #2563eb !important;
    color: #2563eb !important;
    background: rgba(37, 99, 235, 0.08) !important;
}

/* Project progress bars and fillers */
body.theme-light-adhd .table-progress-fill,
body.theme-light-adhd .hud-progress-bar-fill,
body.theme-light-adhd .quiz-progress-fill {
    background: var(--color-accent) !important;
}
body.theme-light-adhd .table-progress-bar,
body.theme-light-adhd .hud-progress-bar-bg,
body.theme-light-adhd .quiz-progress-track {
    background: #cbd5e1 !important;
}
body.theme-light-adhd .progress-bg-circle {
    stroke: #cbd5e1 !important;
}
body.theme-light-adhd .progress-bar-circle {
    stroke: var(--color-accent) !important;
}
