
@media (min-width: 320px) and (max-width: 374px) {

      
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  .header {
    background-color: #333; 
    padding: 35px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 100;
    display: flex;
  }


  .logo-container {
    display: flex;
    align-items: left;
    justify-content: left;
    background: transparent;
    position: absolute;
    bottom: 22px;
    left: 5%;
  }
  
  
  .shutter {
    position: relative;
    left: 0%;
    width: 42px;
    height: 42px;
    border: 3px solid #FF5722;
    border-radius: 50%;
    margin-right: 10px;
    
  }
  

  
  .camera-icon {
    position: absolute;
    top: 16px;
    left: 18px;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #e64a19;
    width: 35px;
    height: 35px;

  }
  
  
  
  .flame-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #ff0000;
    opacity: 0.5;
    clip-path: circle(25% at 50% 50%);
    animation: flame 1s infinite alternate;
    color: #fff;
  }
  
  @keyframes flame {
      
    0% {
    opacity: 0.5;
    }
    50% {
    opacity: 0.8;
    }
    100% {
    opacity: 0.5;
    }
  }
  
 
  .logo-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    left: -20%;
    top: 40px;
  }
  
  .hot {
    color: #e64a19;
  }
  
  .snap {
    color: #fff;
  }


  
  .fun-buttons {
    display: flex;
    bottom: 0px;
    list-style: none;
    justify-content: center;
    position: absolute;
    left: 20.5%;
    background-color: transparent;
    padding: 5px;
    gap: 5px;
  }

  
  .fun-buttons button {
    display: flex;
    align-items: center;
    padding: 5px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    background-color: #e64a19;
    
    position: relative;
    bottom: 0px;
    left: 1px;

  }

  
  .fun-buttons button:hover {
    background-color: #e64a19;
  }
  
  .fun-buttons button:active {
    background-color: #e64a19;
    transform: translateY(2px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }


  
  .fun-buttons ion-icon {
    position: relative;
    bottom: 10px;
    left: 30%;
    width: 15px;
    height: 15px;
    color: #fff;
  }

  .videocam{
    opacity: 1;
  }

  .go-live-icon{
    opacity: 1;
  }

  .tv{
    opacity: 1;
  }

  .watch-live-icon{
    opacity: 1;
  }

  .start-chat{
    display: flex;
    z-index: 100;
    position: absolute;
    left: 57.5%;
    bottom: 20px;
    padding: 0px;
    background-color: transparent;
    opacity: 0;
  }

  #accepted-friends-btn{
    border-radius: 50%;
    width: 35px;  
    height: 35px;
    padding: 5px;
    position: relative;
    left: 5%;
    top: 13px;
    font-size: 1px;
    z-index: 100;
    margin-bottom: 20px;
    color: wheat;
    opacity: 0;
    cursor: pointer;
    background-color: rgb(62, 196, 0);

  }

  #accepted-friends-icon{
    position: relative;
    right: 50%;
    top: 15px;
    color: #fff;
    width: 33px;
    height: 33px;
    cursor: pointer;

  }
  #accepted-requests-count{
    position: relative;
    font-size: 17px;
    right: 4%;        
    top: 0px;
    color: rgb(62, 196, 0);
    opacity: 0;
  }


      
  #user-profile {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 65%;
    top: 0px;
    justify-content: center;
    padding: 5px;
    background-color: transparent;
    z-index: 200;
  }

  
  #user-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%; 
    border: 3px solid #FF5722;
    position: relative;
    top: 0px;
    left: 0%;
    cursor: pointer;
  }

  #user-name {
    font-size: 12px;
    font-weight: bold;
    color: #FF5722;
    position: absolute;
    left: 25%;
    top: 64px;
    opacity: 0;
  }


  #user-profile:hover{
    transform: translateY( -2px);
  }

  #user-pic:hover{
    border: 2px solid #e64a19;
  }

      
  .edit-profile-pen{
    position: relative;
    right: 30%;
    top: 10px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
  }

      
  #view-profile-button{
    position: relative;
    bottom: 3px;
    right: 59%;
    align-items: center;
    padding: 2px;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    background-color: darkmagenta;
    opacity: 0;
    
  }



  
  .logout{
    position: absolute;
    left: 81.5%;
    display: flex;
    top: 10px;
    background-color: transparent;
    padding: 5px;
    z-index: 200;
  }

  #logout-button{
    display: flex;
    align-items: center;
    padding: 5px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    background-color: #e64a19;
  }


  #logout-icon{
    position: relative;
    right: 49%;
    width: 20px;
    height: 20px;
    color: #fff;
    top: 15px;
  }

  #logout-button:hover {
    background-color: #e64a19;
  }

}