body {
    background: #ffffff;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

.weather-container {
    background: #ffffff;
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.weather-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border: none;
}

.weather-header h1 {
    margin: 0;
    font-weight: 300;
    font-size: 2.5rem;
}

.camera-section {
    padding: 2rem;
    text-align: center;
}

.camera-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 100%;
}

.camera-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.weather-stats {
    padding: 2rem;
    background: rgba(255,255,255,0.8);
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: none;
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
}

.temperature-icon { color: #ff6b6b; }
.humidity-icon { color: #4ecdc4; }
.wind-icon { color: #45b7d1; }
.uvi-icon { color: #f39c12; }
.feels-like-icon { color: #e67e22; }
.pressure-icon { color: #9b59b6; }
.solar-icon { color: #f1c40f; }

.stat-value {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.2rem 0;
    color: #2c3e50;
    line-height: 1.2;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.timestamp {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    padding: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .weather-header h1 {
        font-size: 2rem;
    }
    .stat-value {
        font-size: 2rem;
    }
    .camera-section {
        padding: 1rem;
    }
    .weather-stats {
        padding: 1rem;
    }
}