:root {
            --bg-base: #faf9f6;
            --bg-surface: #ffffff;
            --border-color: #1e293b;
            --text-primary: #1e293b;
            --text-secondary: #64748b;

            /* Cartoon accent colors */
            --accent-primary: #7c3aed;
            --accent-secondary: #ec4899;
            --accent-success: #22c55e;
            --accent-yellow: #facc15;

            /* Cartoon Neobrutalism Shadows */
            --card-shadow: 6px 6px 0px #1e293b;
            --button-shadow: 4px 4px 0px #1e293b;
            --button-hover-shadow: 2px 2px 0px #1e293b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-base);
            background-image: radial-gradient(rgba(30, 41, 59, 0.12) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }

        /* Ambient Glow Hidden */
        .ambient-glow {
            display: none;
        }

        /* Navbar styling - Premium Cartoon/Neobrutalism */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 5%;
            background: #ffffff;
            border-bottom: 2px solid #1e293b;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .brand-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            border: 2px solid #1e293b;
            box-shadow: 3px 3px 0px #1e293b;
        }

        .nav-links {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .nav-links a {
            font-family: 'Fredoka', sans-serif;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s, transform 0.2s;
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--accent-primary);
            transform: translateY(-1px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -4px;
            left: 0;
            background: var(--accent-primary);
            border-radius: 99px;
            transition: width 0.2s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Mobile Hamburger Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
            padding: 4px;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.4);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 9999;
        }

        .menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            border-left: 2px solid #1e293b;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            padding: 24px;
            text-align: left;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 2px dashed #1e293b;
            margin-bottom: 24px;
        }

        .menu-close {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
            outline: none;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-menu-links a {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu-links a:hover {
            color: var(--accent-primary);
        }

        .btn-login-mobile {
            margin-top: 15px;
            background: var(--accent-primary);
            color: #fff !important;
            padding: 12px;
            border-radius: 12px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid #1e293b;
            box-shadow: 4px 4px 0px #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: transform 0.1s ease, box-shadow 0.1s ease;
            text-decoration: none !important;
        }

        .btn-login-mobile:active {
            transform: translate(2px, 2px);
            box-shadow: none;
        }

        @media (max-width: 1100px) {
            .nav-links {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
        }

        /* Content Container */
        .content-container {
            max-width: 900px;
            margin: 120px auto 60px;
            padding: 40px 32px;
            background: var(--bg-surface);
            border: 2px solid #1e293b;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
        }

        h1 {
            font-family: 'Fredoka', sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .last-updated {
            color: #1e293b;
            background: var(--accent-yellow);
            border: 2px solid #1e293b;
            border-radius: 8px;
            padding: 6px 16px;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 3px 3px 0px #1e293b;
            transform: rotate(-1deg);
        }

        h2 {
            font-family: 'Fredoka', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin: 36px 0 16px;
            color: var(--text-primary);
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h2::before {
            content: '👉';
            font-size: 20px;
        }

        p {
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 20px;
        }

        ul, ol {
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 24px;
            padding-left: 24px;
        }

        li {
            margin-bottom: 8px;
        }

        /* Footer */
        .footer {
            background: #ffffff;
            padding: 80px 5% 40px;
            border-top: 2px solid #1e293b;
            position: relative;
            margin-top: 80px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            gap: 50px;
            text-align: left;
        }

        .footer-col {
            flex: 1.5;
            min-width: 250px;
        }

        .footer-col.links-col {
            flex: 1;
        }

        .footer-col p {
            color: var(--text-secondary);
            margin-top: 20px;
            font-size: 15px;
            max-width: 320px;
        }

        .footer-col h3 {
            font-family: 'Fredoka', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 24px;
            position: relative;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            font-family: 'Fredoka', sans-serif;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 80px;
            padding-top: 30px;
            border-top: 2px dashed #1e293b;
            color: var(--text-secondary);
            font-size: 15px;
        }

        @media (max-width: 768px) {
            .content-container {
                margin: 100px 16px 40px;
                padding: 24px 20px;
                border-radius: 16px;
            }

            h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 18px;
            }
        }
