body {
      font-family: system-ui, -apple-system, Segoe UI, Roboto;
      margin: 0;
      background: #fafafa;
      color: #111;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 20px;
    }

    .avatar {
      width: 90px;
      border-radius: 50%;
      display: block;
      margin: auto;
    }

    h1 {
      text-align: center;
      margin: 10px 0 5px;
    }

    .tagline {
      text-align: center;
      color: #666;
      margin-bottom: 25px;
    }

    .flow-hint{
      text-align:center;
      font-size:14px;
      color:#555;
      margin-bottom:6px;
      font-weight:500;
    }

    .search{
      width:100%;
      padding:14px 16px;
      border-radius:14px;
      border:1px solid #e5e5e5;
      font-size:15px;
    
      background:#fff;
    
      box-sizing:border-box;
    
      outline:none;
    
      margin-bottom:16px; /* 🔥 samakan dengan gap grid */
    }
    
    .search-hint{
      text-align:center;
      font-size:13px;
      color:#888;
      margin-bottom:12px;
    }
    
    .quick-etalase{
      display:flex;
      gap:10px;
      justify-content:center;
      margin-bottom:15px;
    }
    
    .quick-etalase span{
      background:#eee;
      padding:6px 10px;
      border-radius:8px;
      font-size:13px;
      cursor:pointer;
    }
    
    .search:focus{
      border-color:#ccc;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 16px;
      margin-top: 10px;
    }

    .card {
      position: relative;
      display: block;
      border-radius: 12px;
      overflow: hidden;
      background: #eee;
    }

    .card img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      display: block;
      transition: transform .25s;
    }

    .card:hover img {
      transform: scale(1.05);
    }

    .badge {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: rgba(0,0,0,0.75);
      color: white;
      padding: 6px 10px;
      font-size: 13px;
      border-radius: 8px;
      font-weight: 600;
    }

    .tiktok-showcase{
        
        display:flex;
        align-items:center;
        
        gap:14px;
        
        padding:18px;
        
        background:#f0f0f0;
        
        border-radius:14px;
        
        margin-top:30px;
        margin-bottom:20px;
        
        text-decoration:none;
        
        color:#111;
    
    }
    
    .tiktok-showcase:hover{
    
        background:#e9e9e9;
    
    }
    
    .tiktok-icon{
    
        width:34px;
        height:34px;
        
    }
    
    .tiktok-text{
        
        display:flex;
        flex-direction:column;
    
    }
    
    .tiktok-text strong{
        
        font-size:17px;
    
    }
    
    .tiktok-text span{
        
        font-size:14px;
        color:#666;
    
    }

    /* SOCIAL */

    .social-section {
      margin-top: 50px;
    }

    .social-title {
      text-align: center;
      color: #777;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .social-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      margin-bottom: 10px;
      border-radius: 10px;
      background: #f5f5f5;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

    .social-item span {
      color: #888;
    }

    footer {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: #777;
    }

    @media (max-width:1024px) {
      .grid {
        grid-template-columns: repeat(3,1fr);
      }
    }

    @media (max-width:768px) {
      .grid {
        grid-template-columns: repeat(2,1fr);
      }
    }