* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
   }
   
   body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #1b1d1e;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    padding-top: 30px;
   }
   
   .container {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 5rem;
   }
   
   .app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02), 
                0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 100;
    padding: 0.60rem 0;
    transition: all 0.3s ease-in-out;
   }
   
   
   .app-header:hover {
    background: rgba(30, 30, 30, 0.95);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.03), 
                0 6px 16px rgba(0, 0, 0, 0.5);
   }
   
   .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
   }
   
   .logo-container {
    position: relative;
    background: linear-gradient(135deg, #5db3e9, #5785e9);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(93, 179, 233, 0.4);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
   }
   .logo-shine {
    position: absolute;
    top: -150%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 60%
    );
    transform: rotate(30deg);
    animation: shineEffect 5s infinite linear;
    opacity: 0.6;
   }
   
   
   @keyframes shineEffect {
    0% {
        top: -150%;
        left: -150%;
        opacity: 0.4;
    }
    50% {
        top: 50%;
        left: 50%;
        opacity: 0.7;
    }
    100% {
        top: 150%;
        left: 150%;
        opacity: 0.4;
    }
   }
   
   .logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(93, 179, 233, 0.5);
   }
   
   
   .logo-text {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
   }
   
   
   .profile-header {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 1rem;
   }
   
   
   .profile-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
   }
   
   
   .profile-details {
    text-align: right;
   }
   
   
   .profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(45deg, #FFB347, #FF9966);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(93, 179, 233, 0.4);
   }
   
   
   .profile-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(93, 179, 233, 0.5);
   }
   
   
   .header-stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 55px;
    text-align: center;
    transition: all 0.3s ease-in-out;
   }
   
   
   .header-stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
   }
   
   
   .header-stat-box .stat-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFB347;
   }
   
   
   .header-stat-box .stat-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
   }
   
   
   #userName {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
   }
   
   
   .membership-container {
    display: flex;
    align-items: center;
    padding-top: 10px;
    gap: 6px;
    justify-content: flex-end;
   }
   
   
   #membershipType {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: linear-gradient(90deg, rgba(93, 179, 233, 0.1), rgba(87, 133, 233, 0.1));
    border: 1px solid rgba(93, 179, 233, 0.2);
    border-radius: 6px;
    color: #FFB347;
    font-size: 9px;
    font-weight: 600;
   
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(93, 179, 233, 0.2);
    transition: all 0.3s ease-in-out;
   }
   
   
   #membershipType:hover {
    background: linear-gradient(90deg, rgba(93, 179, 233, 0.15), rgba(87, 133, 233, 0.15));
    border-color: rgba(93, 179, 233, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 179, 233, 0.3);
   }
   
   @media (max-width: 768px) {
   
    
    .header-content {
        padding: 0 12px;
        }
    
        
   .header-stat-box {
    padding: 0.1rem 0.25rem;
    min-width: 50px;
   }
   
   
   
   .header-stat-box .stat-value {
   font-size: 0.6875rem; 
   }
   
   .header-stat-box .stat-label {
    font-size: 0.5rem; 
   }
   
   
   .profile-info {
    gap: 1rem;
   }
   }
   
    
   @media (max-width: 480px) {
   
   
    .profile-info {
        gap: 0.75rem;
    }
   
    .header-stat-box {
        padding: 0.75rem 0.2rem;
        min-width: 45px;
    }
   
    .header-stat-box .stat-label {
        font-size: 0.65rem;
    }
   
    .app-header {
    padding: 0.60rem;
    
    }
   
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
      }
   
   
    .logo-container {
    width: 40px;
    height: 40px;
    }
   
    .logo-text {
    font-size: 16px;
    }
   
    .profile-avatar {
    width: 38px;
    height: 38px;
    
    }
   
    .logo-container {
        width: 40px; 
        height: 40px; 
        border-radius: 10px; 
        }
        
        .logo-text {
        font-size: 16px; 
        }
        
        .header-content {
        padding-left: 12px; 
        }
   
   
        
   
   }
   
   @media (min-width: 640px) {
   
   
    .header-stat-box {
     padding: 0.1rem 0.25rem;
     min-width: 50px;
    }
    
    
    .header-stat-box .stat-value {
    font-size: 0.6875rem; 
    }
    
    .header-stat-box .stat-label {
     font-size: 0.5rem; 
    }
    
    
    
    }
    