@media screen and (max-width: 425px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    overflow: hidden;
    background-color: rgb(87, 87, 87);
    height: 100vh;
  }

  a {
    text-decoration: none; 
  }

  ul {
    list-style-type: none;
  }

  .desktop-view {
    /* border: none;
    border-radius: none;
    width: 100%;
    height: 100%;
    background-color: rgba(196, 196, 255, 0.281);
    position: relative;
    left: unset;
    top: unset;
    overflow: hidden; */
    /*  */
    display: flex;
    flex-direction: column;
    height: 100vh;
  }

  .header {
    background-color: #2c3e50;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    border-radius: none;
    height: 25px;
  }

  /* Top bar with sliding notice */
  .header-notice {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    padding: 6px;
    overflow: hidden;
    position: relative;
    border-radius: none;
    height: 100%;
  }

  /* Sliding text container */
  .sliding-text-container {
    display: flex;
    width: max-content;
    animation: slideText 25s linear infinite;
    padding-right: 0px;
  }

  /* Pause animation on hover */
  .sliding-text-container:hover {
    animation-play-state: paused;
  }

  /* Sliding text styling */
  .sliding-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
  }

  /* Animation for sliding text */
  @keyframes slideText {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  header > div::-webkit-scrollbar{
    display: none;
  }

  /** stop area **/
  .line-up{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: gray;
    margin-left: -15px;
  }

  nav {
    position: relative;
    height: 60px;
  }

  .nav-container {
    background-color: rgb(2, 2, 31);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    height: 100%;
    position: relative;
  }

  .logo {
    font-size: x-large;
    font-weight: bold;
    color: unset;
    color: rgb(99, 185, 255);
    cursor: pointer;
  }

  .logo span{
    color: rgba(185, 185, 247, 1);
  }

  .sidebar-toggler{
    padding: 5px;
    cursor: pointer;
  }

  .bar1, .bar2, .bar3{
    width: 25px;
    height: 3px;
    background-color: aliceblue;
    margin: 5px 0;
    transition: 0s;
    border-radius: 50px;
  }

  .change .bar2 {
    opacity: 0;
  }

  .change .bar1 {
    transform: translate(0px, 8px) rotate(-40deg);
  }

  .change .bar3 {
    transform: translate(0, -8px) rotate(40deg);
  }

  .menu-ctn{
    position: fixed;
    top: 85px;
    left: 0;
    bottom: 60px;
    width: 100%;
    /*height: calc(100vh);*/
    opacity: 0;
    visibility: hidden;
    z-index: 2;
  }

  .menu-wrap{
    position: fixed;
    top: 85px;
    bottom: 60px;
    padding: 10px 10px 20px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: rgb(2, 2, 31);
    width: 75%;
    /*height: calc(100vh);*/
  }

  .show{
    visibility: visible;
    opacity: 1;
  }

  .menu-wrap::-webkit-scrollbar{
    display: none;
  }

  .menu-list li{
    margin: 5px 0;
  }

  .menu-list a{
    color: aliceblue;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .menu-list a:hover{
    background-color: blue;
  }

  .menu-bottom{
    position: absolute;
    bottom: 10px;
    color: aliceblue;
    justify-self: center;
  }

  .menu-bottom span{
    margin-bottom: 5px;
    display: block;
    text-align: center;
  }

  .hiibeedot{
    color: aliceblue;
    text-decoration: underline;
  }

  .hiibeedot:hover{
    color: rgb(0, 136, 255);
  }

  /** Footer-Section-Start **/
  .line-down{
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: gray;
  }

  .footer-container {
    position: absolute;
    bottom: 0;
    background-color: rgb(2, 2, 31);
    border-radius: none;
    width: 100%;
    height: 60px;
  }

  .footer-container ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 25px;
  }

  .footer-container a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    color: aliceblue;
    font-size: smaller;
    fill: aliceblue;
  }

  .footer-container a:hover, .footer-container svg:hover {
    color: rgb(0, 136, 255);
    fill: rgb(0, 136, 255);
  }
}