:root {
    /* Light Theme (Default) */
    --bg-color-main: #f5f7fa;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;

    --card-bg-glass: rgba(255, 255, 255, 0.85);
    --card-bg-light: rgba(248, 250, 252, 0.9);
    --card-border-glass: rgba(226, 232, 240, 0.8);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);

    --font-main: 'Heebo', sans-serif;
}

[data-theme="dark"] {
    --bg-color-main: #0a0e17;
    --text-primary: #f0f4f8;
    --text-secondary: #9aaabf;
    --accent-red: #ff3366;
    --accent-blue: #00d4ff;
    --accent-green: #00ff88;
    --accent-orange: #ff9900;

    --card-bg-glass: rgba(16, 22, 38, 0.6);
    --card-bg-light: rgba(255, 255, 255, 0.03);
    --card-border-glass: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color-main);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 20s infinite alternate ease-in-out;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.bg-shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.3) 0%, transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: -5s;
}

.bg-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-duration: 25s;
}

@keyframes drift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(30px, -30px);
    }
}

/* Layout */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-panel {
    background: var(--card-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border-glass);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.glass-panel-light {
    background: var(--card-bg-light);
    border: 1px solid var(--card-border-glass);
    border-radius: 10px;
    padding: 1.5rem;
}

/* Header Elements */
.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border-glass);
    margin-bottom: 20px;
}

.top-bar-controls {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: rgba(128, 128, 128, 0.05);
    border: 1px solid var(--card-border-glass);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: rgba(128, 128, 128, 0.15);
    transform: translateY(-2px);
}

.history-select {
    appearance: none;
    background-color: var(--card-bg-light);
    color: var(--text-primary);
    padding-right: 32px;
    padding-left: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
}

[dir="ltr"] .history-select {
    padding-left: 32px;
    padding-right: 12px;
}

[dir="ltr"] .top-bar-controls>div>span {
    left: 10px;
    right: auto !important;
}

.history-select:hover {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.btn-text {
    font-weight: 500;
}

.top-viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    color: var(--accent-blue);
    font-weight: bold;
    border: 1px solid rgba(0, 212, 255, 0.2);
    font-size: 1rem;
}

.eye-icon {
    font-size: 1.1rem;
}

.main-header {
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-weight: 700;
    color: var(--accent-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.main-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 20px auto;
    font-size: 0.95rem;
}

.signal-control-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 1.4rem;
}

.control-chip-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: start;
}

.control-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 700;
}

.control-help {
    color: var(--text-secondary);
    font-size: 0.82rem;
    line-height: 1.45;
    min-height: 2.3em;
}

.control-state-summary {
    margin-top: 1rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 14px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

/* Removed Status Badge Styles */

/* Status Bar & Refresh */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--card-border-glass);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.refresh-btn {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.refresh-btn:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Dashboard Grid */
.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#dashboard-data {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* זה הרווח בין כל הבלוקים */
}

.wow-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 1.5rem;
}

.signal-panel h3 {
    margin-bottom: 1rem;
}

.signal-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.signal-card {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal-card.empty-state {
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    min-height: 140px;
}

.signal-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.signal-topic-pill,
.signal-confidence {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.signal-topic-pill {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent-blue);
}

.signal-confidence {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-green);
}

.signal-card h4 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.signal-card p,
.signal-sources {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pulse-summary {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Typography & Content inside sections */
section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 10px;
    display: inline-flex;
}

.icon {
    font-style: normal;
    font-size: 1.3rem;
}

.category-section {
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-list li {
    background: var(--card-bg-light);
    border-right: 3px solid var(--accent-blue);
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-source-tag {
    font-size: 0.75rem;
    color: var(--accent-orange);
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    align-self: flex-start;
    font-weight: bold;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.item-source-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.item-source-secondary {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    border-radius: 999px;
    padding: 4px 8px;
    font-weight: 700;
    border: 1px solid transparent;
}

.meta-badge-verify {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
}

.meta-badge-confidence {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.meta-badge-sources {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: 54px;
    top: 0;
    bottom: -15px;
    width: 2px;
    background: var(--card-border-glass);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-time {
    width: 45px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: bold;
    padding-top: 15px;
}

.timeline-marker {
    position: relative;
    width: 12px;
    height: 12px;
    background: var(--accent-blue);
    border-radius: 50%;
    margin-top: 19px;
    z-index: 1;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.timeline-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.timeline-source {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: bold;
    text-transform: uppercase;
}

.timeline-content p {
    font-size: 0.95rem;
}

.why-it-matters {
    color: var(--text-secondary);
    font-size: 0.84rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.error-text {
    color: var(--accent-red);
    margin-bottom: 10px;
}

/* Subtle Spinner */
.subtle-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--card-border-glass);
    border-top-color: var(--accent-blue);
    margin: 0 auto 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ── Skeletons ── */
.skeleton-dashboard {
    width: 100%;
}
.skeleton-box {
    background: linear-gradient(90deg, var(--card-border-glass) 25%, var(--card-bg-light) 50%, var(--card-border-glass) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.category-skeleton {
    height: 180px;
}
.timeline-skeleton {
    height: 300px;
    width: 100%;
}

/* ── Category Collapsing ── */
.category-list.collapsed {
    display: none;
}
.category-header {
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s;
}
.category-header:hover {
    opacity: 0.8;
}
.category-toggle-icon {
    font-size: 0.8rem;
    margin-right: auto;
    transition: transform 0.3s ease;
}
[dir="ltr"] .category-toggle-icon {
    margin-right: 0;
    margin-left: auto;
}
.category-header.collapsed .category-toggle-icon {
    transform: rotate(180deg);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Share Buttons */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px -1px rgba(37, 211, 102, 0.4);
}

/* Footer New Layout */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--card-border-glass);
    padding-bottom: 1.5rem;
}

.monitored-sources {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.monitored-sources h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.monitored-sources h4 span {
    color: var(--accent-green);
    font-size: 0.85rem;
}

.source-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.source-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--card-border-glass);
}

.source-tags small {
    color: inherit;
    opacity: 0.75;
}

.source-pulse-tags,
#monitored-sources-tags {
    justify-content: center;
}

.source-pulse-chip,
.source-catalog-chip {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border: 1px solid var(--card-border-glass);
}

.source-pulse-chip.contributed,
.source-catalog-chip.contributed {
    color: var(--text-primary);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    order: -1;
}

.linkedin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--card-border-glass);
}

.linkedin-link:hover {
    color: #fff;
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077b5;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
}

.linkedin-link svg {
    fill: #0077b5;
}

/* ── Refresh Button Disabled State ── */
.refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.refresh-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
#refresh-icon {
    display: inline-block;
    transition: transform 0.1s;
}

/* ── Fade-In Animation ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp 0.35s ease-out both;
}

/* ── Timeline Urgency Levels ── */
.timeline-marker-critical {
    background: var(--accent-red);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.8), 0 0 25px rgba(239, 68, 68, 0.4);
    animation: critical-pulse 1.2s infinite alternate;
    width: 16px;
    height: 16px;
    margin-top: 17px;
}
@keyframes critical-pulse {
    0% { transform: scale(1); box-shadow: 0 0 12px rgba(239, 68, 68, 0.8); }
    100% { transform: scale(1.3); box-shadow: 0 0 25px rgba(239, 68, 68, 1); }
}
.timeline-marker-notable {
    background: var(--accent-orange);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}
.timeline-critical-badge {
    display: inline-block;
    background: var(--accent-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 2px;
}
.timeline-level-critical .timeline-content {
    border-right: 3px solid var(--accent-red);
}
.timeline-level-notable .timeline-content {
    border-right: 3px solid var(--accent-orange);
}
[dir="ltr"] .timeline-level-critical .timeline-content {
    border-right: none;
    border-left: 3px solid var(--accent-red);
}
[dir="ltr"] .timeline-level-notable .timeline-content {
    border-right: none;
    border-left: 3px solid var(--accent-orange);
}

/* ── Category Count Badge ── */
.category-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background: var(--accent-blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: bold;
    border-radius: 11px;
    padding: 0 6px;
    vertical-align: middle;
    margin-right: 2px;
    opacity: 0.85;
}
[dir="ltr"] .category-count-badge {
    margin-right: 0;
    margin-left: 2px;
}

/* ── Copy Toast Notification ── */
.copy-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: #fff;
    padding: 10px 22px;
    border-radius: 24px;
    font-weight: bold;
    font-size: 0.95rem;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.2s ease-out both;
    white-space: nowrap;
}
#copy-summary-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.8rem;
    padding: 4px 10px;
}
[dir="rtl"] #copy-summary-btn {
    left: auto;
    right: 1rem;
}

/* ── Freshness dot ── */
#freshness-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 1s ease;
}

/* ── Stale data banner ── */
.stale-banner {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 10px;
    padding: 0.55rem 1.2rem;
    text-align: center;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ── mb-4 utility (mirrors mt-4) ── */
.mb-4 {
    margin-bottom: 1rem;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .wow-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .app-container {
        padding: 1rem;
        gap: 1.2rem;
    }

    .glass-panel {
        padding: 1.5rem;
    }

    .header-top-bar {
        flex-direction: column;
        gap: 15px;
    }

    .signal-control-strip {
        grid-template-columns: 1fr;
    }

    .signal-cards-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-controls {
        justify-content: center;
        width: 100%;
    }

    .top-viewers-container {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    h1 {
        font-size: 2rem;
    }

    /* Sticky Actions for Mobile */
    .actions-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--card-bg-glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--card-border-glass);
        padding: 10px 15px;
        z-index: 1000;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 0 !important;
    }
    
    body {
        padding-bottom: 70px; /* Space for sticky bar */
    }

    .refresh-btn, .whatsapp-btn {
        flex: 1;
        justify-content: center;
        margin: 0 5px;
        padding: 10px 0;
        font-size: 0.95rem;
    }

    .timeline-topline {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .timeline-item {
        gap: 10px;
    }

    .timeline-item::before {
        right: 44px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .btn-text {
        display: none;
    }

    .top-viewers {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .app-container {
        padding: 0.6rem;
        gap: 1rem;
    }

    .glass-panel {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .glass-panel-light {
        padding: 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.05rem;
    }

    .main-header p {
        font-size: 0.85rem;
        padding: 0 5px;
    }

    section h3 {
        font-size: 1.1rem;
    }
}
