#rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0) 100%);
    animation: sunray linear infinite;
    filter: blur(1px);
    transform-origin: top left;
    opacity: 0;
}

@keyframes sunray {
    0% {
        opacity: 0;
        transform: rotate(var(--angle)) scaleY(0.5);
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: rotate(var(--angle)) scaleY(1);
    }
    80% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: rotate(var(--angle)) scaleY(0.5);
    }
}

.raindrop.light {
    width: 0.5px;
    opacity: 0.4;
    filter: blur(0.3px);
}

.raindrop.medium {
    width: 1px;
    opacity: 0.6;
    filter: blur(0.5px);
}

.raindrop.heavy {
    width: 1.5px;
    opacity: 0.8;
    filter: blur(0.7px);
}

#water-surface {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 450px;
    pointer-events: none;
    z-index: 0;
    background: 
        linear-gradient(to bottom,
            rgba(41, 128, 185, 0) 0%,
            rgba(52, 152, 219, 0.15) 5%,
            rgba(52, 152, 219, 0.35) 12%,
            rgba(41, 128, 185, 0.55) 20%,
            rgba(30, 130, 180, 0.7) 30%,
            rgba(194, 178, 128, 0.85) 50%,
            rgba(210, 180, 140, 0.95) 70%,
            rgba(222, 184, 135, 1) 100%);
    overflow: hidden;
}

.water-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, transparent 70%);
    border-radius: 50%;
    animation: sparkleShine 3s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes sparkleShine {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(135, 206, 250, 0.5);
    }
}

#boat {
    position: fixed;
    bottom: 75px;
    left: 80%;
    transform: scale(1.24) scaleX(-1);
    pointer-events: none;
    z-index: 3;
    animation: maltipooRun 28s ease-in-out infinite;
}

@keyframes dogBreathe {
    0%, 100% {
        transform: translateX(-50%) scale(0.95) translateY(0);
    }
    50% {
        transform: translateX(-50%) scale(0.97) translateY(-4px);
    }
}

@keyframes maltipooRun {
    0% {
        left: 80%;
        bottom: 75px;
        transform: scaleX(-1) scale(1.24);
    }
    25% {
        left: 50%;
        bottom: 110px;
        transform: scaleX(-1) scale(1.24);
    }
    48% {
        left: 20%;
        bottom: 75px;
        transform: scaleX(-1) scale(1.24);
    }
    50% {
        left: 20%;
        bottom: 75px;
        transform: scaleX(1) scale(1.24);
    }
    75% {
        left: 50%;
        bottom: 45px;
        transform: scaleX(1) scale(1.24);
    }
    98% {
        left: 80%;
        bottom: 75px;
        transform: scaleX(1) scale(1.24);
    }
    100% {
        left: 80%;
        bottom: 75px;
        transform: scaleX(-1) scale(1.24);
    }
}

.boat-body {
    width: 20px;
    height: 16px;
    background: 
        linear-gradient(180deg, 
            rgba(255, 182, 193, 0.9) 0%,
            rgba(255, 192, 203, 0.95) 30%,
            rgba(255, 182, 193, 1) 100%);
    border-radius: 50% 50% 48% 48% / 45% 45% 55% 55%;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.12),
        inset -1px -2px 4px rgba(0, 0, 0, 0.08),
        inset 1px 1px 3px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 0 2px rgba(255, 192, 203, 0.4));
    z-index: 5;
}

.boat-body::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 29px;
    height: 26px;
    background: 
        radial-gradient(ellipse at 50% 50%, #FFFFFF 0%, #FEFEFE 50%, #FCFCFC 100%);
    border-radius: 50%;
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.12),
        inset -1px -2px 4px rgba(0, 0, 0, 0.03),
        inset 1px 1px 3px rgba(255, 255, 255, 0.95);
    filter: blur(0.3px);
    z-index: 10;
}

.boat-body::after {
    content: '';
    position: absolute;
    display: none;
}

.boat-tail {
    position: absolute;
    top: 50%;
    right: -12px;
    width: 12px;
    height: 3px;
    background: 
        linear-gradient(90deg, 
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.8) 70%,
            rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.03);
    animation: tailWag 0.5s ease-in-out infinite;
    transform: translateY(-50%);
    transform-origin: left center;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
    z-index: 3;
}

.boat-tail-fluff {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 24px;
    height: 8px;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 50%;
    filter: blur(1.5px);
}

@keyframes tailWag {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

@keyframes legSwingSync {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

.boat-sail {
    position: absolute;
    width: 12px;
    height: 22px;
    background: 
        radial-gradient(ellipse at 50% 50%, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.85) 50%,
            rgba(255, 255, 255, 0.7) 80%,
            rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.08),
        inset -1px -1px 2px rgba(0, 0, 0, 0.03),
        inset 1px 1px 2px rgba(255, 255, 255, 0.9);
    filter: blur(0.3px);
    z-index: 9;
}

.boat-ear-left {
    top: -20px;
    left: -8px;
    transform: rotate(15deg);
    transform-origin: bottom center;
}

.boat-ear-right {
    top: -20px;
    right: -8px;
    transform: rotate(-15deg);
    transform-origin: bottom center;
}

.boat-bow {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: 
        linear-gradient(135deg, 
            rgba(255, 105, 180, 0.95) 0%,
            rgba(255, 182, 193, 0.9) 50%,
            rgba(255, 105, 180, 0.95) 100%);
    border-radius: 60% 20% 60% 20%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset -1px -1px 2px rgba(0, 0, 0, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.6);
    z-index: 12;
}

.boat-bow::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 6px;
    background: 
        linear-gradient(225deg, 
            rgba(255, 105, 180, 0.95) 0%,
            rgba(255, 182, 193, 0.9) 50%,
            rgba(255, 105, 180, 0.95) 100%);
    border-radius: 20% 60% 20% 60%;
    box-shadow: 
        inset 1px -1px 2px rgba(0, 0, 0, 0.1),
        inset -1px 1px 2px rgba(255, 255, 255, 0.6);
}

.boat-bow::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: 
        radial-gradient(circle at 50% 50%, 
            rgba(255, 105, 180, 1) 0%,
            rgba(255, 105, 180, 0.9) 100%);
    border-radius: 50%;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.boat-mast {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 4px;
    background: 
        radial-gradient(ellipse at 50% 40%, #2C2C2C 0%, #1A1A1A 50%, #000000 100%);
    border-radius: 50% 50% 55% 55% / 45% 45% 55% 55%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset -1px -1px 2px rgba(0, 0, 0, 0.5),
        inset 1px 1px 1px rgba(255, 255, 255, 0.1),
        0 4.5px 0 -2px rgba(100, 100, 100, 0.7),
        -2.5px 5.5px 0 -2.3px rgba(100, 100, 100, 0.7),
        2.5px 5.5px 0 -2.3px rgba(100, 100, 100, 0.7);
    z-index: 15;
}

.boat-mast::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -3px;
    width: 3.5px;
    height: 3.5px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 20%, #1A1A1A 30%, #000000 100%);
    border-radius: 50%;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        inset -0.5px -0.5px 1px rgba(0, 0, 0, 0.4);
    z-index: 14;
}

.boat-mast::after {
    content: '';
    position: absolute;
    top: -6px;
    right: -3px;
    width: 3.5px;
    height: 3.5px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 20%, #1A1A1A 30%, #000000 100%);
    border-radius: 50%;
    box-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        inset -0.5px -0.5px 1px rgba(0, 0, 0, 0.4);
    z-index: 14;
}

.boat-leg-front-left {
    position: absolute;
    bottom: -16px;
    left: -2px;
    width: 10px;
    height: 24px;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 40%,
            rgba(255, 255, 255, 0.75) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.3) 100%);
    border-radius: 40% 40% 50% 50% / 50% 50% 30% 30%;
    filter: blur(0.8px);
    transform-origin: top center;
    animation: legSwingSync 1.5s ease-in-out infinite;
    z-index: 3;
}

.boat-leg-front-right {
    position: absolute;
    bottom: -16px;
    right: -2px;
    width: 10px;
    height: 24px;
    background: 
        linear-gradient(180deg, 
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 40%,
            rgba(255, 255, 255, 0.75) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.3) 100%);
    border-radius: 40% 40% 50% 50% / 50% 50% 30% 30%;
    filter: blur(0.8px);
    transform-origin: top center;
    animation: legSwingSync 1.5s ease-in-out infinite;
    z-index: 3;
}

.boat-leg-back-left,
.boat-leg-back-right {
    display: none;
}

@media (max-width: 768px) {
    #boat {
        bottom: 65px;
        transform: translateX(-50%) scale(0.75);
    }
    
    @keyframes dogBreathe {
        0%, 100% {
            transform: translateX(-50%) scale(0.75) translateY(0);
        }
        50% {
            transform: translateX(-50%) scale(0.77) translateY(-3px);
        }
    }
    
    #pomeranian {
        bottom: 30px;
        transform: scale(0.7);
    }
}

#pomeranian {
    position: fixed;
    bottom: 35px;
    left: 15%;
    pointer-events: none;
    z-index: 3;
    transform: scale(0.9);
}

@keyframes pomeranianRun {
    0% {
        left: 15%;
        transform: scaleX(1);
    }
    48% {
        left: 85%;
        transform: scaleX(1);
    }
    50% {
        left: 85%;
        transform: scaleX(-1);
    }
    98% {
        left: 15%;
        transform: scaleX(-1);
    }
    100% {
        left: 15%;
        transform: scaleX(1);
    }
}

.pomeranian-body {
    width: 70px;
    height: 68px;
    background: 
        radial-gradient(ellipse at 50% 35%, #FFFFFF 0%, #FEFEFE 30%, #FCFCFC 60%, #F8F8F8 100%);
    border-radius: 50% 50% 45% 45% / 70% 70% 30% 30%;
    position: relative;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.4),
        0 0 0 16px rgba(255, 255, 255, 0.2),
        0 0 0 24px rgba(255, 255, 255, 0.1),
        inset -3px -3px 10px rgba(0, 0, 0, 0.03),
        inset 3px 3px 8px rgba(255, 255, 255, 0.9);
    animation: pomeranianBounce 0.4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.3px);
    transform: rotate(180deg);
}

@keyframes pomeranianBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.01);
    }
}

.pomeranian-body::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    width: 50px;
    height: 44px;
    background: 
        radial-gradient(ellipse at 50% 45%, #FFFFFF 0%, #FEFEFE 30%, #FCFCFC 60%, #F8F8F8 100%);
    border-radius: 48% 48% 50% 50% / 45% 45% 55% 55%;
    /* box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.1),
        0 0 0 6px rgba(205, 39, 39, 0.813),
        0 0 0 12px rgba(255, 255, 255, 0.1),
        inset -2px -2px 6px rgba(0, 0, 0, 0.03),
        inset 2px 2px 5px rgba(255, 255, 255, 0.9); */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.85)) blur(0.3px);
    z-index: 10;
}

.pomeranian-body::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: -8px;
    width: 8px;
    height: 8px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 50%;
    z-index: 1;
}

.pomeranian-tail {
    position: absolute;
    bottom: 10px;
    right: -18px;
    width: 40px;
    height: 40px;
    animation: pomeranianTailSway 2s ease-in-out infinite;
    transform-origin: left center;
    z-index: 2;
}

@keyframes pomeranianTailSway {
    0%, 100% {
        transform: rotate(-12deg);
    }
    50% {
        transform: rotate(12deg);
    }
}

.pomeranian-tail-fluff {
    position: absolute;
    width: 16px;
    height: 16px;
    background: 
        radial-gradient(circle at 50% 50%, #FFFFFF 0%, #FEFEFE 40%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        0 0 0 8px rgba(255, 255, 255, 0.15),
        inset -1px -1px 2px rgba(0, 0, 0, 0.03);
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8)) blur(0.3px);
}

.pomeranian-tail-fluff-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
}

.pomeranian-tail-fluff-2 {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pomeranian-tail-fluff-3 {
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.pomeranian-tail-fluff-4 {
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.pomeranian-tail-fluff-5 {
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
}

.pomeranian-tail-fluff-6 {
    top: 25%;
    right: 25%;
    transform: translate(50%, -50%);
    width: 14px;
    height: 14px;
}

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

.pomeranian-ear-left {
    position: absolute;
    top: -20px;
    left: 13px;
    width: 14px;
    height: 16px;
    background: 
        radial-gradient(ellipse at 50% 60%, #FFFFFF 0%, #FEFEFE 50%, #F5F5F5 100%);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
    z-index: 9;
}

.pomeranian-ear-right {
    position: absolute;
    top: -20px;
    right: 13px;
    width: 14px;
    height: 16px;
    background: 
        radial-gradient(ellipse at 50% 60%, #FFFFFF 0%, #FEFEFE 50%, #F5F5F5 100%);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.6));
    z-index: 9;
}

.pomeranian-nose {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 6px;
    background: 
        radial-gradient(ellipse at 50% 40%, #2C2C2C 0%, #1A1A1A 50%, #000000 100%);
    border-radius: 50% 50% 55% 55% / 45% 45% 55% 55%;
    box-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.4),
        inset -1px -1px 2px rgba(0, 0, 0, 0.5),
        inset 1px 1px 1px rgba(255, 255, 255, 0.1);
    z-index: 15;
}

.pomeranian-mouth {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 4px;
    background: transparent;
    border-bottom: 1.5px solid rgba(60, 60, 60, 0.9);
    border-radius: 50%;
    z-index: 16;
}

.pomeranian-nose::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: 
        radial-gradient(ellipse at 50% 30%, #FFB6C1 0%, #FF69B4 50%, #FF1493 100%);
    border-radius: 50% 50% 60% 60% / 40% 40% 60% 60%;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    z-index: 14;
}

.pomeranian-eye-left {
    position: absolute;
    top: -2px;
    left: 22px;
    width: 6px;
    height: 6px;
    background: 
        radial-gradient(circle at 35% 35%, #1A1A1A 0%, #000000 100%);
    border-radius: 50%;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        inset -0.5px -0.5px 1px rgba(0, 0, 0, 0.4);
    z-index: 12;
}

.pomeranian-eye-left::before {
    content: '';
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.pomeranian-leg-front-left,
.pomeranian-leg-front-right,
.pomeranian-leg-back-left,
.pomeranian-leg-back-right {
    display: none;
}

.pomeranian-eye-right {
    position: absolute;
    top: -2px;
    right: 22px;
    width: 6px;
    height: 6px;
    background: 
        radial-gradient(circle at 35% 35%, #1A1A1A 0%, #000000 100%);
    border-radius: 50%;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.3),
        inset -0.5px -0.5px 1px rgba(0, 0, 0, 0.4);
    z-index: 12;
}

.pomeranian-eye-right::before {
    content: '';
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}
