@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-main: #0B0F19;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --bg-surface-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-active: rgba(147, 51, 234, 0.4);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    --accent-purple: #8B5CF6;
    --accent-indigo: #6366F1;
    --accent-pink: #EC4899;
    
    --grad-text: linear-gradient(135deg, #A855F7 0%, #6366F1 50%, #EC4899 100%);
    --grad-glow: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.15) 50%, rgba(236, 72, 153, 0.15) 100%);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --bg-glow-1: rgba(139, 92, 246, 0.15);
    --bg-glow-2: rgba(236, 72, 153, 0.12);
}

[data-theme="light"] {
    --bg-main: #F3F4F6;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --bg-surface-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-active: rgba(139, 92, 246, 0.3);
    
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    
    --accent-purple: #7C3AED;
    --accent-indigo: #4F46E5;
    --accent-pink: #EC4899;
    
    --grad-text: linear-gradient(135deg, #7C3AED 0%, #4F46E5 50%, #EC4899 100%);
    --grad-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(79, 70, 229, 0.08) 50%, rgba(236, 72, 153, 0.08) 100%);
    
    --bg-glow-1: rgba(139, 92, 246, 0.06);
    --bg-glow-2: rgba(236, 72, 153, 0.05);
}

/* Enable smooth transitioning for theme variables */
body, header, .panel, .stat-card, input, select, textarea, table, th, td, a, .recent-card, .btn-theme-toggle {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background blur effects */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, var(--bg-glow-1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--bg-glow-2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700;
    font-size: 1.75rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--bg-surface);
    border-color: var(--border-color);
}

.nav-links a.active {
    background: var(--grad-glow);
    border-color: var(--border-color-active);
    color: var(--text-primary);
}

/* Layout Grids */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 968px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Glassmorphic Panel Styles */
.panel {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.panel:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Stats Row */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-color-active);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Quote Panel */
.quote-display {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-personal {
    background: rgba(139, 92, 246, 0.15);
    color: #C084FC;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge-zen {
    background: rgba(99, 102, 241, 0.15);
    color: #818CF8;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

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

.quote-body-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.5;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.quote-text::before {
    content: '“';
    position: absolute;
    top: -1.5rem;
    left: -2rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
}

.quote-text::after {
    content: '”';
    position: absolute;
    bottom: -3.5rem;
    right: -2rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
}

.quote-author {
    text-align: center;
    font-weight: 500;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.quote-author::before {
    content: '—';
    color: var(--accent-purple);
}

.quote-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-text);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-surface-hover);
    border-color: var(--text-secondary);
}

/* Feed Header & Grid */
.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

@media (max-width: 768px) {
    .feed-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar for scrollable div */
.feed-grid::-webkit-scrollbar {
    width: 6px;
}

.feed-grid::-webkit-scrollbar-track {
    background: transparent;
}

.feed-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.feed-grid::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.recent-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recent-card:hover {
    border-color: var(--border-color-active);
    transform: translateY(-2px);
    background: var(--bg-surface-hover);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.recent-card-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.recent-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.5rem;
}

.recent-card-author {
    font-weight: 500;
}

/* Forms (Admin Panel) */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

/* Alerts and Notifications */
.alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dynamic Sparkle / Spin animation for loader */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Admin Logs Dashboard Styles */
.admin-dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Admin dashboard is always single-column */

.analytics-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
}

.analytics-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-indigo);
    margin-bottom: 0.25rem;
}

.analytics-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logs-section {
    margin-top: 1.5rem;
}

.logs-table-container {
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.15);
}

.logs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.logs-table th {
    position: sticky;
    top: 0;
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 1;
}

.logs-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.logs-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.badge-method {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-get {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-post {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.badge-put {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.badge-delete {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.btn-logout {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-logout:hover {
    border-color: #f87171;
    color: #f87171;
    background: rgba(239, 68, 68, 0.05);
}

.grid-two-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.analytics-list {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.analytics-list h3 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.analytics-list-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.analytics-list-item:last-child {
    border-bottom: none;
}

/* Footer Section */
.site-footer {
    margin-top: 6rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    width: 100%;
}

.site-footer .footer-copyright {
    letter-spacing: 0.5px;
    font-weight: 300;
}

.site-footer .footer-socials {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-footer .footer-socials a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.site-footer .footer-socials a:hover {
    color: var(--text-primary);
    text-decoration: none;
}

.site-footer .footer-socials svg {
    stroke-width: 1.8;
    color: var(--text-secondary);
    transition: var(--transition);
}

.site-footer .footer-socials a:hover svg {
    color: var(--text-primary);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .site-footer {
        gap: 1rem;
    }
}

/* ==========================================
   THEME SWITCHING & NEW COMPONENT STYLES
   ========================================== */

/* Theme Toggle Button */
.btn-theme-toggle {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.btn-theme-toggle:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-color-active);
    color: var(--accent-purple);
    transform: scale(1.05);
}

.btn-theme-toggle svg {
    transition: transform 0.5s ease;
}

.btn-theme-toggle:hover svg {
    transform: rotate(30deg);
}

/* Section Header (shared) */
.zen-section-header {
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
}

.section-title svg {
    color: var(--accent-purple);
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
    margin-left: 2rem;
}

/* Authors Daily Wisdom — Horizontal Scrollable Cards */
.authors-daily-section {
    margin-bottom: 4rem;
    position: relative;
}

.authors-carousel-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.authors-carousel-container::-webkit-scrollbar {
    height: 6px;
}

.authors-carousel-container::-webkit-scrollbar-track {
    background: transparent;
}

.authors-carousel-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.authors-cards-track {
    display: flex;
    gap: 1.25rem;
    min-width: max-content;
    padding: 0.25rem;
}

.author-daily-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    width: 300px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-daily-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-active);
    background: var(--bg-surface-hover);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.12);
}

.author-daily-card-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.author-daily-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.5rem;
}

.author-daily-card-author {
    font-weight: 600;
    color: var(--text-secondary);
}

/* (Authors grid replaced by carousel above) */

/* Adjustments for light theme elements */
[data-theme="light"] body {
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}

[data-theme="light"] .panel {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .stat-card,
[data-theme="light"] .recent-card,
[data-theme="light"] .author-daily-card,
[data-theme="light"] .analytics-list,
[data-theme="light"] .analytics-card {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .recent-card:hover,
[data-theme="light"] .author-daily-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #1F2937;
}

[data-theme="light"] .form-input:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1);
}

[data-theme="light"] .logs-table th {
    background: rgba(0, 0, 0, 0.03);
    color: #374151;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .logs-table td {
    color: #4B5563;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .logs-table tr:hover td {
    background: rgba(0, 0, 0, 0.015);
}

[data-theme="light"] .quote-text::before,
[data-theme="light"] .quote-text::after {
    color: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .badge-personal {
    background: rgba(124, 58, 237, 0.08);
    color: #7C3AED;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

[data-theme="light"] .badge-zen {
    background: rgba(79, 70, 229, 0.08);
    color: #4F46E5;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

[data-theme="light"] .analytics-val {
    color: var(--accent-purple);
}

/* Comprehensive Mobile Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 1rem;
    }
    header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .quote-text {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    .panel {
        padding: 1.25rem;
    }
    .grid-two-col {
        grid-template-columns: 1fr;
    }
    .authors-daily-section {
        margin-bottom: 2rem;
    }
    .author-daily-card {
        width: 240px;
        min-width: 240px;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .section-subtitle {
        font-size: 0.8rem;
        margin-left: 0;
        display: block;
        margin-top: 0.25rem;
    }
    .zen-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat-card {
        padding: 1rem;
    }
    .stat-value {
        font-size: 1.5rem;
    }
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    .quote-text {
        font-size: 1.1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

