<style>
    body {
      background: #0b0b0f;
      color: #fff;
    }

    /* HERO */
    .hero-astro {
      background: radial-gradient(circle at top left, #1a1a2e, #0b0b0f);
    }

    .hero-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.5;
      margin-top: 10px;
    }

    .hero-desc {
      color: #aaa;
      margin-top: 10px;
    }

    /* BOT GRID */
    .bot-grid {
      display: grid;
      grid-template-columns: repeat(4, 70px);
      gap: 12px;
      justify-content: center;
    }

    .bot-icon {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      object-fit: cover;
      background: #111;
      transition: 0.2s;
    }

    .bot-icon:hover {
      transform: scale(1.1);
    }

    /* SEARCH */
    .search-box {
      display: flex;
      background: #1a1a22;
      border-radius: 12px;
      overflow: hidden;
    }

    .search-box input {
      flex: 1;
      padding: 14px;
      border: none;
      background: transparent;
      color: #fff;
    }

    .search-box button {
      background: #2a2a35;
      border: none;
      padding: 0 20px;
      color: #fff;
    }

    /* TAG */
    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: #1a1a22;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 13px;
      color: #aaa;
      text-decoration: none;
    }

    .tag:hover {
      background: #2a2a35;
      color: #fff;
    }

    /* MARQUEE WRAPPER */
    .bot-marquee {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* ROW */
    .marquee-row {
      display: flex;
      gap: 12px;
      width: max-content;
    }

    /* ICON */
    .bot-icon {
      width: 64px;
      height: 64px;
      border-radius: 12px;
      object-fit: cover;
      background: #111;
    }

    /* ANIMATION */
    .marquee-row.right {
      animation: scrollRight 25s linear infinite;
    }

    .marquee-row.left {
      animation: scrollLeft 25s linear infinite;
    }

    /* PAUSE SAAT HOVER */
    .bot-marquee:hover .marquee-row {
      animation-play-state: paused;
    }
    /* KEYFRAMES */
    @keyframes scrollRight {
      from {
        transform: translateX(-50%);
      }
      to {
        transform: translateX(0%);
      }
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(0%);
      }
      to {
        transform: translateX(-50%);
      }
    }

    /* SWITCH BUTTON */
    .switch-tabs {
      background: #1a1a22;
      border-radius: 10px;
      padding: 3px;
      display: flex;
      gap: 4px;
    }

    .tab-btn {
      background: transparent;
      border: none;
      color: #aaa;
      padding: 6px 12px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.2s;
    }

    .tab-btn.active {
      background: #2a2a35;
      color: #fff;
    }

    /* CONTENT */
    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

    /* PROMOTED NAME GLOW */
    .promoted-name {
      color: #ffd700;
      font-weight: 600;
      text-decoration: none;
      transition: 0.2s;
      text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.6),
        0 0 10px rgba(255, 215, 0, 0.4),
        0 0 15px rgba(255, 215, 0, 0.2);
      animation: glowPulse 2s infinite alternate;
    }
    @keyframes glowPulse {
      from {
        text-shadow: 0 0 5px rgba(255,215,0,0.5);
      }
      to {
        text-shadow: 0 0 20px rgba(255,215,0,1);
      }
    }
    .promoted-name:hover {
      color: #fff3a0;
      text-shadow: 
        0 0 8px rgba(255, 215, 0, 0.9),
        0 0 16px rgba(255, 215, 0, 0.7),
        0 0 24px rgba(255, 215, 0, 0.5);
    }
    
    /* CARD */
    .bot-card {
      display: block;
      text-decoration: none;
      color: inherit;
      margin-bottom: 15px;
    }

    .bot-card-inner {
      display: flex;
      gap: 15px;
      background: #111118;
      border-radius: 14px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,0.05);
      transition: 0.2s;
      backdrop-filter: blur(10px);
    }

    .bot-card-inner:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.1);
    }

    /* AVATAR */
    .bot-avatar {
      width: 60px;
      height: 60px;
      border-radius: 14px;
    }

    /* CONTENT */
    .bot-content {
      flex: 1;
    }

    /* HEADER */
    .bot-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .bot-name {
      font-weight: 700;
      font-size: 16px;
    }

    /* DESC */
    .bot-desc {
      font-size: 13px;
      color: #aaa;
      margin: 5px 0;
    }

    /* TAGS */
    .bot-tags {
      margin-top: 6px;
    }

    .bot-tags .tag {
      background: #1a1a22;
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 6px;
      margin-right: 5px;
      color: #aaa;
    }

    /* FOOTER */
    .bot-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    /* STATS */
    .bot-stats {
      font-size: 14px;
      color: #888;
    }

    .bot-stats i {
    font-size: 13px;
    margin-right: 5px;
    }

    .bot-stats .dot {
    margin: 0 6px;
    }

    /* ACTION */
    .bot-actions {
      display: flex;
      gap: 6px;
    }
    /* 🔴 1000+ votes */
    .rank-red {
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.7), 0 0 15px rgba(255, 0, 0, 0.5);
    }

    /* 🟠 500+ votes */
    .rank-orange {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.7), 0 0 15px rgba(255, 165, 0, 0.5);
    }

    /* 🟡 100+ votes */
    .rank-gold {
    background: linear-gradient(45deg, #ffd700, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.7), 0 0 12px rgba(255, 235, 59, 0.5);
    }
</style>