  * {
      box-sizing: border-box;
    }
  
    body {
      font-family: "Arial", sans-serif;
      font-weight: bold;
      font-style: normal;
      width: 100%;
      height: 100%;
      padding:0;
      margin:0;
      background: black;
      overflow:hidden;
      color: white;
    }
    
    .logo {
      position: absolute;
      float: left; 
      margin: 50px;
      color: white;
    }
    
    .special-gothic-expanded-one-regular {
      font-family: "Special Gothic Expanded One", sans-serif;
      font-weight: 400;
      font-style: normal;
    }
        
    .logo > p {
      margin: 10px; 
      text-shadow: 4px 4px 8px black;
      font-size: 15px;
    }
    
    h1 {
      font-size: 100px;
      line-height:1;
      margin: 0;
      text-shadow: 4px 4px 8px black;
    }
    
    .wrapper {
      display:flex;
      flex-direction:row;
      width:100%;
      height:100%;
    }
    
    @media (max-width: 1080px){
      
      body{
        width:100vw;
        height:100vh;
        overflow-x:scroll;
        scroll-snap-type: x mandatory;
      }
      
      .logo{
        position:fixed;
        margin: 15px;
        font-size: 12px;
        padding-bottom: 20px;
      }
      
      .logo > p{
        margin:2px;
      }
      
      .logo > h1{
        margin-top: 5px;
        font-size: 50px;
        line-height: 1;
      }
      
      .scroll-container {
        width: 100%;
        max-width: 1200px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        margin-bottom: 40px;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      
      .wrapper{
        display: inline-flex;
        width: auto;
        height: 100vh;
        word-wrap:nowrap;
      }
      
      .category {
        display:inline-block;
        float:left;
        scroll-snap-align: start;
        width: 100vw !important;
      }
      
      .category:hover {
        display:inline-block;
        float:left;
        scroll-snap-align: start;
        width: 100vw !important;
        flex: 1 !important;
      }
    
     .desc:focus > p {
        height:auto;
        opacity: 1;
        transition: opacity .2s .2s, height .5s;
        padding: 0;
        margin: 50px auto;
      }
      
      .desc:focus > a {
        height: auto;
        margin: 0 auto;
        opacity: 1;
        transition: opacity .2s .2s, height .5s;
        overflow: visible;
      }
      
      .desc:focus {
        background: #000000;
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .75) 50%, rgba(46, 22, 8, 0) 75%, rgba(0, 0, 0, 1) 100%);
        transition: background 0.5s 0.5s;
        align-self:flex-end;
        height: 100vh;
        display: flex;
        align-items: center;
      }
      
      .desc {
        padding: 5px;
      }
      
      .h2 {
        margin-bottom: 20px;
      }
      
      /* Progress bar with dots */
      .progress-bar {
          position: fixed;
          bottom: 5px;
          left: 50%;
          transform: translateX(-50%);
          display: flex;
          gap: 15px;
          z-index: 100;
          padding: 12px 20px;
          border-radius: 50px;
      }
        
      .progress-dot {
          width: 10px;
          height: 5px;
          border-radius: 25%;
          background: rgba(255, 255, 255, 0.4);
          cursor: pointer;
          transition: all 0.3s ease;
          position: relative;
      }
        
      .progress-dot:hover {
          transform: scale(1.2);
          background: rgba(255, 255, 255, 0.8);
      }
      
      .progress-dot.active {
          background: #fff;
          transform: scale(1.3);
          /*box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);*/
      }
      
      .progress-dot::after {
          /*content: attr(data-title);*/
          position: absolute;
          top: -30px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 4px 8px;
          border-radius: 4px;
          font-size: 12px;
          white-space: nowrap;
          opacity: 0;
          transition: opacity 0.3s;
      }
      
      .progress-dot:hover::after {
          opacity: 1;
      }
    }
    
    .category {
      background-size: cover;
      flex: 1;
      width: 98%;
      height:100vh;
      overflow: hidden;
      margin: 0 5px;
      transition: flex-grow 0.2s;
    }
    
    .category:hover {
      flex: 2; 
      transition: flex-grow 0.2s;
    }
    
    .desc {
      background: #000000;
      background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(46, 22, 8, 0) 50%,  rgba(46, 22, 8, 0) 75%, rgba(0, 0, 0, .75) 100%);
      padding: 24px;
      width: 100%;
      height: 100%;
      text-align: center;
      color: white;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    
    .desc:hover {
      background: #000000;
      background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(46, 22, 8, 0) 50%,  rgba(46, 22, 8, 0) 75%, rgba(0, 0, 0, .75) 100%);
      transition: background 0.5s 0.5s;
    }
    
    .desc > p {
      
      text-shadow: 0px 0px 6px rgba(0,0,0,1);
      font-size: 25px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      overflow: hidden;
      height: 0;
      opacity: 0;
      transition: opacity .2s, height .5s;
    }
    
    .desc:hover > p {
      height: 100%;
      opacity: 1;
      transition: opacity .2s .2s, height .5s;
    }
    
    .desc > a {
      
      text-shadow: 0px 0px 6px rgba(0,0,0,1);
      font-size: 25px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      /*overflow: hidden;*/
      height: 0;
      opacity: 0;
      transition: opacity .2s, height .5s;
    }
    
    .desc:hover > a {
      height: auto;
      opacity: 1;
      transition: opacity .2s .2s, height .5s;
    }
    
    a {
     color: inherit;
    }