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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #10131c;
}

body {
    font-family: sans-serif;
}

#world {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: #f5d6a0;
}

.sky {
    position: absolute;
    inset: 0 0 45% 0;
    background: linear-gradient(to bottom, #8bc8e8 0%, #b9dced 55%, #f3d5a3 100%);
    z-index: 1;
}

.sun {
    position: absolute;
    width: 130px;
    height: 130px;
    right: 14%;
    top: 12%;
    border-radius: 50%;
    background: #ffe8a6;
    box-shadow: 0 0 40px rgba(255, 232, 166, .7),
                0 0 90px rgba(255, 220, 120, .35);
    animation: sunFloat 8s ease-in-out infinite;
    z-index: 2;
}

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

.hill {
    position: absolute;
    bottom: 39%;
    border-radius: 50% 50% 0 0;
    z-index: 3;
}

.hill-back {
    width: 75vw;
    height: 25vh;
    left: -15vw;
    background: #91b98d;
    transform: rotate(2deg);
}

.hill-middle {
    width: 65vw;
    height: 22vh;
    right: -15vw;
    background: #789f79;
    transform: rotate(-3deg);
}

.cloud {
    position: absolute;
    width: 170px;
    height: 55px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .72);
    z-index: 5;
    filter: blur(1px);
    animation: cloudMove 35s linear infinite;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud::before {
    width: 75px;
    height: 75px;
    left: 25px;
    bottom: 10px;
}

.cloud::after {
    width: 95px;
    height: 95px;
    right: 20px;
    bottom: 5px;
}

.cloud-one {
    top: 15%;
    left: -200px;
}

.cloud-two {
    top: 25%;
    left: -350px;
    transform: scale(.7);
    animation-delay: -15s;
}

@keyframes cloudMove {
    from { transform: translateX(0); }
    to { transform: translateX(130vw); }
}

.bird {
    position: absolute;
    color: #39464d;
    font-size: 28px;
    z-index: 8;
    animation: birdFly 12s linear infinite;
}

.bird-one { top: 18%; left: -10%; }
.bird-two { top: 25%; left: -30%; animation-delay: -4s; }
.bird-three { top: 13%; left: -50%; animation-delay: -8s; }

@keyframes birdFly {
    0% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(55vw) translateY(-25px); }
    100% { transform: translateX(120vw) translateY(10px); }
}

.yamuna {
    position: absolute;
    left: -10%;
    bottom: 20%;
    width: 120%;
    height: 28%;
    background: linear-gradient(to bottom, #70b9c4, #4c9dab, #397f91);
    border-radius: 50% 50% 0 0;
    transform: rotate(-3deg);
    z-index: 10;
    overflow: hidden;
}

.water-line {
    position: absolute;
    width: 180px;
    height: 8px;
    border-top: 3px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    animation: waterMove 5s ease-in-out infinite;
}

.line-one { top: 25%; left: 10%; }
.line-two { top: 45%; left: 35%; animation-delay: -1s; }
.line-three { top: 65%; left: 60%; animation-delay: -2s; }
.line-four { top: 35%; left: 80%; animation-delay: -3s; }

@keyframes waterMove {
    0%, 100% { transform: translateX(-25px); }
    50% { transform: translateX(35px); }
}

.ground {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 43%;
    background: linear-gradient(to bottom, #b4a46f, #8d875b);
    clip-path: polygon(
        0 8%,
        12% 3%,
        25% 10%,
        38% 4%,
        52% 11%,
        66% 5%,
        80% 10%,
        100% 4%,
        100% 100%,
        0 100%
    );
    z-index: 20;
}

.tree {
    position: absolute;
    width: 230px;
    height: 360px;
    z-index: 35;
}

.tree-left {
    left: 3%;
    bottom: 30%;
}

.tree-right {
    right: 3%;
    bottom: 29%;
    transform: scale(.78);
}

.trunk {
    position: absolute;
    width: 48px;
    height: 220px;
    left: 91px;
    bottom: 0;
    background: linear-gradient(to right, #61442f, #8b6140, #593d2a);
    border-radius: 30px 30px 10px 10px;
    transform: rotate(-4deg);
}

.branch {
    position: absolute;
    width: 115px;
    height: 25px;
    background: #68472f;
    border-radius: 30px;
    transform-origin: left center;
}

.branch-one { left: 100px; bottom: 150px; transform: rotate(-35deg); }
.branch-two { left: 90px; bottom: 185px; transform: rotate(35deg); }
.branch-three { left: 70px; bottom: 220px; transform: rotate(-20deg); }

.leaf {
    position: absolute;
    width: 115px;
    height: 85px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #9fbd79, #55754e 75%);
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, .12);
    animation: leafBreath 5s ease-in-out infinite;
}

.leaf-one { left: 15px; top: 20px; }
.leaf-two { left: 80px; top: 5px; animation-delay: -1s; }
.leaf-three { left: 120px; top: 60px; animation-delay: -2s; }
.leaf-four { left: 5px; top: 85px; animation-delay: -3s; }
.leaf-five { left: 75px; top: 95px; animation-delay: -4s; }
.leaf-six { left: 125px; top: 125px; animation-delay: -2.5s; }

@keyframes leafBreath {
    0%, 100% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.04) rotate(2deg); }
}

.house {
    position: absolute;
    left: 28%;
    bottom: 29%;
    width: 180px;
    height: 145px;
    z-index: 32;
}

.house-wall {
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 160px;
    height: 105px;
    background: #d7b27c;
    border-radius: 5px;
}

.roof {
    position: absolute;
    left: 0;
    top: 15px;
    width: 180px;
    height: 70px;
    background: #9b6449;
    clip-path: polygon(
        50% 0,
        100% 65%,
        95% 80%,
        5% 80%,
        0 65%
    );
}

.door {
    position: absolute;
    left: 70px;
    bottom: 0;
    width: 38px;
    height: 68px;
    background: #674a37;
    border-radius: 5px 5px 0 0;
}

.window {
    position: absolute;
    left: 25px;
    bottom: 45px;
    width: 28px;
    height: 30px;
    background: #6b9aa0;
    border: 5px solid #654632;
}

.lamp {
    position: absolute;
    right: 22px;
    bottom: 42px;
    width: 12px;
    height: 18px;
    border-radius: 50%;
    background: #ffd36d;
    box-shadow: 0 0 20px rgba(255, 210, 100, .8);
    animation: lampGlow 2s ease-in-out infinite;
}

@keyframes lampGlow {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}

.house-two {
    left: 58%;
    bottom: 28%;
    transform: scale(.7);
}

.flowers {
    position: absolute;
    left: 45%;
    bottom: 26%;
    display: flex;
    gap: 18px;
    z-index: 40;
    font-size: 22px;
    animation: flowersSway 4s ease-in-out infinite;
}

.flowers span:nth-child(even) {
    transform: translateY(10px);
}

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

.cow {
    position: absolute;
    left: 48%;
    bottom: 24%;
    width: 190px;
    height: 125px;
    z-index: 45;
    animation: cowMove 9s ease-in-out infinite;
}

.cow-body {
    position: absolute;
    left: 25px;
    top: 35px;
    width: 125px;
    height: 70px;
    background: #f0e9d8;
    border-radius: 50% 45% 40% 45%;
}

.cow-head {
    position: absolute;
    left: 130px;
    top: 25px;
    width: 50px;
    height: 55px;
    background: #e7ddca;
    border-radius: 50% 45% 45% 50%;
}

.cow-ear {
    position: absolute;
    width: 28px;
    height: 15px;
    background: #d2b99a;
    border-radius: 50%;
}

.ear-one {
    left: 128px;
    top: 18px;
    transform: rotate(-25deg);
}

.ear-two {
    left: 160px;
    top: 20px;
    transform: rotate(25deg);
}

.cow-leg {
    position: absolute;
    width: 13px;
    height: 48px;
    background: #d9cbb5;
    border-radius: 10px;
}

.leg-one { left: 48px; top: 90px; }
.leg-two { left: 78px; top: 90px; }
.leg-three { left: 112px; top: 88px; }
.leg-four { left: 135px; top: 86px; }

.cow-tail {
    position: absolute;
    left: 20px;
    top: 42px;
    width: 40px;
    height: 45px;
    border-left: 8px solid #d9cbb5;
    border-radius: 50%;
    transform: rotate(25deg);
}

@keyframes cowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(35px); }
}

.peacock {
    position: absolute;
    right: 28%;
    bottom: 27%;
    width: 130px;
    height: 160px;
    z-index: 47;
    animation: peacockMove 6s ease-in-out infinite;
}

.peacock-body {
    position: absolute;
    left: 40px;
    bottom: 5px;
    width: 50px;
    height: 75px;
    background: #315f67;
    border-radius: 50%;
}

.peacock-neck {
    position: absolute;
    left: 63px;
    bottom: 68px;
    width: 23px;
    height: 65px;
    background: #27747b;
    border-radius: 50%;
}

.peacock-head {
    position: absolute;
    left: 58px;
    bottom: 125px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #317f85;
}

.peacock-feather {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        #c9ad52 0 8%,
        #2b7f7f 10% 20%,
        #31576a 22% 35%,
        transparent 37%
    );
    transform-origin: bottom center;
    opacity: .9;
}

.feather-one {
    left: -5px;
    bottom: 30px;
    transform: rotate(-30deg);
}

.feather-two {
    left: 10px;
    bottom: 55px;
    transform: rotate(-10deg);
}

.feather-three {
    left: 45px;
    bottom: 65px;
    transform: rotate(15deg);
}

.feather-four {
    left: 65px;
    bottom: 35px;
    transform: rotate(35deg);
}

@keyframes peacockMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

.villager {
    position: absolute;
    left: 38%;
    bottom: 25%;
    width: 65px;
    height: 140px;
    z-index: 48;
    animation: villagerWalk 8s ease-in-out infinite;
}

.villager-head {
    position: absolute;
    left: 18px;
    top: 0;
    width: 34px;
    height: 34px;
    background: #b8754f;
    border-radius: 50%;
}

.villager-body {
    position: absolute;
    left: 10px;
    top: 35px;
    width: 50px;
    height: 70px;
    background: #d8b36d;
    border-radius: 20px 20px 10px 10px;
}

.villager-arm {
    position: absolute;
    top: 45px;
    width: 12px;
    height: 55px;
    background: #b8754f;
    border-radius: 10px;
}

.arm-left {
    left: 2px;
    transform: rotate(15deg);
}

.arm-right {
    right: 2px;
    transform: rotate(-15deg);
}

.villager-leg {
    position: absolute;
    top: 100px;
    width: 13px;
    height: 40px;
    background: #76533e;
    border-radius: 10px;
}

.leg-left {
    left: 18px;
}

.leg-right {
    right: 18px;
}

@keyframes villagerWalk {
    0% { transform: translateX(-80px); }
    50% { transform: translateX(80px); }
    100% { transform: translateX(-80px); }
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 80;
}

.particles span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 241, 184, .8);
    animation: particleFloat 7s ease-in-out infinite;
}

.particles span:nth-child(1) { left: 20%; top: 60%; }
.particles span:nth-child(2) { left: 35%; top: 45%; animation-delay: -1s; }
.particles span:nth-child(3) { left: 55%; top: 70%; animation-delay: -2s; }
.particles span:nth-child(4) { left: 70%; top: 50%; animation-delay: -3s; }
.particles span:nth-child(5) { left: 80%; top: 65%; animation-delay: -4s; }
.particles span:nth-child(6) { left: 45%; top: 55%; animation-delay: -5s; }
.particles span:nth-child(7) { left: 15%; top: 72%; animation-delay: -3s; }
.particles span:nth-child(8) { left: 90%; top: 55%; animation-delay: -1s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: .2;
    }

    50% {
        transform: translateY(-30px);
        opacity: 1;
    }
}

.logo-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    animation: logoReveal 5s ease forwards;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .8);
    box-shadow: 0 0 40px rgba(255, 255, 255, .2);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.4);
    }

    70% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 200;
    background: radial-gradient(
        ellipse at center,
        transparent 50%,
        rgba(0, 0, 0, .28) 100%
    );
}

@media (max-width: 700px) {
    .sun {
        width: 90px;
        height: 90px;
    }

    .tree {
        transform: scale(.65);
        transform-origin: bottom;
    }

    .tree-right {
        transform: scale(.5);
    }

    .house {
        transform: scale(.7);
        transform-origin: bottom;
    }

    .house-two {
        transform: scale(.5);
    }

    .cow {
        transform: scale(.65);
        transform-origin: bottom;
    }

    .peacock {
        transform: scale(.65);
        transform-origin: bottom;
    }

    .villager {
        transform: scale(.7);
        transform-origin: bottom;
    }

    .logo-symbol {
        width: 65px;
        height: 65px;
    }
}
