/* BLOBS — collections page */
.blob { opacity: 0.15; }
.blob-1 { width: 520px; height: 520px; background: var(--purple); top: -220px; right: -160px; }
.blob-2 { width: 460px; height: 460px; background: var(--orange); bottom: -200px; left: -150px; animation-delay: -8s; }
.blob-3 { width: 360px; height: 360px; background: var(--teal); top: 55%; left: -160px; animation-delay: -14s; opacity: 0.1; }

/* SECTION */
.section { padding: 80px 32px; }
.section-first { padding-top: 160px; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* CARD PACKS */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pack-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 24px; display: flex; gap: 22px; align-items: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease; position: relative; overflow: hidden;
}
.pack-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--pc, var(--orange)); opacity: 0.9; }
.pack-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--pc, var(--orange)) 45%, transparent); box-shadow: 0 22px 44px rgba(0,0,0,0.35); }
.pack-thumb { flex: 0 0 88px; width: 88px; height: 88px; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.45)); }
.pack-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s ease; }
.pack-card:hover .pack-thumb img { transform: scale(1.1) rotate(-4deg); }
.pack-info { flex: 1; min-width: 0; }
.pack-name { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pack-pill { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 9px; border-radius: 50px; background: color-mix(in srgb, var(--pc, var(--orange)) 22%, transparent); color: color-mix(in srgb, var(--pc, var(--orange)) 75%, white); }
.pack-desc { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* DROP RATES TABLE */
.rates-wrap { border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.03); }
.rates-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rates-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.rates-table th, .rates-table td { padding: 16px 14px; text-align: center; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); white-space: nowrap; }
.rates-table thead th { background: rgba(241,164,60,0.1); color: var(--orange-light); font-weight: 800; font-size: 13px; letter-spacing: 0.3px; }
.rates-table tbody tr:last-child td { border-bottom: none; }
.rates-table tbody tr:hover td { background: rgba(255,255,255,0.03); }
.rates-table th:first-child, .rates-table td:first-child { text-align: left; font-weight: 800; position: sticky; left: 0; background: var(--navy-mid); }
.rates-table thead th:first-child { background: #2a2440; z-index: 1; }
.star-cell { color: var(--orange); }
.scroll-hint { display: none; font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 14px; }
.disclaimer { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; text-align: center; margin-top: 20px; line-height: 1.6; }

/* MECHANICS GRID (ready for future use) */
.mech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.mech-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 22px 18px; transition: all 0.3s ease; cursor: default; position: relative; overflow: hidden; }
.mech-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); border-color: var(--hl, rgba(241,164,60,0.3)); box-shadow: 0 16px 34px rgba(0,0,0,0.3); }
.mech-emoji { font-size: 30px; display: block; margin-bottom: 12px; transition: transform 0.3s ease; }
.mech-card:hover .mech-emoji { transform: scale(1.2) rotate(-8deg); }
.mech-name { font-size: 15px; font-weight: 800; margin-bottom: 5px; letter-spacing: -0.2px; }
.mech-tag { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* PILLARS (kept for future use) */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar { border-radius: var(--radius); padding: 40px 32px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); transition: transform 0.35s ease; }
.pillar:hover { transform: translateY(-8px); }
.pillar-1 { background: linear-gradient(160deg, rgba(139,92,246,0.18), rgba(20,20,43,0.4)); }
.pillar-2 { background: linear-gradient(160deg, rgba(59,206,172,0.16), rgba(20,20,43,0.4)); }
.pillar-3 { background: linear-gradient(160deg, rgba(241,164,60,0.18), rgba(20,20,43,0.4)); }
.pillar-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.pillar h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.pillar p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.pillar ul { list-style: none; }
.pillar li { font-size: 14px; color: rgba(255,255,255,0.75); padding: 7px 0 7px 26px; position: relative; }
.pillar li::before { content: '✦'; position: absolute; left: 0; color: var(--orange); font-size: 13px; }

/* CTA */
.cta-section { text-align: center; padding: 100px 32px 120px; }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; letter-spacing: -1.6px; line-height: 1.1; margin-bottom: 16px; }
.cta-title .accent { background: linear-gradient(120deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links .nav-link { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .section-first { padding-top: 130px; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .scroll-hint { display: block; }
}
@media (max-width: 560px) {
  .packs-grid { grid-template-columns: 1fr; }
  .pack-card { padding: 20px; gap: 16px; }
  .pack-thumb { flex-basis: 70px; width: 70px; height: 70px; }
}
@media (max-width: 480px) {
  .mech-grid { grid-template-columns: repeat(2, 1fr); }
}
