:root {
    --primary: #0a6c74;
    --primary-dark: #064b51;
    --accent: #d4a373;
    --bg: #f7f8f9;
    --card-bg: #ffffff;
    --text: #22303c;
    --muted: #5f6c7b;
    --danger: #c0392b;
    --success: #1f7a40;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.2rem 3rem;
}

.site-header {
    background: var(--card-bg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
    padding: 0.9rem 1.6rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
}

.brand .title {
    line-height: 1.1;
}

.brand:hover {
    color: var(--primary);
}

.brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: var(--card-bg);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(10, 108, 116, 0.08);
    color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 108, 116, 0.2);
}

.nav-toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle-label {
    font-size: 0.95rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a,
.nav-links .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.75);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links .nav-link:hover,
.dropdown.active .dropdown-toggle,
.nav-dropdown.active .nav-more-toggle {
    background: rgba(10, 108, 116, 0.12);
    color: var(--primary);
}

.dropdown,
.nav-dropdown {
    position: relative;
}

.dropdown-toggle,
.nav-more-toggle {
    font: inherit;
    cursor: pointer;
}

.dropdown-toggle:focus-visible,
.nav-more-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 108, 116, 0.25);
}

.dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.2s ease;
    margin-left: 0.15rem;
}

.dropdown.active .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-more-toggle {
    background: transparent;
}

.dropdown .dropdown-menu,
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-width: 200px;
    padding: 0.4rem 0;
    margin: 0;
    list-style: none;
    display: none;
    z-index: 1000;
}

.dropdown.active .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li + li {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.1rem;
    color: rgba(15, 23, 42, 0.75);
    font-weight: 500;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(10, 108, 116, 0.12);
    color: var(--primary);
    text-decoration: none;
}


main.container {
    padding-top: 2.5rem;
}

.site-footer {
    background: transparent;
    text-align: center;
    color: var(--muted);
    padding: 1.5rem 0 3rem;
}

.hero {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--muted);
}

.actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius);
    border: none;
    background: #e3e8ee;
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(10, 108, 116, 0.18);
}

.button.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.button.danger {
    background: var(--danger);
    color: #fff;
}

.link-button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
    font-size: 0.95rem;
}

.link-button.danger {
    color: var(--danger);
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card h2 {
    margin-top: 0;
}

.flash {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.flash.success {
    background: rgba(31, 122, 64, 0.1);
    color: var(--success);
}

.flash.error {
    background: rgba(192, 57, 43, 0.1);
    color: var(--danger);
}

.errors {
    background: rgba(192, 57, 43, 0.08);
    color: var(--danger);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.2rem;
}

.errors ul {
    margin: 0;
    padding-left: 1.2rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

label.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 500;
    margin: 0.8rem 0 1rem;
}

label.checkbox input[type="checkbox"] {
    margin: 0.2rem 0 0;
    width: auto;
    flex-shrink: 0;
}

label.checkbox span {
    line-height: 1.4;
}

label.checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.text-muted {
    color: rgba(15, 23, 42, 0.55);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius);
    border: 1px solid #d9e2ec;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 108, 116, 0.15);
}

textarea {
    resize: vertical;
}

.auth,
.settings,
.goals,
.dashboard,
.leaderboard,
.api-tokens {
    max-width: 720px;
    margin: 0 auto;
}

.auth-grid {
    display: grid;
    gap: 1.5rem;
}

.auth-grid .card {
    margin: 0;
}

.switch {
    margin-top: 1rem;
    color: var(--muted);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: linear-gradient(155deg, rgba(10, 108, 116, 0.08), rgba(10, 108, 116, 0.02));
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(10, 108, 116, 0.12);
    top: -60px;
    right: -40px;
    filter: blur(0);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.stat-card h3 {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(15, 23, 42, 0.72);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-card .metric {
    margin-top: 0.75rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.stat-card .metric span {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.6);
    font-weight: 500;
}

.stat-card small {
    display: block;
    margin-top: 0.7rem;
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.9rem;
}

.stat .metric {
    font-size: 2rem;
    font-weight: 700;
}

.goal-card .progress {
    background: #eef2f7;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0.8rem 0;
    height: 10px;
}

.goal-card .bar {
    background: var(--accent);
    height: 10px;
    transition: width 0.4s ease;
}

.recent-logs ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-logs li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #eef2f7;
}

.recent-logs li:last-child {
    border-bottom: none;
}

.recent-logs strong {
    display: block;
    margin-bottom: 0.4rem;
}

.tab {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius) var(--radius) 0 0;
    background: rgba(10, 108, 116, 0.08);
    margin-right: 0.4rem;
}

.tab.active {
    background: var(--card-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

.leaderboard table,
.goal-card table,
.token-list table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard th,
.leaderboard td,
.goal-card th,
.goal-card td,
.token-list th,
.token-list td {
    text-align: left;
    border-bottom: 1px solid #eef2f7;
    padding: 0.75rem 0.6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e0e7ef;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(31, 122, 64, 0.14);
    color: var(--success);
}

.badge-active {
    background: rgba(10, 108, 116, 0.18);
    color: var(--primary-dark);
}

.developer-docs .code-block {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.35);
}

.developer-docs .code-block strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94c5ff;
    margin-bottom: 0.75rem;
}

.developer-docs .code-block pre {
    margin: 0;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: auto;
    background: none;
    color: inherit;
}

.developer-docs code {
    background: #0f172a;
    color: #e2e8f0;
    padding: 0.15rem 0.45rem;
    border-radius: 0.35rem;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9em;
}

.api-docs code {
    display: block;
    background: #161b22;
    color: #f4f8fb;
    padding: 0.9rem;
    border-radius: var(--radius);
    overflow-x: auto;
}

.api-docs ul {
    list-style: none;
    padding-left: 0;
}

.api-docs li {
    margin-bottom: 0.4rem;
    color: var(--muted);
}

.inline-label {
    display: block;
    margin-bottom: 1rem;
}

.fine-print {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.fine-print.error {
    color: var(--danger);
}

.passkey-table {
    width: 100%;
    border-collapse: collapse;
}

.passkey-table th,
.passkey-table td {
    border-bottom: 1px solid #eef2f7;
    padding: 0.75rem 0.6rem;
    text-align: left;
}

.passkey-table tr:last-child td {
    border-bottom: none;
}

.quote {
    max-width: 720px;
    margin: 3rem auto;
    text-align: center;
    font-style: italic;
    color: var(--muted);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature {
    background: var(--card-bg);
    padding: 1.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media (min-width: 780px) {
    .auth-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Completion Goal Styles */
.completion-goal-card .completion-bar {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.daily-targets-mini {
    background: rgba(23, 162, 184, 0.1);
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0.5rem 0;
    text-align: center;
}

.daily-targets-mini small {
    color: var(--primary-dark);
    font-weight: 600;
}

.goal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.goal-actions .button {
    flex: 1;
    min-width: 120px;
}

/* Reading Progress Page Styles */
.progress {
    background: #eef2f7;
    border-radius: var(--radius);
    overflow: hidden;
    height: 12px;
    margin: 0.8rem 0;
}

.progress .bar {
    background: linear-gradient(135deg, var(--accent), #c7956d);
    height: 100%;
    transition: width 0.4s ease;
}

select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius);
    border: 1px solid #d9e2ec;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: white;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 108, 116, 0.15);
}

/* Tools Showcase Section */
.tools-showcase {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow);
}

.tools-showcase h2 {
    margin: 0 0 0.5rem 0;
    color: var(--primary);
    font-size: 2rem;
}

.tools-showcase > p {
    color: var(--muted);
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tool-preview {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-preview h3 {
    margin: 0 0 0.75rem 0;
    color: var(--text);
    font-size: 1.3rem;
}

.tool-preview p {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.tools-cta {
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .site-header .container {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        padding: 0.8rem 1.1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        width: 100%;
        margin-left: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        width: 100%;
        padding: 0.65rem 0 0.4rem;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-links.nav-links-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .nav-links .nav-link {
        justify-content: space-between;
        width: 100%;
        padding: 0.6rem 0.9rem;
    }

    .dropdown .dropdown-menu,
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: var(--radius);
        margin-top: 0.4rem;
        display: none;
        padding: 0.35rem 0;
        background: rgba(10, 108, 116, 0.06);
        overflow: hidden;
    }

    .nav-dropdown.active .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.1rem;
        font-size: 0.95rem;
    }

    .dropdown-menu li + li {
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-links .nav-link {
        font-size: 1rem;
    }

    .nav-links .dropdown-arrow {
        font-size: 0.8rem;
        margin-left: 0.35rem;
    }

    .goal-actions {
        flex-direction: column;
    }

    .goal-actions .button {
        flex: none;
    }
}

.policy {
    max-width: 840px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.policy h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.policy h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.policy ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0;
}

.policy p {
    margin: 0.75rem 0;
}

.not-found {
    max-width: 640px;
    margin: 4rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.not-found-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.not-found h1 {
    margin-bottom: 1rem;
}

.not-found p {
    margin-bottom: 2rem;
    color: var(--muted);
}

.not-found-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.not-found-actions .button {
    min-width: 160px;
}
/* Enhanced Dashboard - Mobile-Style Stats */
.reading-journey-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.reading-journey-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.reading-journey-card .card-header .icon {
    font-size: 1.5rem;
}

.reading-journey-card .card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.current-streak-highlight {
    background: linear-gradient(135deg, rgba(10, 108, 116, 0.1) 0%, rgba(10, 108, 116, 0.05) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.current-streak-highlight .streak-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.current-streak-highlight .streak-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.current-streak-highlight .streak-unit {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-chip {
    background: var(--bg);
    border-radius: 10px;
    padding: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-chip .stat-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.stat-chip .stat-content {
    flex: 1;
}

.stat-chip .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 0.25rem;
    opacity: 0.75;
}

.stat-chip .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

/* Stat chip color variants */
.stat-chip-green {
    background: rgba(46, 213, 115, 0.08);
    border-color: rgba(46, 213, 115, 0.2);
}

.stat-chip-green .stat-label {
    color: #1f7a40;
}

.stat-chip-orange {
    background: rgba(255, 152, 0, 0.08);
    border-color: rgba(255, 152, 0, 0.2);
}

.stat-chip-orange .stat-label {
    color: #d97706;
}

.stat-chip-purple {
    background: rgba(155, 81, 224, 0.08);
    border-color: rgba(155, 81, 224, 0.2);
}

.stat-chip-purple .stat-label {
    color: #7c3aed;
}

.stat-chip-blue {
    background: rgba(33, 150, 243, 0.08);
    border-color: rgba(33, 150, 243, 0.2);
}

.stat-chip-blue .stat-label {
    color: #1565c0;
}

@media (max-width: 600px) {
    .stats-grid-compact {
        grid-template-columns: 1fr;
    }
}
