body {
    background: linear-gradient(to right, #0099cc, #00ccff);
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
    position: relative;
    animation: moveBackground 60s linear infinite;
    background-size: 400% 400%;
}
@keyframes moveBackground {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}
.cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow:
        60px 20px 0 10px #fff,
        120px 30px 0 15px #fff,
        90px 0 0 20px #fff;
    animation: cloudMove 120s linear infinite;
    z-index: 1;
}
.cloud:nth-child(1) { width: 100px; height: 60px; top: 100px; left: -200px; animation-delay: 0s;}
.cloud:nth-child(2) { width: 130px; height: 70px; top: 250px; left: -300px; animation-delay: 30s;}
.cloud:nth-child(3) { width: 150px; height: 80px; top: 400px; left: -400px; animation-delay: 60s;}
@keyframes cloudMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(200vw); }
}
header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    position: relative;
    overflow: hidden;
    animation: slideDown 1s ease-out;
    z-index: 2;
}
.sun-rays {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    z-index: 0;
}
@keyframes spin {
    from {transform: translateX(-50%) rotate(0deg);}
    to {transform: translateX(-50%) rotate(360deg);}
}
@keyframes slideDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}
h1 {
    margin: 0;
    font-size: 28px;
    animation: fadeIn 2s ease;
    position: relative;
    z-index: 2;
}
nav {
    background-color: #222;
    padding: 10px 0;
    animation: fadeIn 2.5s ease;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
nav ul li {
    display: inline;
}
nav ul li a {
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.3s;
    border-radius: 5px;
}
nav ul li a:hover {
    background-color: #0099cc;
    transform: scale(1.1);
}
#clock {
    margin-left: auto;
    margin-right: 20px;
    font-size: 16px;
    font-weight: normal;
}
.slider {
    position: relative;
    max-width: 60%;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
    animation: fadeIn 3s ease;
    z-index: 2;
}
.slides img {
    width: 80%;
    max-height: 500px;
    display: none;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 1s ease-in-out;
}
.slides img.active {
    display: block;
    margin: 0 auto;
    opacity: 1;
    animation: zoomIn 1s ease;
}
@keyframes zoomIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.outlook-card, .forecast-card {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    margin: 20px auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.outlook-card img {
    width: 100%;
    border-radius: 10px;
    max-height: 700px;
    object-fit: cover;
    animation: fadeIn 2s ease;
}
.outlook-text, .forecast-text {
    text-align: left;
    margin-top: 15px;
}
footer {
    background-color: #111;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
    animation: fadeIn 3s ease;
    z-index: 2;
    position: relative;
}
section .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    animation: fadeIn 3s ease;
    z-index: 2;
}
.icons img {
    transition: transform 0.3s;
}
.icons img:hover {
    transform: rotate(10deg) scale(1.2);
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
a {
    text-decoration: none;
}