body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C3AF50;
    width: 100%;
    min-height: 100vh;

    >main {
        width: 250px;
        height: 500px;
        background-color: #ffffff;
        border: 5px solid #ECECEC;
        border-radius: 30px;
        display: flex;

        >section {
            display: flex;
            flex-wrap: wrap;
            width: 100%;

            >* {
                width: 100%;
            }

            >.up {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 13px;
                padding-block: 10px;

                >span {
                    display: flex;

                    &:nth-of-type(1) {
                        width: 6px;
                        height: 6px;
                        border-radius: 50%;
                        background-color: #ECECEC;
                    }

                    &:nth-of-type(2) {
                        height: 6px;
                        width: 35px;
                        background-color: #ECECEC;
                        border-radius: 50px;

                    }
                }
            }

            >.center {
                height: 400px;
                padding: 10px 10px;
                display: flex;
                flex-wrap: wrap;

                >.inner {
                    display: flex;
                    flex-wrap: wrap;
                    height: 100%;
                    width: 100%;
                    gap: 20px;
                    position: relative;
                    overflow: hidden;
                    background-color: black;

                    >* {
                        width: 100%;
                    }

                    >.before {
                        content: "";
                        position: absolute;
                        width: 100%;
                        background-position: center;
                        background-size: cover;
                        height: 100%;
                        top: 0;
                        left: 0;
                        z-index: 1;
                        filter: blur(15px);
                        background-image: url(../img/trying-album-cover.jpg);
                        color: rgb(221, 140, 59);
                    }

                    >.music {
                        position: relative;
                        z-index: 2;
                        display: flex;
                        flex-wrap: wrap;


                        >figure {
                            width: 100%;
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            align-items: center;
                            align-content: end;
                            gap: 15px;

                            >img {
                                width: 70%;
                            }

                            >figcaption {
                                display: flex;
                                flex-wrap: wrap;
                                gap: 5px;

                                >p {
                                    text-align: center;
                                    width: 100%;

                                    &:nth-of-type(1) {
                                        color: #ffffff;
                                        font-weight: 600;
                                        font-size: 16px;
                                        letter-spacing: .6px;
                                    }

                                    &:nth-of-type(2) {
                                        color: #b3b3b3;
                                        font-weight: bold;
                                        font-size: 12px;
                                    }
                                }
                            }
                        }
                    }

                    >.play {
                        position: relative;
                        z-index: 2;

                        >.btn {
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            gap: 10px;

                            >span {
                                display: flex;
                                align-items: center;
                                color: #ffffff;
                                font-size: 30px;
                                cursor: pointer;

                                &:nth-of-type(1) {}

                                &:nth-of-type(2) {
                                    font-size: 50px !important;
                                }

                                &:nth-of-type(3) {}
                            }
                        }

                        >.line {
                            padding-inline: 20px;
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: space-between;

                            >span {
                                color: #ECECEC;
                                font-size: 8px;

                                &:nth-of-type(1) {}

                                &:nth-of-type(2) {}
                            }

                            >div {
                                background: url();
                                position: relative;
                                width: 100%;
                                height: 2px;
                                background-color: rgba(187, 187, 187, 0.466);
                                cursor: pointer;
                                margin-top: 5px;

                                >div {
                                    display: flex;
                                    height: 100%;
                                    width: 0%;
                                    background-color: #e49116;
                                    pointer-events: none;

                                    >span {
                                        cursor: pointer;
                                        position: absolute;
                                        left: 0;
                                        top: calc(50% - 3.5px);
                                        width: 7px;
                                        height: 7px;
                                        background-color: white;
                                        border-radius: 50%;
                                    }
                                }
                            }
                        }
                    }
                }
            }

            >.down {
                display: flex;
                margin-top: -10px;
                align-items: center;
                justify-content: center;

                >span {
                    width: 40px;
                    height: 40px;
                    border: 3px solid #ECECEC;
                    border-radius: 50%;
                }
            }
        }
    }

    >audio {
        display: none
    }
}
#profile {
  position: fixed;
  bottom: 2%;
  right: 3%;
  z-index: 999;
  height: 160px;
  width: 160px;

  &:hover {
    > #icon {
      > .inner {
        > a {
          opacity: 1;
        }
      }
    }

    > #main {
      &::before {
        background-size: 180%;
      }
    }
  }

  > #main {
    position: relative;
    width: 70%;
    height: 70%;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    border-radius: 50% 10%;
    overflow: hidden;
    border: none;
    outline: none;
    margin-left: auto;

    &::before {
      content: "";
      position: absolute;
      width: 94%;
      height: 94%;
      left: 3%;
      top: 3%;
      background-color: blueviolet;
      z-index: 2;
      transition: 0.8s;
      border-radius: 50% 10%;
      background-image: url(../img/photo_2025-03-03_00-46-08.jpg);
      background-size: 150%;
      background-repeat: no-repeat;
      background-position: center;
    }

    &::after {
      content: "";
      position: absolute;
      width: 55%;
      height: 140%;
      left: 18%;
      top: -20%;
      transform: rotate(-40deg);
      background-color: gold;
      z-index: 1;
      animation: profile-anime 80s linear infinite;
    }
  }

  > span {
    color: rgb(26, 26, 26);
    text-align: center;
    font-size: 100%;
    display: block;
    padding-left: 20px;
    padding-top: 7px;
    font-style: italic;
  }

  #icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;

    > .inner {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      width: 100%;
      height: 100%;
      cursor: pointer;
      /* &:hover {
> a {
opacity: 1;
}
} */

      > a {
        position: absolute;
        right: 30%;
        transition: 0.8s;
        right: 77%;
        opacity: 0;

        &:nth-of-type(1) {
          color: purple;

          top: 0%;
        }

        &:nth-of-type(2) {
          top: 22%;
          color: blue;
        }

        &:nth-of-type(3) {
          top: 44%;
          color: black;
        }

        &:nth-of-type(4) {
          top: 65%;
          color: rgb(75, 165, 201);
        }
      }
    }
  }
}
@keyframes profile-anime {
  from {
      transform: rotate(-3600deg);
  }
}