 .gift-container {
      background: #fff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 10px 20px rgba(20, 20, 20, 0.06);
      max-width: 900px;
      margin: 0 auto 38px;
    }

    /* Tabs */
    .internal-tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      justify-content: center;
      background: #fcfcfd;
      padding: 14px;
    }

    .internal-tabs button {
      padding: 18px 80px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 700;
      background: #eee;
      transition: 0.2s;
    }

    .internal-tabs button.active {
      background: linear-gradient(135deg, #ff0050, #ff66a6);
      color: white;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    /* Gift Grid */
    .gift-scroll {
      max-height: 440px;
      padding-right: 6px;
    }

    .gift-scroll::-webkit-scrollbar {
      width: 8px;
    }

    .gift-scroll::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.08);
      border-radius: 6px;
    }

    .gift-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 14px;
      margin-top: 12px;
    }

    .gift-card {
      background: linear-gradient(180deg, #fff, #fbfbfd);
      border-radius: 12px;
      padding: 12px;
      text-align: center;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: transform 0.25s, box-shadow 0.25s;
      overflow: visible;
      cursor: pointer;
      height: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .gift-card:hover {
      transform: scale(1.06);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      z-index: 3;
    }

    .gift-card img {
      width: 64px;
      height: 64px;
      margin-bottom: 8px;
      border-radius: 12px;
      object-fit: cover;
      transition: transform 0.25s ease;
    }

    .gift-card:hover img {
      transform: scale(1.08);
    }

    .gift-card .title {
      font-weight: 600;
      font-size: 0.9rem;
      color: #111;
      display: block;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 110px;
    }

    .coin {
      display: flex;
      justify-content: center;
      gap: 6px;
      font-size: 0.82rem;
      color: #666;
      margin-top: auto;
      margin-bottom: 8px;
    }

    .coin img {
      width: 14px;
      height: 14px;
    }

    .gift-card .send-bar {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 44px;
      background: linear-gradient(90deg, #ff4d63, #ff6f5e);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
      transform: translateY(100%);
      transition: transform 0.18s, opacity 0.18s;
      opacity: 0;
      pointer-events: none;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
    }

    .gift-card:hover .title {
      opacity: 0;
      transform: translateY(-6px);
    }

    .gift-card:hover .send-bar {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    #pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    #pagination button {
      padding: 6px 12px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      background: #f3f3f3;
      color: #111;
      font-weight: 600;
    }

    #pagination button.active {
      background: #1dd1a1;
      color: white;
    }

    /* Gift manager */
    .gift-manager {
      background: #fff;
      border-radius: 12px;
      padding: 14px;
      margin-bottom: 12px;
      box-shadow: 0 6px 20px rgba(20, 20, 20, 0.05);
    }

    .gift-manager .row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .manager-left {
      flex: 1 1 360px;
      min-width: 240px;
    }

    .manager-right {
      flex: 1 1 300px;
      min-width: 260px;
    }

    .manager-video video {
      border-radius: 10px;
      max-height: 260px;
      object-fit: cover;
    }

    .manager-coin {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      color: #555;
      margin-top: 8px;
    }

    .manager-coin img {
      width: 18px;
      height: 18px;
    }

    .manager-actions {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }

    .manager-actions button {
      flex: 1;
      padding: 10px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      font-weight: 700;
    }

    .add-btn {
      background: #1dd1a1;
      color: white;
    }

    .test-btn {
      background: #007aff;
      color: white;
    }

    .remove-btn {
      background: #ff3b30;
      color: white;
    }

    @media (max-width:700px) {
      .gift-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .gift-card {
        padding: 10px;
        height: 130px;
      }
    }

    @media (max-width:420px) {
      .gift-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }