
.logo_scene {
    position: relative;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    margin-bottom: inherit;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1a2a6c, #b21f1f, #fdbb2d);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(253, 187, 45, 0.3);
    cursor: pointer;
    transition: filter 0.3s ease;
}

.logo_scene:hover {
    filter: brightness(1.2);
}

.hidden-paragraph {
    position: fixed;
    display: none;
    max-width: 800px;
    left: 25%;
    top: 20%;
    margin: auto;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mountain {
    position: absolute;
    bottom: 0;
    width: 110%;
    height: 110%;
    background-color: #000;
    background: linear-gradient(to bottom, transparent 40%, #000 80%);
    clip-path: polygon(0% 100%, 20% 60%, 40% 90%, 60% 40%, 80% 70%, 100% 100%);
    box-shadow:
      5px 5px 15px rgba(0,0,0,0.3),
       inset 0 -10px 20px rgba(255,255,255,0.2);

    z-index: 2;
}

 .silhouette {

    top: 0;
    right: 0;
    width: 75px;
    height: 130px;
}

.face {
    position: absolute;
    width: 40%;
    height: 40%;
    right: 21px;
    bottom: 9px;
    background: linear-gradient(to bottom, transparent 0%, #3a5a40 0%);
    clip-path: polygon(
        30% 15%,  /* Forehead start */
        40% 10%,  /* Hairline curve */
        55% 8%,   /* Top of head */
        70% 12%,  /* Right side of hair */
        80% 20%,  /* Ponytail base right */
        85% 35%,  /* Ponytail middle */
        80% 55%,  /* Ponytail end */
        70% 60%,  /* Back of neck */
        65% 65%,  /* Neck curve */
        60% 70%,  /* Shoulder start */
        40% 75%,  /* Shoulder dip */
        30% 70%,  /* Chin to neck */
        25% 60%,  /* Jawline */
        20% 50%,  /* Cheekbone */
        18% 40%,  /* Cheek */
        20% 30%,  /* Eye area */
        25% 20%   /* Temple back to forehead */
    );
    border-radius: 60% 40% 50% 50% / 60% 60% 40% 40%;
    z-index: 5;
}

.ponytail {
    position: absolute;
    width: 28px;
    height: 70px;
    right:20px;
    bottom: 2px;
    background: linear-gradient(to bottom, transparent 0%, #3a5a40 0%);
    clip-path: polygon(
        0% 10%,
        40% 0%,
        100% 30%,
        80% 60%,
        60% 80%,
        30% 100%,
        20% 80%
    );
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    transform: rotate(-20deg);
    box-shadow: 5px 5px 10px rgba(0,0,0,0.4);
    z-index: 5;
    overflow: visible;
}
.shoulders {
    position: absolute;
    width: 60px;
    height: 30px;
    right: 23px;
    bottom: 4px;
    background: linear-gradient(to bottom, transparent 0%, #3a5a40 0%);
    clip-path: polygon(
        0% 60%,
        20% 30%,
        40% 20%,
        60% 30%,
        80% 50%,
        100% 70%,
        80% 80%,
        60% 90%,
        40% 80%,
        10% 80%
    );
    z-index: 5;
}

.neck {
    position: absolute;
    width: 15px;
    height: 20px;
    right: 45px;
    bottom: 22px;
    background: linear-gradient(to bottom, transparent 0%, #3a5a40 0%);
    clip-path: polygon(
        0% 0%,
        100% 10%,
        100% 90%,
        0% 100%
    );
    z-index: 5;
}
.cloud {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.1));
    z-index: 2;
}

.cloud-main {
    width: 60px;
    height: 30px;
}

.cloud-part {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
}

.ground {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to bottom, #3a5a40, #3a5a30);
    z-index: 5;
}

.sun {
    position: absolute;
    top: 20%;
    right: 47%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ff7e00 20%, #ffbb00 70%);
    border-radius: 50%;
    box-shadow: 0 0 30px #ff7e00;
    z-index: 0;
}
