.earn-coin-section {
    margin-bottom: 28px;
  }
 
  .main-balance-card {
    position: relative;
    background: linear-gradient(160deg, #dff1fb 0%, #bfe4fb 100%);
    border-radius: 22px;
    padding: 28px 24px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
 
  .diamond-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 14px 30px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
  }
 
  .diamond-badge img {
    display: block;
  }
 
  .balance-count {
    font-size: 30px;
    font-weight: 800;
    color: #17233b;
  }
 
  .action-btn-earn {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, #ffd23f 0%, #ffbe0b 100%);
    color: #2a2205;
    font-size: 19px;
    font-weight: 800;
    padding: 20px 10px;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(255, 190, 11, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
 
  .action-btn-earn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(255, 190, 11, 0.55);
  }
 
  .action-btn-earn:active {
    transform: translateY(0);
  }
 
  #change-text {
    font-size: 18px;
  }
 
  .sponsored-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.55);
    color: #6f93b4;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 10px;
  }
 
  /* ===== Diamond package grid ===== */
  .items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
 
  .diamond-item-card {
    position: relative;
    display: block;
    background: #ffffff;
    border-radius: 18px;
    border-top: 5px solid #29b6f6;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(20, 40, 70, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
 
  .diamond-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(20, 40, 70, 0.12);
  }
 
  .card-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(41, 182, 246, 0.25) 0%, rgba(41, 182, 246, 0) 70%);
    pointer-events: none;
  }
 
  .card-content {
    position: relative;
    padding: 28px 16px 22px;
    text-align: center;
  }
 
  .icon.icon-symball {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
 
  .icon.icon-symball img {
    display: block;
  }
 
  .icon.icon-symball h2 {
    font-size: 30px;
    font-weight: 800;
    color: #14203a;
  }
 
  .entry-badge {
    display: inline-block;
    background: #eef1f6;
    color: #5b6b82;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 999px;
  }
 
  @media (max-width: 480px) {
    .icon.icon-symball h2 {
      font-size: 24px;
    }
  }




Professional Info Section
.info-wrapper-box {
    text-align: center;
    padding: 8px 10px;
    margin-bottom: 24px;
}

.info-wrapper-box h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.info-wrapper-box p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Live Users Activity Tickers */
.live-activity-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 20px;
}

.activity-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for clean UI */
    justify-content: center;
}

.activity-scroll::-webkit-scrollbar {
    display: none;
}

.activity-pill {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

.avatar-box img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0f2fe;
}

.pill-details {
    display: flex;
    flex-direction: column;
}

.points {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 3px;
}

.coin-color {
    color: #eab308;
    font-size: 0.7rem;
}

.time {
    font-size: 0.65rem;
    color: #94a3b8;
}

@media screen and (max-width: 480px) {
    

.activity-scroll {
    flex-direction: column;
}
}