/* =========================================
   1. VARIABLES & THEME SETUP (Redesign 4.0 - Clean & Concise)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Base Colors */
    --c-bg: #f8fafc;
    --c-surface: #ffffff;
    --c-text-main: #0f172a;
    --c-text-muted: #64748b;
    --c-primary: #4f46e5;
    /* Indigo */
    --c-primary-light: #eef2ff;
    --c-border: #e2e8f0;

    /* UI DNA */
    --radius-lg: 12px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* =========================================
   2. BASE STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="search"],
textarea,
select {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    background: white;
    width: 100%;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
    color: var(--c-text-main);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* =========================================
   3. LAYOUT
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--c-text-main);
    letter-spacing: -0.02em;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

/* =========================================
   4. COMPONENTS
   ========================================= */
.card {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--c-primary-light);
    color: var(--c-primary);
    margin-bottom: 1rem;
    align-self: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: var(--c-primary);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: white;
    color: var(--c-text-main);
    border: 1px solid var(--c-border);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* =========================================
   5. SEARCH & FILTER
   ========================================= */
.search-container {
    max-width: 600px;
    margin: 3rem auto 2rem;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    background: white;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.cat-filter {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: var(--c-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.cat-filter:hover {
    background: #e2e8f0;
}

.cat-filter.active {
    background: var(--c-primary);
    color: white;
}

/* =========================================
   6. LOADING SPINNER
   ========================================= */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   7. PROFILE PAGE STYLES
   ========================================= */
.profile-section {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-section:hover {
    border-color: var(--c-primary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.profile-header {
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-grid-full {
    grid-column: 1 / -1;
}

.newsletter-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.newsletter-status {
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-status.active {
    background: #dcfce7;
    color: #166534;
}

.newsletter-status.inactive {
    background: #f1f5f9;
    color: #64748b;
}

.newsletter-options {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-options.disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-grid-full {
        grid-column: 1;
    }
}

.footer {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--c-text-muted);
    font-size: 0.875rem;
}

img {
    max-width: 100%;
    height: auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-width: 0;
}

.header-currencies {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    flex-wrap: wrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-nav>div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--c-text-main);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--c-border);
    background: white;
    color: var(--c-text-main);
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .header-left {
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .header-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        background: white;
        border: 1px solid var(--c-border);
        border-radius: 12px;
        padding: 0.75rem;
        box-shadow: var(--shadow-sm);
    }

    .header-nav.is-open {
        display: flex;
    }

    .header-nav>div {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .header-nav .nav-link,
    .header-nav .btn,
    .header-nav .btn-secondary {
        width: 100%;
        justify-content: flex-start;
    }

    .header-nav .nav-link {
        display: inline-flex;
        align-items: center;
        padding: 0.55rem 0.85rem;
        border-radius: 10px;
    }

    .header-nav .nav-link:hover {
        background: #f1f5f9;
        color: var(--c-text-main);
    }
}

/* =========================================
   8. DARK MODE
   ========================================= */
[data-theme="dark"] {
    --c-bg: #0f172a;
    --c-surface: #1e293b;
    --c-text-main: #f8fafc;
    --c-text-muted: #94a3b8;
    --c-primary: #6366f1;
    /* Slightly lighter indigo for dark mode */
    --c-primary-light: rgba(99, 102, 241, 0.15);
    --c-border: #334155;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/* Dark mode specific fixes */
[data-theme="dark"] .header {
    background: rgba(30, 41, 59, 0.9);
    border-color: var(--c-border);
}

[data-theme="dark"] .header-currencies {
    background: var(--c-bg);
    color: var(--c-text-muted);
}

[data-theme="dark"] .newsletter-toggle {
    background: var(--c-bg);
    border-color: var(--c-border);
}

[data-theme="dark"] .newsletter-toggle:hover {
    background: var(--c-surface);
}

[data-theme="dark"] .newsletter-status.inactive {
    background: var(--c-bg);
    color: var(--c-text-muted);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: var(--c-bg);
    border-color: var(--c-border);
    color: var(--c-text-main);
}

/* Theme Toggle Button Styles */
.theme-toggle {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--c-text-main);
}

.theme-toggle:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    transform: scale(1.05);
    color: white;
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

[data-theme="dark"] .theme-toggle:hover {
    color: white;
}

@media (max-width: 768px) {
    .theme-toggle {
        width: 32px;
        height: 32px;
    }

    .theme-icon {
        font-size: 1rem;
    }
}

/* =========================================
   9. STATUS MESSAGES
   ========================================= */
.success-message,
.error-message,
.info-message {
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.error-message {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.info-message {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

[data-theme="dark"] .success-message {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.2);
}

[data-theme="dark"] .error-message {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.2);
}

[data-theme="dark"] .info-message {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.2);
}

/* =========================================
   10. TABLE STYLES
   ========================================= */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

th {
    text-align: left;
    background: var(--c-bg);
    padding: 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--c-border);
    color: var(--c-text-main);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

/* Row variations */
.row-warning {
    background: #fff7ed;
}

[data-theme="dark"] .row-warning {
    background: rgba(251, 191, 36, 0.1);
}

.badge-hidden {
    background: #fbbf24;
    color: #78350f;
    font-size: 0.65rem;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-weight: 700;
}

[data-theme="dark"] .badge-hidden {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.reason-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.reason-danger {
    background: #fee2e2;
    color: #991b1b;
}

.reason-warning {
    background: #fde68a;
    color: #92400e;
}

[data-theme="dark"] .reason-danger {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

[data-theme="dark"] .reason-warning {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

/* =========================================
   11. UTILITIES & HELPERS
   ========================================= */
.text-muted {
    color: var(--c-text-muted) !important;
}

.text-main {
    color: var(--c-text-main) !important;
}

.text-center {
    text-align: center !important;
}

.w-full {
    width: 100% !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

/* Form Controls */
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--c-bg);
    color: var(--c-text-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Auth Pages */
.auth-container {
    max-width: 450px;
    margin: 4rem auto;
    background: var(--c-surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--c-text-main);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-subtitle {
    color: var(--c-text-muted);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Detail Page specific */
.source-tag {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.source-tag:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    transform: translateY(-2px);
}

.clean-article header {
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 2rem;
}

mark {
    background: #fef3c7;
    color: #92400e;
    padding: 0 4px;
    border-radius: 3px;
    font-weight: 600;
}

[data-theme="dark"] mark {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

/* Profile Page Specific */
.profile-section {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.profile-header {
    color: var(--c-text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--c-border);
}

.newsletter-toggle {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
}

.newsletter-toggle:hover {
    background: var(--c-surface);
    transform: translateY(-1px);
}

.newsletter-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
}

.newsletter-status.active {
    color: #16a34a;
}

.newsletter-status.inactive {
    color: var(--c-text-muted);
}

.newsletter-options {
    transition: opacity 0.3s ease;
}

.newsletter-options.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.category-item {
    padding: 0.9rem;
    background: var(--c-surface);
    border-radius: 10px;
    border: 1px solid var(--c-border);
    transition: all 0.2s ease;
}

.category-item:hover {
    border-color: var(--c-primary);
    transform: translateY(-1px);
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: 1px solid #ef4444;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Custom Highlight Boxes */
.fact-box,
.diff-box {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.focus-box {
    padding: 1rem 1.25rem;
    background: var(--c-bg);
    border-radius: 8px;
    border-left: 4px solid var(--c-border);
}

[data-theme="dark"] .focus-box {
    background: var(--c-surface);
    border-left-color: var(--c-text-muted);
}

/* Modal Styles */
.newsletter-preview-modal {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

/* Input Range Styles */
input[type="range"] {
    background: var(--c-surface);
    border-radius: var(--radius-sm);
    height: 6px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--c-primary);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--c-primary);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

/* Checkbox Styles */
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 4px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
}

input[type="checkbox"]:checked {
    background: var(--c-primary);
    border-color: var(--c-primary);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    color: white;
    font-size: 14px;
    position: relative;
    top: -2px;
    left: 2px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   12. ADMIN DASHBOARD SPECIFIC
   ========================================= */
.admin-header {
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

[data-theme="dark"] .admin-header {
    background: var(--c-surface);
    border-color: var(--c-border);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
}

.stats-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.stats-card-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.daily-card {
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    background: var(--c-surface);
    transition: all 0.3s ease;
}

.daily-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--c-primary);
}