:root {
            --bg: #05070a;
            --card-bg: rgba(255,255,255,0.03);
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(255,255,255,0.2);
            --text: #ffffff;
            --muted: #94a3b8;
            --common: #9ca3af;
            --uncommon: #60a5fa;
            --rare: #c084fc;
            --legendary: #e879f9;
            --mythical: #f87171;
        }
        * { margin:0; padding:0; box-sizing:border-box; font-family:'Outfit',sans-serif; }

        body {
            background: var(--bg);
            background-image: radial-gradient(ellipse 80% 50% at 50% -10%, #1e293b, transparent);
            color: var(--text);
            min-height: 100vh;
        }



        /* ─── NAVIGATION ─── */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 100;
        }
        .nav-brand {
            font-size: 1.5rem;
            font-weight: 800;
            text-decoration: none;
            color: #fff;
            letter-spacing: -1.5px;
            transition: transform 0.2s;
        }
        .nav-brand:hover { transform: scale(1.05); }
        .nav-brand span { color: #f87171; }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.2s;
            position: relative;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #fff;
        }
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--mythical);
            border-radius: 2px;
        }

        header {
            padding: 3rem 2rem 2rem;
            text-align: center;
        }
        .brand {
            font-size: 4rem;
            font-weight: 800;
            letter-spacing: -3px;
            background: linear-gradient(135deg, #fff 30%, #64748b);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 2rem;
        }
        .brand span { color: #f87171; -webkit-text-fill-color: #f87171; }

        /* ─── FLIP CLOCK ─── */
        .countdown-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        .countdown-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            transition: color 0.3s;
        }
        .flip-clock {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .flip-seg {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        .flip-num {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            font-variant-numeric: tabular-nums;
            letter-spacing: -1px;
        }
        .flip-unit {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted);
        }
        .flip-colon {
            font-size: 2rem;
            font-weight: 800;
            color: rgba(255,255,255,0.2);
            margin-bottom: 1.5rem;
            line-height: 1;
        }
        .flip-num.urgent { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }

        /* ─── PLAY BUTTON ─── */
        .play-btn {
            display: inline-flex;
            align-items: center;
            gap: 0;
            border-radius: 50px;
            overflow: hidden;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 28px var(--btn-glow, rgba(239,68,68,0.3));
        }
        .play-btn:hover { transform: scale(1.04); box-shadow: 0 0 44px var(--btn-glow, rgba(239,68,68,0.5)); }
        .play-btn-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.25);
            flex-shrink: 0;
        }
        .play-btn-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
            filter: drop-shadow(0 0 6px rgba(255,255,255,0.3));
        }
        .play-btn-text {
            padding: 0 1.5rem 0 1rem;
            color: #fff;
            height: 48px;
            display: flex;
            align-items: center;
        }

        .pill {
            font-size: 0.8rem;
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.04);
            color: var(--muted);
        }

        /* ─── RARITY FILTER ─── */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            padding: 0 1rem;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1.5rem;
        }
        .filter-divider {
            width: 1px;
            height: 16px;
            background: var(--border);
            display: none;
        }
        .rf-btn {
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: transparent;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            user-select: none;
        }
        .rf-btn:active { transform: scale(0.95); }
        .rf-btn:hover { border-color: var(--border-hover); color: #fff; }
        .rf-btn.active { background: rgba(255,255,255,0.1); border-color: var(--rf-color, #fff); color: var(--rf-color, #fff); box-shadow: 0 0 12px var(--rf-glow, transparent); }
        
        .rf-mythical    { --rf-color: var(--mythical); --rf-glow: rgba(248,113,113,0.3); }
        .rf-legendary   { --rf-color: var(--legendary); --rf-glow: rgba(232,121,249,0.3); }
        .rf-rare        { --rf-color: var(--rare); --rf-glow: rgba(192,132,252,0.3); }
        .rf-uncommon    { --rf-color: var(--uncommon); --rf-glow: rgba(96,165,250,0.3); }
        .rf-common      { --rf-color: var(--common); --rf-glow: rgba(156,163,175,0.3); }
        .rf-source-normal { --rf-color: #94a3b8; --rf-glow: rgba(148,163,184,0.2); }
        .rf-source-mirage { --rf-color: #60a5fa; --rf-glow: rgba(96,165,250,0.3); }

        .history-search-container {
            width: 100%;
            max-width: 400px;
            position: relative;
            margin-top: 0.4rem;
        }
        .history-search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.6rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 50px;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: all 0.2s;
        }
        .history-search-input:focus {
            outline: none;
            border-color: var(--legendary);
            background: rgba(255,255,255,0.07);
            box-shadow: 0 0 15px rgba(232, 121, 249, 0.1);
        }
        .history-search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.4;
            pointer-events: none;
        }

        /* ─── TABS ─── */
        .tabs {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 0 2rem 2rem;
        }
        .tab-btn {
            padding: 0.65rem 1.8rem;
            border-radius: 50px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--muted);
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
        }
        .tab-btn:active { transform: scale(0.95); }
        .tab-btn.active {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }
        @media (max-width: 600px) {
            .tab-btn { padding: 0.5rem 1.4rem; font-size: 0.9rem; }
        }

        /* ─── MAIN ─── */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem; }
        .tab-panel { display: none; }
        .tab-panel.active { display: block; }

        /* ─── STOCK GRID ─── */
        .stock-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.2rem;
        }
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(.175,.885,.32,1.275), border-color 0.3s, box-shadow 0.3s;
            cursor: default;
            animation: cardAppear 0.5s backwards;
        }
        .card:hover { transform: translateY(-5px); border-color: var(--border-hover); background: rgba(255,255,255,0.06); }
        @keyframes cardAppear {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .card::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
            transform: skewX(-25deg);
            animation: shineOnEntry 0.8s forwards;
            animation-delay: inherit;
        }
        @keyframes shineOnEntry {
            0% { left: -100%; }
            100% { left: 200%; }
        }
        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 80% 10%, var(--rc, transparent), transparent 65%);
            opacity: 0.12;
            pointer-events: none;
        }
        .card:hover {
            transform: translateY(-8px);
            border-color: var(--border-hover);
            box-shadow: 0 16px 40px rgba(0,0,0,0.35);
        }
        .card:hover .fruit-img { transform: scale(1.08) rotate(-2deg); }

        /* ─── MYTHICAL PRIORITY ─── */
        .card.rc-mythical {
            border-color: rgba(248, 113, 113, 0.4);
            box-shadow: 0 0 20px rgba(248, 113, 113, 0.1);
            animation: cardAppearMythical 0.8s cubic-bezier(.175,.885,.32,1.275) backwards, mythicalPulse 2s infinite alternate ease-in-out;
        }
        .card.rc-mythical::after {
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
            animation-duration: 1.2s;
        }
        @keyframes cardAppearMythical {
            from { opacity: 0; transform: translateY(60px) scale(0.5) rotate(-3deg); filter: brightness(3) blur(5px); }
            to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); filter: brightness(1) blur(0px); }
        }
        @keyframes mythicalPulse {
            from { box-shadow: 0 0 15px rgba(248, 113, 113, 0.15); border-color: rgba(248, 113, 113, 0.4); }
            to { box-shadow: 0 0 35px rgba(248, 113, 113, 0.3); border-color: rgba(248, 113, 113, 0.7); }
        }

        /* ─── LEGENDARY STYLE ─── */
        .card.rc-legendary {
            border-color: rgba(232, 121, 249, 0.3);
            box-shadow: 0 0 15px rgba(232, 121, 249, 0.1);
            animation: cardAppearLegendary 0.6s ease-out backwards;
        }
        @keyframes cardAppearLegendary {
            from { opacity: 0; transform: translateY(30px) scale(0.85); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .rarity-badge {
            font-size: 0.6rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            background: var(--rc, #555);
            box-shadow: 0 0 12px var(--rc, transparent);
            color: #fff;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }
        .fruit-img-wrap { width: 130px; height: 130px; margin-bottom: 0.75rem; position: relative; z-index: 1; }
        .fruit-img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s ease; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
        .fruit-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.2rem; position: relative; z-index: 1; }
        .fruit-type { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.9rem; position: relative; z-index: 1; }
        .prices { display: flex; gap: 0.5rem; width: 100%; margin-top: auto; position: relative; z-index: 1; }
        .price-box {
            flex: 1;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.55rem 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }
        
        /* ─── RESTOCKING STATE ─── */
        #restocking-label {
            display: none;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--mythical);
            letter-spacing: 4px;
            text-transform: uppercase;
            animation: restockPulse 1.5s infinite;
        }
        @keyframes restockPulse {
            0%, 100% { opacity: 1; filter: brightness(1.5) drop-shadow(0 0 10px var(--mythical)); }
            50% { opacity: 0.4; filter: brightness(1) drop-shadow(0 0 0px transparent); }
        }
        .is-restocking .flip-clock { display: none; }
        .is-restocking #restocking-label { display: block; }
        .is-restocking .countdown-label { opacity: 0.5; }

        .play-btn { color: #60a5fa; }
        /* ─── MIRAGE SECTION ─── */
        .section-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border);
        }
        .section-header h2 { font-size: 1.5rem; font-weight: 800; }
        .section-header .badge {
            background: linear-gradient(135deg, #60a5fa, #c084fc);
            font-size: 0.65rem;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .mirage-card {
            border-color: rgba(96, 165, 250, 0.2) !important;
            background: linear-gradient(180deg, rgba(96, 165, 250, 0.05) 0%, rgba(0,0,0,0) 100%) !important;
        }

        .price-label { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
        .price-val { font-size: 0.95rem; font-weight: 700; }
        .beli { color: #4ade80; }
        .robux { color: #60a5fa; }

        /* Rarity color bindings */
        .rc-common    { --rc: var(--common); }
        .rc-uncommon  { --rc: var(--uncommon); }
        .rc-rare      { --rc: var(--rare); }
        .rc-legendary { --rc: var(--legendary); }
        .rc-mythical  { --rc: var(--mythical); }

        /* ─── SKELETON ─── */
        .skeleton-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 1.2rem;
        }
        .skeleton-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
        }
        .sk { background: rgba(255,255,255,0.06); border-radius: 8px; animation: pulse 1.5s ease-in-out infinite; }
        .sk-badge { width: 60px; height: 18px; border-radius: 50px; margin-bottom: 0.75rem; }
        .sk-img { width: 140px; height: 140px; border-radius: 20px; margin-bottom: 0.8rem; }
        .sk-name { width: 120px; height: 24px; border-radius: 4px; margin-bottom: 0.2rem; }
        .sk-type { width: 80px; height: 14px; border-radius: 4px; margin-bottom: 1rem; }
        .sk-prices { display: flex; gap: 0.6rem; width: 100%; margin-top: auto; }
        .sk-price { flex: 1; height: 42px; border-radius: 10px; }
        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }

        /* ─── HISTORY TIMELINE ─── */
        .history-timeline {
            position: relative;
            padding-left: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .history-timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 10px;
            bottom: 0;
            width: 2px;
            background: var(--border);
            z-index: 0;
        }
        .timeline-item {
            position: relative;
            z-index: 1;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1rem 1.2rem;
            transition: transform 0.2s, border-color 0.2s;
        }
        .timeline-item:hover {
            border-color: var(--border-hover);
            transform: translateX(4px);
        }
        .timeline-dot {
            position: absolute;
            left: calc(-2rem + 8px);
            top: 1.2rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--bg);
            border: 3px solid var(--rc, var(--muted));
            box-shadow: 0 0 10px var(--rc, transparent);
            z-index: 2;
            transform: translateX(-50%);
        }
        .timeline-time {
            font-size: 0.8rem;
            color: var(--muted);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        /* 2-column layout */
        .timeline-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        .timeline-col {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .timeline-col-label {
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--muted);
            opacity: 0.6;
        }
        .timeline-col-label.mirage { color: #60a5fa; opacity: 1; }
        .timeline-fruits {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        .tl-fruit {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--rc, var(--border));
            padding: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: transform 0.2s, background 0.2s;
            cursor: default;
        }
        .tl-fruit.tl-mirage {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            padding: 0.3rem;
        }
        .tl-fruit:hover {
            transform: scale(1.15) translateY(-2px);
            z-index: 2;
            background: rgba(255,255,255,0.1);
        }
        .tl-fruit img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
        }
        .tl-fruit::after {
            content: attr(data-name);
            position: absolute;
            bottom: -24px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.85);
            color: #fff;
            font-size: 0.7rem;
            padding: 0.25rem 0.6rem;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            font-weight: 600;
            z-index: 10;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .tl-fruit:hover::after {
            opacity: 1;
            transform: translateX(-50%) translateY(-2px);
        }
        @media (max-width: 600px) {
            .timeline-cols { grid-template-columns: 1fr; gap: 0.6rem; }
            .tl-fruit { width: 38px; height: 38px; }
            .tl-fruit.tl-mirage { width: 38px; height: 38px; }
        }

        /* ─── FOOTER ─── */
        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.75rem;
            color: var(--muted);
            border-top: 1px solid var(--border);
            line-height: 1.8;
        }
        footer a { color: var(--muted); text-decoration: none; margin: 0 0.5rem; }
        footer a:hover { color: #fff; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 600px) {
            .brand { font-size: 2.8rem; letter-spacing: -2px; }
            header { padding: 2rem 1rem 1.5rem; }
            .container { padding: 0 0.75rem 3rem; }
            .flip-num { width: 64px; height: 64px; font-size: 1.8rem; border-radius: 12px; }
            .flip-colon { font-size: 1.8rem; margin-bottom: 1.2rem; }
            .flip-clock { gap: 0.4rem; }

            .stock-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
            .card { padding: 1rem 0.75rem; border-radius: 16px; }
            .fruit-img-wrap { width: 85px; height: 85px; margin-bottom: 0.5rem; }
            .rarity-badge { font-size: 0.55rem; padding: 0.25rem 0.6rem; margin-bottom: 0.5rem; }
            .fruit-name { font-size: 1rem; }
            .fruit-type { font-size: 0.7rem; margin-bottom: 0.75rem; }
            .price-label { font-size: 0.55rem; }
            .price-val { font-size: 0.85rem; }
            .price-box { padding: 0.5rem 0.35rem; }

            .play-btn { font-size: 0.9rem; }
            .play-btn-icon { width: 48px; height: 48px; }
            .play-btn-text { height: 48px; padding: 0 1.2rem 0 0.8rem; }

            .tab-btn { padding: 0.8rem 1.4rem; font-size: 0.95rem; min-height: 48px; }
            .rf-btn { padding: 0.8rem 1.2rem; font-size: 0.8rem; min-height: 48px; }

            .skeleton-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
            .skeleton-card { padding: 1rem 0.75rem; border-radius: 16px; }
            .sk-img { width: 80px; height: 80px; }
        }

/* ─── LEGAL PAGES ─── */
.legal-container { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
        .page-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 0.5rem; }
        .page-title span { color: var(--mythical); }
        .subtitle { color: var(--muted); font-size: 1rem; margin-bottom: 3rem; }
        .legal-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }
        .legal-card h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
        .legal-card p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1rem; }
        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            transition: border-color 0.2s, background 0.2s;
            margin-bottom: 0.75rem;
        }
        .contact-method:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.07); }
        .contact-icon { font-size: 1.5rem; flex-shrink: 0; }
        .contact-label { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
        .contact-value { font-size: 1rem; font-weight: 600; color: #fff; }
        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.75rem;
            color: var(--muted);
            border-top: 1px solid var(--border);
        }
        footer a { color: var(--muted); text-decoration: none; margin: 0 0.5rem; }
        footer a:hover { color: #fff; }