:root {
    --primary-color: #7c3aed;
    --accent-color: #f59e0b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(20, 20, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    --danger-color: #ef4444;
    --font-ui: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --shadow-sm: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 15px 50px 0 rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-ui);
    background-color: #0f0f15;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Background Handling */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0f0f15 0%, #1a1a2e 100%);
    background-size: 300% 300%;
    transition: background 1.5s ease;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Weather Effects Container */
#weather-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Rain Effect */
.rain-drop {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    width: 1px;
    height: 30px;
    top: -50px;
    animation: rainFall 0.7s linear infinite;
}

@keyframes rainFall {
    to { transform: translateY(110vh); }
}

/* Snow Effect */
.snow-flake {
    position: absolute;
    background: white;
    border-radius: 50%;
    top: -10px;
    animation: snowFall linear infinite;
}

@keyframes snowFall {
    to { transform: translateY(110vh); }
}

/* Cloud Effect (Floating blobs) */
.cloud-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: cloudFloat linear infinite;
}

@keyframes cloudFloat {
    from { transform: translateX(-50%); }
    to { transform: translateX(50%); }
}

/* Star Effect */
.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle ease-in-out infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.3; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1.2); }
}

/* Sun Glow */
.sun-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 200, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: sunPulse 10s ease-in-out infinite alternate;
}

@keyframes sunPulse {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 0.7; }
}

/* Weather Background States - Enhanced Gradients */
body.bg-clear .background-layer { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%); }
body.bg-clouds .background-layer { background: linear-gradient(135deg, #536976 0%, #292E49 100%); }
body.bg-rain .background-layer { background: linear-gradient(to bottom, #203A43, #2C5364); }
body.bg-snow .background-layer { background: linear-gradient(135deg, #E0EAFC 0%, #CFDEF3 100%); }
body.bg-thunder .background-layer { background: linear-gradient(135deg, #141E30 0%, #243B55 100%); }
body.bg-night .background-layer { background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%); }
body.bg-morning .background-layer { background: linear-gradient(120deg, #f6d365 0%, #fda085 100%); }
body.bg-evening .background-layer { background: linear-gradient(120deg, #d299c2 0%, #fef9d7 100%); }

/* Themes - adjusting variables */
[data-theme="light"] {
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

/* MINIMAL THEME OVERRIDES */
[data-theme="minimal"] {
    --primary-color: #000000;
    --accent-color: #333333;
    --text-primary: #000000;
    --text-secondary: #555555;
    --glass-bg: transparent;
    --glass-border: transparent;
    --glass-highlight: rgba(0,0,0,0.05);
    --shadow-sm: none;
    --shadow-lg: none;
    --font-ui: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif; /* Cleaner font for minimal */
}

/* Minimal specific layout adjustments */
[data-theme="minimal"] .background-layer {
    background: #ffffff; /* Default day */
}

/* Minimal Monochromatic Backgrounds */
[data-theme="minimal"].bg-clear .background-layer { background: #ffffff; }
[data-theme="minimal"].bg-night .background-layer { background: #000000; }
[data-theme="minimal"].bg-clouds .background-layer { background: #f3f4f6; }
[data-theme="minimal"].bg-rain .background-layer { background: #e5e7eb; }
[data-theme="minimal"].bg-snow .background-layer { background: #fafafa; }
[data-theme="minimal"].bg-thunder .background-layer { background: #d1d5db; }

/* Invert colors for Night in Minimal theme */
[data-theme="minimal"].bg-night {
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --primary-color: #ffffff;
    --accent-color: #cccccc;
    --glass-highlight: rgba(255,255,255,0.1);
}

/* Minimal Settings Panel - Override Glass Effects */
[data-theme="minimal"] .glass-panel {
    background: var(--background-color); /* Use contextual bg */
    border-left: 1px solid var(--text-primary); /* Simple border */
    box-shadow: none;
    color: var(--text-primary);
}

/* Ensure Settings Panel has proper background in Minimal Mode */
[data-theme="minimal"] .settings-content {
    background: #ffffff; /* Default light */
    color: #000000;
    border-left: 1px solid #ccc;
}

/* Invert settings panel for Night Mode in Minimal */
[data-theme="minimal"].bg-night .settings-content {
    background: #000000;
    color: #ffffff;
    border-left: 1px solid #333;
}

/* Minimal Form Elements */
[data-theme="minimal"] .theme-option,
[data-theme="minimal"] .background-option,
[data-theme="minimal"] select,
[data-theme="minimal"] .input-group input {
    background: transparent;
    border: 1px solid var(--text-secondary);
    border-radius: 4px; /* Sharper */
    color: var(--text-primary);
}

[data-theme="minimal"] .theme-option:hover,
[data-theme="minimal"] .background-option:hover {
    background: var(--glass-highlight);
}

[data-theme="minimal"] .theme-option:has(input:checked) {
    background: var(--text-primary);
    color: var(--background-color); /* Invert text for contrast */
    border-color: var(--text-primary);
}

[data-theme="minimal"] .theme-option:has(input:checked) span {
    color: var(--background-color); /* Ensure text is readable on solid block */
}

/* Minimal Icons */
[data-theme="minimal"] svg {
    stroke-width: 2px; /* Uniform thicker stroke */
    stroke: currentColor;
    fill: none;
}

[data-theme="minimal"] .glass-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;
}

[data-theme="minimal"] .glass-card::before {
    display: none;
}

[data-theme="minimal"] .weather-description strong {
    background: none;
    -webkit-text-fill-color: inherit;
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

[data-theme="minimal"] .dock-nav {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

[data-theme="minimal"] .dock-btn {
    color: var(--text-secondary);
}

[data-theme="minimal"] .dock-btn.active {
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
}

[data-theme="minimal"] .dock-btn:hover:not(.active) {
    background: transparent;
    color: var(--text-primary);
}

[data-theme="minimal"] .brand {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

[data-theme="minimal"] .icon-btn {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

[data-theme="minimal"] .temp-display {
    background: transparent;
    border: none;
    padding: 0;
}

[data-theme="minimal"] .temp-icon svg {
    width: 60px;
    height: 60px;
}

[data-theme="minimal"] .weather-hero {
    margin-bottom: 4rem; /* More spacing for clean look */
}

[data-theme="minimal"] .temp-value {
    font-weight: 300; 
    font-size: 4rem; /* Reduced from 5rem to accommodate longer text */
    letter-spacing: -2px;
}

[data-theme="minimal"] .location-badge, [data-theme="minimal"] .action-btn {
    background: transparent;
    border: 1px solid var(--text-secondary);
    border-radius: 4px; /* Sharper corners */
}

[data-theme="minimal"] .refresh-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    box-shadow: none;
}

[data-theme="minimal"] .refresh-btn:hover {
    background: var(--text-primary);
    color: var(--background-color);
    transform: none;
}

[data-theme="minimal"] #weather-effects {
    opacity: 0.3; /* Subtle effects */
}

[data-theme="minimal"] .weather-icons svg {
    /* Styles for SVG icons in minimal theme */
    width: 120px;
    height: 120px;
    stroke-width: 1.5;
    fill: none;
    stroke: var(--text-primary);
    filter: none; /* Remove drop shadow */
}


/* Main Layout */
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px; /* Space for dock */
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page {
    display: none;
    width: 100%;
    max-width: 500px; /* Card width */
    animation: fadeIn 0.4s ease-out;
}

.page.active {
    display: block;
}

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

/* Glass Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Header */
.header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    pointer-events: none; /* Let clicks pass through */
}

.header-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.header-logo {
    height: 24px;
    width: auto;
}

.icon-btn {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Weather Card Specifics */
.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-highlight);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
}

.time-badge {
    font-weight: 600;
    font-feature-settings: "tnum";
}

.weather-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.weather-description {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1rem;
}

.weather-description strong {
    color: var(--accent-color);
    background: linear-gradient(135deg, #FF9D6C 0%, #BB4E75 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.weather-icons {
    display: flex;
    justify-content: center;
    font-size: 4rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
    min-height: 80px; /* Prevent collapse */
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stats-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.temp-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.temp-icon {
    font-size: 2.5rem;
}

.temp-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.temp-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.temp-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.weather-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.look-outside {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 60%;
}

.refresh-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.refresh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

/* Locations Page Styles */
.locations-wrapper, .city-weather-wrapper {
    height: 100%;
    min-height: 60vh;
}

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

.page-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.action-btn {
    background: var(--glass-highlight);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn:hover {
    background: rgba(255,255,255,0.1);
}

.cities-grid {
    display: grid;
    gap: 1rem;
}

.city-card {
    background: rgba(0,0,0,0.15);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.city-card:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.05);
}

.city-info h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.city-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.city-card-right {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.city-temp-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.city-delete-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.city-card:hover .city-delete-btn {
    opacity: 1;
}

.city-delete-btn:hover {
    background: var(--danger-color);
    color: white;
}

.empty-locations {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Dock Navigation */
.dock-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem;
    border-radius: 50px;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.dock-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.dock-btn svg {
    width: 20px;
    height: 20px;
}

.dock-btn span {
    display: none;
}

.dock-btn.active {
    background: var(--text-primary);
    color: #000;
}

.dock-btn.active span {
    display: inline-block;
}

.dock-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255,255,255,0.1);
}

/* Modals & Panels */
.settings-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.settings-panel.open {
    transform: translateX(0);
}

.glass-panel {
    background: #1a1a20;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

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

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.settings-section {
    margin-bottom: 2rem;
}

.settings-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.theme-options, .background-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.theme-option, .background-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.theme-option:hover, .background-option:hover {
    background: rgba(255,255,255,0.06);
}

input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.theme-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
}

select {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
}

/* Modal */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 450px;
    height: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.open .modal-content {
    transform: scale(1);
}

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

.input-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #0f0f15;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

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

.splash-logo { width: 80px; height: 80px; margin-bottom: 1.5rem; }

.splash-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.splash-title strong { color: var(--primary-color); }

.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.hidden { display: none !important; }

.footer {
    display: none; /* Hide footer in new layout for cleaner look, or style minimally */
}

/* Utilities */
.icon-btn-text {
    background: transparent;
    border: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.icon-btn-danger {
    background: rgba(239, 68, 68, 0.2);
    border: none;
    color: #fca5a5;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .weather-description { font-size: 2rem; }
    .glass-card { padding: 1.5rem; }
    [data-theme="minimal"] .temp-value { font-size: 3rem; }
}