/**
 * Flavor Weather Samsung Pro - Frontend CSS
 * Version 4.0.0 - Full Width Design with Realistic Samsung Characters
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --fws-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Samsung One', Roboto, sans-serif;
    --fws-glass: rgba(255, 255, 255, 0.12);
    --fws-glass-border: rgba(255, 255, 255, 0.18);
    --fws-glass-strong: rgba(255, 255, 255, 0.2);
    --fws-text-primary: #ffffff;
    --fws-text-secondary: rgba(255, 255, 255, 0.9);
    --fws-text-muted: rgba(255, 255, 255, 0.65);
    --fws-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --fws-transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base - FULL WIDTH
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.fws-weather-page {
    min-height: 100vh;
    font-family: var(--fws-font);
    color: var(--fws-text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Main Container - FULL WIDTH
   ======================================== */
.fws-samsung-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    transition: background var(--fws-transition);
}

/* ========================================
   Sky Backgrounds - Full Viewport
   ======================================== */
.fws-sky-clear-day {
    background: linear-gradient(180deg, 
        #3D8BD4 0%, 
        #5BA3E0 20%, 
        #7BBAE8 40%, 
        #9DCEF0 60%, 
        #B8DDF5 80%, 
        #D0EAF9 100%);
}

.fws-sky-clear-night {
    background: linear-gradient(180deg, 
        #0A0E1A 0%, 
        #121A2E 15%, 
        #1A2740 30%, 
        #243454 50%, 
        #2D4168 70%, 
        #364D7A 100%);
}

.fws-sky-cloudy-day {
    background: linear-gradient(180deg, 
        #7A99B5 0%, 
        #8FAFC8 25%, 
        #A3C1D6 50%, 
        #B5D0E2 75%, 
        #C8DEEC 100%);
}

.fws-sky-cloudy-night {
    background: linear-gradient(180deg, 
        #1A232D 0%, 
        #253342 30%, 
        #314456 60%, 
        #3D5468 100%);
}

.fws-sky-rain {
    background: linear-gradient(180deg, 
        #4A5D6B 0%, 
        #5A6F7F 20%, 
        #6A8090 40%, 
        #7A919F 60%, 
        #8AA2AE 80%, 
        #9AB3BD 100%);
}

.fws-sky-storm {
    background: linear-gradient(180deg, 
        #1A1F2A 0%, 
        #252D3A 25%, 
        #313B4A 50%, 
        #3D495A 75%, 
        #495769 100%);
}

.fws-sky-snow {
    background: linear-gradient(180deg, 
        #C8D5E0 0%, 
        #D5E0E8 25%, 
        #E2EBF0 50%, 
        #EDF3F7 75%, 
        #F5F9FB 100%);
    color: #2C3E50;
}

.fws-sky-snow .fws-glass-card {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

/* ========================================
   Sun Animation - Realistic
   ======================================== */
.fws-sun {
    position: absolute;
    top: 6%;
    right: 8%;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 2;
}

.fws-sun-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
        #FFFEF0 0%,
        #FFF9C4 25%,
        #FFEE58 50%,
        #FFD54F 75%,
        #FFCA28 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 10px rgba(255, 245, 157, 0.3),
        0 0 30px 20px rgba(255, 238, 88, 0.3),
        0 0 60px 40px rgba(255, 213, 79, 0.2),
        0 0 100px 60px rgba(255, 202, 40, 0.15),
        0 0 140px 80px rgba(255, 193, 7, 0.1);
    animation: fws-sun-glow 4s ease-in-out infinite;
}

.fws-sun-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: 
        conic-gradient(from 0deg, 
            transparent 0deg, 
            rgba(255, 255, 255, 0.15) 10deg, 
            transparent 20deg,
            transparent 30deg,
            rgba(255, 255, 255, 0.12) 40deg,
            transparent 50deg);
    border-radius: 50%;
    animation: fws-rays-spin 25s linear infinite;
}

@keyframes fws-sun-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08);
        filter: brightness(1.1);
    }
}

@keyframes fws-rays-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   Moon & Stars
   ======================================== */
.fws-moon {
    position: absolute;
    top: 8%;
    right: 10%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        #F5F5F5 0%, 
        #E8E8E8 40%, 
        #D5D5D5 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px 8px rgba(255, 255, 255, 0.2),
        0 0 40px 15px rgba(255, 255, 255, 0.1),
        inset -12px -8px 25px rgba(100, 100, 100, 0.15),
        inset 5px 5px 15px rgba(255, 255, 255, 0.3);
    z-index: 2;
    display: none;
}

.fws-stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.fws-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: fws-twinkle var(--duration, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes fws-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ========================================
   Landscape - FULL WIDTH
   ======================================== */
.fws-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 38%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.fws-landscape-day {
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 25%,
        #8BC34A 25%,
        #7CB342 50%,
        #689F38 75%,
        #558B2F 100%);
}

.fws-landscape-day::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15%;
    right: -15%;
    height: 85%;
    background: linear-gradient(180deg,
        rgba(139, 195, 74, 0) 0%,
        rgba(124, 179, 66, 0.8) 30%,
        #7CB342 50%,
        #689F38 75%,
        #558B2F 100%);
    border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}

.fws-landscape-day::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg,
        rgba(100, 181, 246, 0.5) 0%,
        rgba(66, 165, 245, 0.35) 50%,
        rgba(33, 150, 243, 0.2) 100%);
    opacity: 0.7;
}

.fws-landscape-night {
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 30%,
        #1A237E 30%,
        #0D1B3D 60%,
        #0A1628 100%);
}

.fws-landscape-night::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -15%;
    right: -15%;
    height: 75%;
    background: linear-gradient(180deg,
        rgba(26, 35, 126, 0) 0%,
        rgba(13, 27, 61, 0.9) 40%,
        #0A1628 100%);
    border-radius: 45% 45% 0 0 / 35% 35% 0 0;
}

.fws-landscape-night::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(180deg,
        rgba(21, 101, 192, 0.35) 0%,
        rgba(13, 71, 161, 0.25) 50%,
        rgba(10, 50, 120, 0.15) 100%);
}

/* ========================================
   Character - Samsung Weather Style (Realistic)
   ======================================== */
.fws-character-wrapper {
    position: absolute;
    bottom: 12%;
    right: 3%;
    width: 280px;
    height: 400px;
    z-index: 15;
    pointer-events: none;
}

.fws-character-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Character Animations */
.fws-character-wrapper {
    animation: fws-char-breathe 4s ease-in-out infinite;
}

@keyframes fws-char-breathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Sunny - Waving arm */
.fws-character-sunny .char-arm-right {
    transform-origin: 70% 30%;
    animation: fws-arm-wave 2.5s ease-in-out infinite;
}

@keyframes fws-arm-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(10deg); }
}

/* Rain - Umbrella bob */
.fws-character-rain .char-umbrella {
    transform-origin: 50% 100%;
    animation: fws-umbrella-bob 3s ease-in-out infinite;
}

@keyframes fws-umbrella-bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(3deg); }
}

/* Snow - Shiver */
.fws-character-snow {
    animation: fws-char-breathe 4s ease-in-out infinite, fws-shiver 0.3s ease-in-out infinite;
}

@keyframes fws-shiver {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(2px); }
}

/* ========================================
   Main Content - FULL WIDTH LAYOUT
   ======================================== */
.fws-content {
    position: relative;
    z-index: 20;
    padding: 30px;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Two-column layout for desktop */
@media (min-width: 1200px) {
    .fws-content {
        padding: 40px 60px;
    }
    
    .fws-main-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        width: 100%;
    }
    
    .fws-left-column {
        max-width: 100%;
    }
    
    .fws-right-column {
        max-width: 100%;
    }
}

@media (min-width: 1600px) {
    .fws-content {
        padding: 50px 100px;
    }
    
    .fws-main-grid {
        gap: 60px;
    }
}

/* ========================================
   Location Header - Full Width
   ======================================== */
.fws-location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-top: 80px;
}

.fws-location-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.fws-location-name {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Current Weather - Large Display
   ======================================== */
.fws-current-weather {
    margin-bottom: 20px;
}

.fws-temp-display {
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fws-temp-display .fws-degree {
    font-size: 0.4em;
    font-weight: 300;
    vertical-align: top;
    margin-left: -15px;
}

.fws-condition-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    margin: 10px 0 20px 0;
    opacity: 0.95;
}

.fws-temp-minmax {
    font-size: 18px;
    opacity: 0.85;
    margin: 8px 0;
    display: flex;
    gap: 15px;
}

.fws-temp-minmax .high {
    color: rgba(255, 200, 150, 1);
}

.fws-temp-minmax .low {
    color: rgba(150, 200, 255, 1);
}

.fws-feels-like {
    font-size: 17px;
    font-weight: 500;
    opacity: 0.9;
    margin: 8px 0;
}

.fws-update-time {
    font-size: 14px;
    opacity: 0.6;
    margin: 5px 0;
}

.fws-summary {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    margin: 25px 0;
    max-width: 600px;
}

/* ========================================
   Glass Cards - Full Width
   ======================================== */
.fws-glass-card {
    background: var(--fws-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    border: 1px solid var(--fws-glass-border);
    box-shadow: var(--fws-shadow);
    overflow: hidden;
}

/* ========================================
   Hourly Forecast - Full Width Scroll
   ======================================== */
.fws-hourly-card {
    padding: 24px;
    margin: 20px 0;
    width: 100%;
}

.fws-hourly-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding-bottom: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fws-hourly-scroll::-webkit-scrollbar {
    display: none;
}

.fws-hourly-item {
    flex: 0 0 auto;
    width: 80px;
    min-width: 80px;
    text-align: center;
    padding: 12px 8px;
    transition: background 0.2s ease;
    border-radius: 16px;
}

.fws-hourly-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.fws-hourly-item.now {
    background: rgba(255, 255, 255, 0.15);
}

.fws-hourly-time {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.fws-hourly-icon {
    font-size: 32px;
    margin: 10px 0;
    line-height: 1;
}

.fws-hourly-temp {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
}

/* Temperature Graph */
.fws-temp-graph {
    position: relative;
    height: 60px;
    margin: 15px 0;
    width: 100%;
}

.fws-temp-graph canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Precipitation Row */
.fws-precip-row {
    display: flex;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fws-precip-item {
    flex: 0 0 80px;
    text-align: center;
    font-size: 13px;
    opacity: 0.65;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.fws-precip-item svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    opacity: 0.7;
}

/* ========================================
   Alert Card - Full Width
   ======================================== */
.fws-alert-card {
    padding: 20px 28px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
}

.fws-alert-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fws-alert-title {
    font-size: 15px;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fws-alert-title svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.fws-alert-desc {
    font-size: 18px;
    font-weight: 500;
}

.fws-alert-value {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -2px;
}

/* ========================================
   Daily Forecast - Full Width
   ======================================== */
.fws-daily-card {
    padding: 20px 24px;
    margin: 20px 0;
    width: 100%;
}

.fws-daily-item {
    display: grid;
    grid-template-columns: 90px 50px 1fr 36px 36px 90px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.fws-daily-item:last-child {
    border-bottom: none;
}

.fws-daily-day {
    font-size: 17px;
    font-weight: 400;
}

.fws-daily-day.today {
    font-weight: 600;
}

.fws-daily-precip {
    font-size: 13px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fws-daily-precip svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.fws-daily-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.fws-daily-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #64B5F6, #FFD54F, #FF8A65);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.fws-daily-icon {
    font-size: 28px;
    text-align: center;
}

.fws-daily-icon.night {
    opacity: 0.5;
    font-size: 22px;
}

.fws-daily-temps {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    font-size: 17px;
}

.fws-daily-high {
    font-weight: 500;
}

.fws-daily-low {
    opacity: 0.6;
}

/* ========================================
   Details Grid - Full Width
   ======================================== */
.fws-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 25px 0;
    width: 100%;
}

.fws-detail-card {
    padding: 22px;
    border-radius: 24px;
    background: var(--fws-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--fws-glass-border);
}

.fws-detail-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0.7;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fws-detail-header svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.fws-detail-value {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
}

.fws-detail-unit {
    font-size: 16px;
    opacity: 0.7;
    margin-left: 4px;
}

.fws-detail-extra {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 8px;
}

/* ========================================
   Astro Row - Sun Times
   ======================================== */
.fws-astro-row {
    display: flex;
    justify-content: space-around;
    padding: 22px;
    margin: 20px 0;
    background: var(--fws-glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--fws-glass-border);
}

.fws-astro-item {
    text-align: center;
    flex: 1;
}

.fws-astro-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.fws-astro-label {
    font-size: 12px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fws-astro-value {
    font-size: 20px;
    font-weight: 500;
    margin-top: 4px;
}

/* ========================================
   AQI Card - Full Width
   ======================================== */
.fws-aqi-card {
    padding: 24px;
    margin: 20px 0;
    background: var(--fws-glass);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--fws-glass-border);
}

.fws-aqi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.fws-aqi-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.fws-aqi-circle.good { 
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%); 
}
.fws-aqi-circle.moderate { 
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%); 
}
.fws-aqi-circle.unhealthy-sensitive { 
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%); 
}
.fws-aqi-circle.unhealthy { 
    background: linear-gradient(135deg, #FF5722 0%, #F44336 100%); 
}
.fws-aqi-circle.very-unhealthy { 
    background: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%); 
}
.fws-aqi-circle.hazardous { 
    background: linear-gradient(135deg, #880E4F 0%, #4A148C 100%); 
}

.fws-aqi-info h3 {
    margin: 0 0 6px 0;
    font-size: 22px;
    font-weight: 500;
}

.fws-aqi-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.75;
    line-height: 1.5;
}

.fws-pollutants {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fws-pollutant {
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.fws-pollutant-name {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.fws-pollutant-value {
    font-size: 18px;
    font-weight: 500;
}

/* ========================================
   Map Card - Full Width
   ======================================== */
.fws-map-card {
    overflow: hidden;
    margin: 20px 0;
    background: var(--fws-glass);
    border-radius: 24px;
    border: 1px solid var(--fws-glass-border);
}

.fws-map-header {
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fws-map-container {
    height: 350px;
    width: 100%;
}

.fws-map-container .leaflet-control-attribution {
    font-size: 10px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
}

/* ========================================
   SEO Content - Full Width, Rich Styling
   ======================================== */
.fws-seo-section {
    padding: 40px;
    margin: 30px 0;
    background: var(--fws-glass);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid var(--fws-glass-border);
    width: 100%;
}

.fws-seo-content {
    font-size: 17px;
    line-height: 1.8;
    max-width: none;
}

.fws-seo-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 35px 0 18px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.fws-seo-content h2:first-child {
    margin-top: 0;
}

.fws-seo-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 14px 0;
    color: rgba(255, 255, 255, 0.95);
}

.fws-seo-content p {
    margin: 0 0 18px 0;
    opacity: 0.9;
}

.fws-seo-content ul, 
.fws-seo-content ol {
    margin: 0 0 20px 0;
    padding-left: 25px;
}

.fws-seo-content li {
    margin: 10px 0;
    padding-left: 8px;
}

.fws-seo-content ul li {
    list-style-type: disc;
}

.fws-seo-content ol li {
    list-style-type: decimal;
}

.fws-seo-content strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.fws-seo-content em {
    font-style: italic;
    opacity: 0.7;
    font-size: 14px;
}

/* ========================================
   Search Bar - Full Width
   ======================================== */
.fws-search-bar {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 30px 0;
    background: var(--fws-glass);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--fws-glass-border);
    transition: all 0.3s ease;
    max-width: 600px;
}

.fws-search-bar:focus-within {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.fws-search-bar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    opacity: 0.6;
    flex-shrink: 0;
}

.fws-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: inherit;
    font-size: 17px;
    font-family: inherit;
}

.fws-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Related Cities - Full Width
   ======================================== */
.fws-related-section {
    margin: 30px 0;
}

.fws-related-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.fws-related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fws-related-link {
    padding: 12px 22px;
    background: var(--fws-glass);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid var(--fws-glass-border);
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.fws-related-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ========================================
   Bottom Navigation
   ======================================== */
.fws-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 14px 0 22px 0;
    z-index: 100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fws-nav-item {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.fws-nav-item svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.fws-nav-item.active {
    color: white;
}

.fws-dots {
    display: flex;
    gap: 6px;
    padding: 8px 16px;
}

.fws-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.fws-dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   Weather Effects - Full Screen
   ======================================== */
.fws-rain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
    display: none;
}

.fws-raindrop {
    position: absolute;
    width: 2px;
    height: 25px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5));
    animation: fws-rain-fall linear infinite;
}

@keyframes fws-rain-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.fws-snow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
    display: none;
}

.fws-snowflake {
    position: absolute;
    color: white;
    font-size: 12px;
    animation: fws-snow-fall linear infinite;
    opacity: 0.9;
    text-shadow: 0 0 5px white;
}

@keyframes fws-snow-fall {
    0% { 
        transform: translateY(-5%) rotate(0deg) translateX(0); 
    }
    100% { 
        transform: translateY(100vh) rotate(360deg) translateX(20px); 
    }
}

/* ========================================
   Loading States
   ======================================== */
.fws-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.fws-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: fws-spin 1s linear infinite;
}

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

/* ========================================
   Responsive Design - Full Width Priority
   ======================================== */
@media (max-width: 1199px) {
    .fws-content {
        padding: 25px;
    }
    
    .fws-main-grid {
        display: block;
    }
    
    .fws-character-wrapper {
        width: 220px;
        height: 320px;
        right: 2%;
        bottom: 10%;
    }
}

@media (max-width: 768px) {
    .fws-content {
        padding: 20px 16px;
        padding-bottom: 100px;
    }
    
    .fws-temp-display {
        font-size: 80px;
        letter-spacing: -5px;
    }
    
    .fws-temp-display .fws-degree {
        margin-left: -8px;
    }
    
    .fws-condition-text {
        font-size: 26px;
    }
    
    .fws-character-wrapper {
        width: 160px;
        height: 240px;
        right: 0;
        bottom: 8%;
    }
    
    .fws-hourly-item {
        width: 65px;
        min-width: 65px;
    }
    
    .fws-precip-item {
        flex: 0 0 65px;
    }
    
    .fws-daily-item {
        grid-template-columns: 70px 40px 1fr 28px 28px 70px;
        padding: 12px 0;
        font-size: 15px;
    }
    
    .fws-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .fws-detail-card {
        padding: 18px;
    }
    
    .fws-detail-value {
        font-size: 28px;
    }
    
    .fws-seo-section {
        padding: 25px;
    }
    
    .fws-seo-content {
        font-size: 15px;
    }
    
    .fws-seo-content h2 {
        font-size: 22px;
    }
    
    .fws-seo-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .fws-content {
        padding: 15px 12px;
    }
    
    .fws-location-name {
        font-size: 22px;
    }
    
    .fws-temp-display {
        font-size: 68px;
        letter-spacing: -4px;
    }
    
    .fws-condition-text {
        font-size: 22px;
    }
    
    .fws-character-wrapper {
        width: 130px;
        height: 200px;
    }
    
    .fws-daily-item {
        grid-template-columns: 55px 35px 1fr 24px 70px;
    }
    
    .fws-daily-icon.night {
        display: none;
    }
    
    .fws-details-grid {
        grid-template-columns: 1fr;
    }
    
    .fws-astro-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .fws-astro-item {
        flex: 0 0 calc(33.33% - 14px);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .fws-sun, .fws-moon, .fws-stars, .fws-landscape,
    .fws-character-wrapper, .fws-rain-overlay, .fws-snow-overlay,
    .fws-bottom-nav, .fws-search-bar, .fws-map-card {
        display: none !important;
    }
    
    .fws-samsung-container {
        background: white !important;
        color: black !important;
    }
    
    .fws-glass-card,
    .fws-seo-section,
    .fws-detail-card {
        background: #f5f5f5 !important;
        backdrop-filter: none !important;
        border: 1px solid #ddd !important;
    }
}
