 *, *::after, *::before {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --body-color: #298abf;
        --body-shadow-color: #1976a8;
        --belt-color: rgb(186, 62, 85);
        --black: #555;
        --mouth-bg-color: rgb(140, 51, 77);
        --page-bg-color: #eee;
      }
      body {
        background: var(--page-bg-color);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: sans-serif;
      }
      .doraemon {
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: scale(0.85);
        --head-height: 300px;
        --head-width: calc(var(--head-height) * 1.183);
        --belt-width: calc(var(--head-width) * 0.6625);
        --belt-height: 25px;
      }
      .head {
        height: var(--head-height);
        width: var(--head-width);
        background: var(--body-color);
        border-radius: 60% 60% 40% 40% / 60% 60% 70% 70%;
        position: relative;
        box-shadow: inset 0 0 11px 4px var(--body-shadow-color);
        z-index: 2;
      }
      .face {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 250px;
        background: #fff;
        border-radius: inherit;
      }
      .eyes {
        position: relative;
      }
      .eye {
        position: absolute;
        width: 65px;
        height: 84px;
        background: #fff;
        border: 1px solid var(--black);
        border-radius: 100% 80% 86% 89% / 100% 83% 80% 100%;
        top: -36px;
      }
      .eye-left { left: 50%; transform: translateX(-100%); }
      .eye-right { right: 50%; transform: translateX(100%) scaleX(-1); }
      .eyeball {
        position: absolute;
        top: 50%;
        right: 10px;
        width: 15px;
        height: 20px;
        background: #000;
        border-radius: 50%;
      }
      .eyeball::after {
        content: "";
        position: absolute;
        width: 40%;
        height: 40%;
        bottom: 10%;
        left: 30%;
        background: #fff;
        border-radius: 50%;
      }
      .nose {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--belt-color);
        position: absolute;
        left: 50%;
        top: 28px;
        transform: translateX(-50%);
        box-shadow: 0 0 7px 2px #eee, 7px 3px 6px 6px #5555;
      }
      .mustache {
        position: absolute;
        width: 85px;
        height: 40px;
        top: 59px;
        left: 50%;
        transform: translate(-50%);
        z-index: 1;
      }
      .mustache-hair {
        position: absolute;
        width: 100px;
        background: var(--black);
        height: 2px;
      }
      .mustache-left-hair { left: -100px; }
      .mustache-left-hair:nth-child(1) { top: 0; transform: rotate(15deg); }
      .mustache-left-hair:nth-child(2) { top: 50%; transform: rotate(2deg); }
      .mustache-left-hair:nth-child(3) { bottom: 0; transform: rotate(-10deg); }
      .mustache-right-hair { right: -100px; }
      .mustache-right-hair:nth-child(4) { top: 0; transform: rotate(-15deg); }
      .mustache-right-hair:nth-child(5) { top: 50%; transform: rotate(-2deg); }
      .mustache-right-hair:nth-child(6) { bottom: 0; transform: rotate(10deg); }
      .mouth {
        position: absolute;
        top: 110px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 80px;
        background: var(--mouth-bg-color);
        border-radius: 50% 50% 80% 80% / 50% 50% 100% 100%;
        z-index: 0;
      }
      .belt {
        z-index: 2;
        width: var(--belt-width);
        height: var(--belt-height);
        background: var(--belt-color);
        position: relative;
        top: -20px;
        border-radius: 20% 20% 20% 20% / 20% 20% 30% 30%;
      }
      .bell-ring {
        height: 50px;
        width: 49px;
        background: #e1ba6f;
        border-radius: 50%;
        border: 1px solid var(--black);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: inset 0 0 9px 3px var(--black);
      }
      .body-part {
        position: relative;
        top: -10px;
        width: calc(var(--belt-width) * 1);
        height: calc(var(--belt-width) * 0.7	 + 10px);
        background: var(--body-color);
        border-radius: 70% 70% 100% 100% / 0% 0% 90% 90%;
        border: 1px solid var(--black);
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .chest {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 90%;
        background: #fff;
        border-radius: 60% 60% 30% 30% / 60% 60% 70% 70%;
        border: 1px solid var(--black);
        z-index: 1;
      }
      .pocket {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 60px;
        background: transparent;
        border: 1px solid var(--black);
        border-radius: 0 0 80px 80px / 0 0 100% 100%;
        z-index: 2;
      }
      .hand {
        position: absolute;
        width: 60px;
        height: 100px;
        background: var(--body-color);
        border-radius: 30% 30% 60% 60% / 30% 30% 70% 70%;
        border: 1px solid var(--black);
        z-index: 0;
        top: -30px;
      }
      .hand::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid var(--black);
      }
      .right-hand {
        left: -70px;
        transform: rotate(80deg);
      }
      .left-hand {
        right: -70px;
        transform: rotate(-80deg);
      }
      .shoulder {
        position: absolute;
        width: 100%;
        height: 30px;
        background: var(--body-color);
        top: -15px;
        border-radius: 10% / 100%;
        z-index: 0;
      }
      .leg {
        position: absolute;
        bottom: -20px;
        width: 90px;
        height: 50px;
        background: #fff;
        border-radius: 50%;
        border: 1px solid var(--black);
        z-index: 0;
      }
      .left-leg { left: 30px; }
      .right-leg { right: 30px; }
      .footer {
        position: fixed;
        bottom: 0;
        width: 100vw;
        height: 30px;
        background: #c7c7c7;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.9rem;
      }
