
        :root {
            --primary: #f59e0b;
            --primary-dark: #d97706;
            --bg-gradient: linear-gradient(90deg, #a6ddff 0%, #4c8fff 100%);
            --card-bg: #ffffff;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --accent-red: #ef4444;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }header {
            text-align: center;
            padding: 20px 0;
            color: white;
            position: relative;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5px;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 4px;
        }

        .logo span {
            color: var(--primary);
        }

        .menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 2.2rem;
            cursor: pointer;
            line-height: 1;
            transition: transform 0.2s;
        }

        .menu-btn:hover {
            transform: scale(1.1);
        }

        .tagline {
            font-size: 0.95rem;
            opacity: 0.8;
            font-weight: 300;
            text-align: left;
            width: 100%;
            padding: 0 5px;
        }

        .card {
            background: var(--card-bg);
            border-radius: 28px;
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .card h2 {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .sub {
            margin-top: 6px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .age-badge {
            margin-top: 12px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            background: #fef3c7;
            color: #92400e;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .list {
            margin-top: 16px;
            display: grid;
            gap: 12px;
        }

        .item {
            padding: 14px 16px;
            border-radius: 16px;
            background: #f8fafc;
            display: grid;
            gap: 6px;
        }

        .item-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .name {
            font-weight: 800;
            font-size: 1rem;
        }

        .age {
            font-size: 0.85rem;
            color: #475569;
            background: #e2e8f0;
            padding: 4px 8px;
            border-radius: 999px;
        }

        .desc {
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .meta {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .empty {
            margin-top: 16px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            z-index: 2000;
            transition: right 0.3s ease-out;
            padding: 20px;
            color: #0f172a;
            text-align: left;
        }

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

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .menu-header h2 {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #64748b;
        }

        .menu-nav ul {
            list-style: none;
        }

        .menu-nav li {
            margin-bottom: 10px;
        }

        .menu-nav a {
            text-decoration: none;
            color: #0f172a;
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 12px;
            transition: all 0.2s;
        }

        .menu-nav a:hover {
            background: #f1f5f9;
            transform: translateX(5px);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            display: none;
            backdrop-filter: blur(4px);
        }

        .menu-overlay.active {
            display: block;
        }

    