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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(180deg, 
        #e8f5e9 0%,
        #fff8e1 25%,
        #fce4ec 50%,
        #f3e5f5 75%,
        #e1f5fe 100%
    );
    background-size: 100% 300%;
    animation: gradient-shift 20s ease infinite;
    color: #4a4a4a;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Estrelas mágicas */
.magic-stars {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.magic-stars::before,
.magic-stars::after {
    content: '✨';
    position: absolute;
    font-size: 1rem;
    animation: twinkle 3s infinite ease-in-out;
    opacity: 0;
}

.magic-stars::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.magic-stars::after {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Sol brilhante */
.sun {
    position: fixed;
    top: 3%;
    right: 5%;
    font-size: 3rem;
    z-index: 1;
    animation: sun-pulse 4s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255, 200, 0, 0.7));
}

@keyframes sun-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Nuvens flutuantes */
.cloud {
    position: fixed;
    font-size: 2.5rem;
    z-index: 1;
    animation: cloud-float 30s infinite linear;
    opacity: 0.7;
}

@keyframes cloud-float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

/* Chão do jardim com grama */
.garden-floor {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #7cb342, #9ccc65);
    z-index: 0;
}

.grass {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        #689f38 3px,
        #689f38 6px
    );
    animation: grass-sway 3s infinite ease-in-out;
}

.grass:nth-child(2) {
    height: 40px;
    opacity: 0.7;
    animation-delay: 0.5s;
}

.grass:nth-child(3) {
    height: 25px;
    opacity: 0.5;
    animation-delay: 1s;
}

@keyframes grass-sway {
    0%, 100% { transform: skewX(0deg); }
    50% { transform: skewX(2deg); }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Borboletas mágicas grandes */
.magic-butterfly {
    position: fixed;
    font-size: 2.5rem;
    z-index: 1;
    animation: butterfly-magic-flight 15s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6));
}

@keyframes butterfly-magic-flight {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(100px, -80px) rotate(20deg) scale(1.2);
    }
    50% {
        transform: translate(200px, -40px) rotate(-15deg) scale(0.9);
    }
    75% {
        transform: translate(100px, -100px) rotate(25deg) scale(1.1);
    }
}

/* Flores flutuantes com brilho */
.floating-flower {
    position: fixed;
    font-size: 2rem;
    z-index: 1;
    animation: flower-float-glow 12s infinite ease-in-out;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

@keyframes flower-float-glow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        filter: drop-shadow(0 0 15px rgba(255, 182, 193, 1));
    }
}

/* Joaninhas caminhando */
.ladybug {
    position: fixed;
    font-size: 1.5rem;
    z-index: 1;
    animation: ladybug-walk 20s infinite linear;
}

@keyframes ladybug-walk {
    0% {
        left: -50px;
        transform: scaleX(1);
    }
    48% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(-1);
    }
    98% {
        transform: scaleX(-1);
    }
    100% {
        left: calc(100% + 50px);
        transform: scaleX(1);
    }
}

/* Arco de flores */
.flower-arch {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.arch-flower {
    display: inline-block;
    animation: arch-bloom 2s infinite ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.4));
}

.arch-flower:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes arch-bloom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

/* Cabeçalho */
header {
    padding: 20px 0;
    position: relative;
}

.header-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8),
        rgba(255, 240, 245, 0.9),
        rgba(255, 255, 255, 0.8)
    );
    border-radius: 25px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 182, 193, 0.5);
}

/* Título do convite */
.invitation-title {
    position: relative;
    margin-bottom: 25px;
}

.sparkle {
    display: inline-block;
    font-size: 2rem;
    animation: sparkle-rotate 3s infinite ease-in-out;
}

@keyframes sparkle-rotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.3);
    }
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin: 10px 0;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffc0cb, #ff69b4, #ff1493);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 5s ease infinite;
    filter: drop-shadow(2px 2px 4px rgba(255, 105, 180, 0.3));
}

@keyframes gradient-text {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    color: #8b4789;
    font-weight: 500;
}

/* Moldura da foto com flores */
.photo-container {
    margin: 30px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(135deg, #ffd4e8, #ffe4f0, #fff0f5);
    padding: 8px;
    box-shadow: 
        0 0 30px rgba(255, 105, 180, 0.4),
        0 0 60px rgba(255, 182, 193, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: photo-glow 3s infinite ease-in-out;
}

@keyframes photo-glow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 105, 180, 0.4),
            0 0 60px rgba(255, 182, 193, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 105, 180, 0.6),
            0 0 80px rgba(255, 182, 193, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.7);
    }
}

.flower-corner {
    position: absolute;
    font-size: 2rem;
    z-index: 2;
    animation: flower-spin 4s infinite ease-in-out;
    filter: drop-shadow(0 2px 6px rgba(255, 105, 180, 0.5));
}

.flower-corner.top-left {
    top: -10px;
    left: -10px;
}

.flower-corner.top-right {
    top: -10px;
    right: -10px;
    animation-delay: 0.5s;
}

.flower-corner.bottom-left {
    bottom: -10px;
    left: -10px;
    animation-delay: 1s;
}

.flower-corner.bottom-right {
    bottom: -10px;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes flower-spin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(20deg) scale(1.2);
    }
}

.photo-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffd4e8, #ffe4f0);
}

.arthur-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-butterfly {
    position: absolute;
    font-size: 1.8rem;
    animation: photo-butterfly-hover 3s infinite ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.5));
}

@keyframes photo-butterfly-hover {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
    }
}

/* Seção de aniversário */
.birthday-section {
    margin: 25px 0;
}

.birthday-boy {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s ease infinite, name-bounce 2s infinite ease-in-out;
    filter: drop-shadow(3px 3px 6px rgba(255, 105, 180, 0.4));
    margin: 15px 0;
}

@keyframes name-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.age-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.age {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: #c2185b;
    font-weight: 600;
    animation: age-pulse 2s infinite ease-in-out;
}

@keyframes age-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.flower-detail {
    font-size: 1.8rem;
    animation: flower-spin 3s infinite ease-in-out;
}

.celebration-icon {
    font-size: 3rem;
    margin: 15px 0;
    animation: celebration-bounce 1.5s infinite ease-in-out;
    filter: drop-shadow(0 4px 8px rgba(255, 105, 180, 0.4));
}

@keyframes celebration-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Seção de data */
.date-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.3), rgba(255, 240, 245, 0.5));
    border-radius: 50px;
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.date-icon {
    font-size: 1.5rem;
    animation: icon-wiggle 2s infinite ease-in-out;
}

@keyframes icon-wiggle {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.dataAniversario {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: #c2185b;
    font-weight: 700;
}

/* Flores na base do header */
.header-flowers-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 2rem;
}

.header-flowers-bottom span {
    display: inline-block;
    animation: bottom-flower-dance 3s infinite ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.header-flowers-bottom span:nth-child(even) {
    animation-delay: 0.3s;
}

@keyframes bottom-flower-dance {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
    }
}

/* Fundo animado do header */
.header-garden-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    border-radius: 25px;
}

/* Raios de sol */
.sunray {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 200, 0.1) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(255, 255, 200, 0.1) 50deg,
        transparent 60deg
    );
    animation: sunray-rotate 20s linear infinite;
}

@keyframes sunray-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Pétalas mágicas */
.magic-petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.8), rgba(255, 105, 180, 0.3));
    border-radius: 50%;
    animation: magic-petal-fall 8s infinite ease-in-out;
}

@keyframes magic-petal-fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

.small-butterfly {
    position: absolute;
    font-size: 1.5rem;
    animation: small-butterfly-flutter 6s infinite ease-in-out;
}

@keyframes small-butterfly-flutter {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(10deg);
    }
    50% {
        transform: translate(0, -40px) rotate(-10deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(5deg);
    }
}

.header-flower {
    position: absolute;
    font-size: 2.5rem;
    animation: header-flower-bloom 4s infinite ease-in-out;
    filter: drop-shadow(0 2px 8px rgba(255, 105, 180, 0.5));
}

@keyframes header-flower-bloom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(20deg);
    }
}

.big-butterfly {
    position: absolute;
    font-size: 4rem;
    bottom: 40px;
    left: -100px;
    animation: big-butterfly-cross 25s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(255, 105, 180, 0.6));
}

@keyframes big-butterfly-cross {
    0% {
        left: -100px;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(15deg) scale(1.2);
    }
    50% {
        transform: translateY(-10px) rotate(-10deg) scale(1.1);
    }
    75% {
        transform: translateY(-40px) rotate(20deg) scale(1.3);
    }
    100% {
        left: calc(100% + 100px);
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Botão de música */
.btn-music {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    animation: music-pulse 2s infinite ease-in-out;
}

@keyframes music-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 20, 147, 0.6);
    }
}

.btn-music:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.music-icon {
    font-size: 1.2rem;
    animation: music-note-dance 1s infinite ease-in-out;
}

@keyframes music-note-dance {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Detalhes */
.details {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7),
        rgba(255, 240, 245, 0.8)
    );
    padding: 25px;
    border-radius: 20px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 2px solid rgba(255, 182, 193, 0.4);
    position: relative;
}

.detail-icon {
    font-size: 2.5rem;
    margin: 10px 0;
    animation: detail-icon-spin 4s infinite ease-in-out;
}

@keyframes detail-icon-spin {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.details p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5d4157;
}

/* Jardim de elementos */
.garden-life {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.garden-element {
    font-size: 3rem;
    animation: garden-dance 3s infinite ease-in-out;
    filter: drop-shadow(3px 3px 8px rgba(255, 105, 180, 0.4));
    cursor: pointer;
    transition: transform 0.3s ease;
}

.garden-element:hover {
    transform: scale(1.3) rotate(15deg);
}

.garden-element:nth-child(odd) {
    animation-delay: 0.3s;
}

@keyframes garden-dance {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(-10deg) scale(1.05);
    }
}

/* Chamada para ação */
.call-to-action {
    margin: 25px 0;
    font-size: 1.2rem;
    color: #c2185b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-icon {
    font-size: 1.5rem;
    animation: cta-bounce 1s infinite ease-in-out;
}

@keyframes cta-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Botões */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-location {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.btn-gifts {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 500px;
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.5);
    transition: all 0.3s ease;
}

.close:hover {
    transform: rotate(90deg) scale(1.1);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

/* Footer */
footer {
    margin-top: 30px;
    padding: 25px;
    font-size: 1rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7),
        rgba(255, 240, 245, 0.8)
    );
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    border: 2px solid rgba(255, 182, 193, 0.4);
}

.footer-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    margin: 15px 0;
}

.footer-decoration span {
    display: inline-block;
    animation: footer-spin 3s infinite ease-in-out;
}

.footer-decoration span:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes footer-spin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

footer p {
    margin-bottom: 10px;
    color: #5d4157;
}

.highlight {
    color: #c2185b;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .birthday-boy {
        font-size: 2.8rem;
    }

    .age {
        font-size: 1.4rem;
    }

    .photo-container {
        width: 170px;
        height: 170px;
    }

    .garden-element {
        font-size: 2.5rem;
    }

    .flower-arch,
    .header-flowers-bottom {
        font-size: 1.5rem;
        gap: 8px;
    }
}

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

    h2 {
        font-size: 1rem;
    }

    .birthday-boy {
        font-size: 2.2rem;
    }

    .age {
        font-size: 1.2rem;
    }

    .photo-container {
        width: 150px;
        height: 150px;
    }

    .garden-element {
        font-size: 2rem;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .flower-arch,
    .header-flowers-bottom {
        font-size: 1.2rem;
        gap: 5px;
    }

    .header-content {
        padding: 20px 15px;
    }

    .sun {
        font-size: 2rem;
    }

    .cloud {
        font-size: 1.5rem;
    }
}
