body {
    background-color:#0f0f0f;
    text-align: center;
    color: #e9e9e9;
}
a {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Inherits the color from the parent, or you can specify a custom color */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}


/* #region === Desktop Layout === */
  .container {
      display: grid;
      /* background-color: brown; */
      grid-template-columns: repeat(4, 170px);
      grid-template-rows: 150px 100px 100px 100px 647.11px;
      grid-template-areas:
          "one two four three"
          "five five eight eight"
          "six six eight eight"
          "seven seven eight eight"
          "nine nine ten ten"
          "eleven eleven eleven eleven";
      justify-content: center;
      padding: 10px;
      gap: 24px;
      margin-top: 100px;
  }

  .item {
      background-color: #21242e;
      border-radius: 5px;
      /* Centering content properly */
      display: grid;  
      align-items: center;  /* ✅ Centers content vertically */
      justify-content: center;  /* ✅ Centers content horizontally */
      padding: 12px;  /* ✅ Adds spacing inside */
      row-gap: 12px;
      transition: transform 0.2s ease; /* Smooth transition */
      cursor: pointer;
  }

  .item:hover{
    transform: scale(1.03); /* Slight scale-up on hover */
  }

  .item img {
      max-width: 100px;
  }

  .desc{
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap:70px;
  }

  .desc-img{
    /* width:100px;
    height: 100px; */
    justify-content: center;
  }

  .seven .desc .desc-img img {
    width: 60px;
    height: 60px;
  }

  .medium-text{
    font-size: 15px;
  }
  .regular-text{
    font-size: 13px;
  }

  .six .desc{
    gap:110px;
  }

  .seven .desc{
    gap:40px;
  }
 
  .one { grid-area: one; }
  .two { grid-area: two; }
  .three { grid-area: three; }
  .four { grid-area: four; }
  .five { grid-area: five;}
  .six { grid-area: six;}
  .seven { grid-area: seven;}
  .eight { grid-area: eight; 
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .nine { grid-area: nine; 
    position: relative;
  }
  .ten { grid-area: ten;
    position: relative;
  }
  .eleven { grid-area: eleven;
    position: relative;
  }

  
  .item-badge{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;      /* Adjust size as needed */
    height: auto;
    z-index: 2;
    cursor: alias;
    background-color: #21242e;
    border-radius: 5px;
  }

  .item-badge img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px; /* optional */
  }

  .ten{
    
  }

  .nine .video-card{
    border-radius: 5px;
  }
  .ten .video-card{
    border-radius: 5px;
  }
  
  .profile-img img{
      min-width: 420px;
  }
  .socialimg img{
      max-width: 60px;
  }


/* #endregion */

/* #region === Mobile Layout === */
  @media(max-width: 768px){
      .mobile-container {
          display: grid;
          /* background-color: brown; */
          grid-template-columns: repeat(2, 130px);
          grid-template-rows: 120px 120px 70px 70px 70px 231.11px 120px;
          grid-template-areas:
              "one two"
              "three four"
              "five eight"
              "six eight"
              "seven seven"
              "nine ten"
              "eleven eleven";
          justify-content: center;
          padding: 10px;
          row-gap: 20px;
          column-gap: 25px;
          margin-top: 40px;
      }
      .medium-text{
        font-size: 9px;
      }
      .regular-text{
        font-size: 8px;
      }

      .item {
          background-color: #21242e;
          border-radius: 5px;
          /* Centering content properly */
          display: grid;  
          align-items: center;  /* ✅ Centers content vertically */
      }

      .item img {
          max-width: 80px;
      }

      .eight{
          overflow: hidden;
          display: flex;
          justify-content: center;
          align-items: center;
          /* width: 100%; */
          max-width: 100vw;
      }

      .desc{
        display: flex;
        /* padding: 5px; */
    }

    .desc-text{
      display: flex;
      flex-direction: column;
      align-items: center;
      width:200px;
    }

    .six .desc{
      display: flex;
      flex-direction: column;
      gap:12px;
    }

    .six .desc .desc-text{
      order: 2;
    }

    .five .desc .desc-img{
      display: none;
    }
    

    .six .desc .desc-text .medium-text{
      display: none;
    }

    .seven .desc .desc-img img{
      width: 40px;
      height: 40px;
    }

      .profile-img{
          width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
      }

      .profile-img img{
          width: auto;
          min-width: 190px;
          max-width: 100%;
          height: auto;
          object-fit: contain;
          display: block;
      }

      .nine{
        cursor:cell;
        position: relative;
      }

      .ten{
        
      }

      .nine .video-card{
        border-radius: 5px;
      }
      .ten .video-card{
        border-radius: 5px;
      }

      .item-badge{
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;      /* Adjust size as needed */
        height: auto;
        z-index: 2;
        cursor: pointer;
        background-color: #21242e;
        border-radius: 5px;
      }

      .item-badge img{
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px; /* optional */
      }

      .video-card.one {grid-area:v1;}
      .video-card.two {grid-area:v2;}
      .video-card.three {grid-area:v3;}
      .video-card.four {grid-area:v4;}
      .video-card.five {grid-area:v5;}
  }

/* #endregion */




