﻿* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #050709;
  color: #f5f5f5;
}

body {
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

.catalog-page {
  background: #050709;
}

.catalog-shell {
  width: min(1600px, calc(100% - 34px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.catalog-title {
  margin: 0;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #f3f4f6;
}

.catalog-subtitle {
  margin: 16px 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.9rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.04em;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 10px;
  margin-bottom: 18px;
}

.category {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 56px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  cursor: pointer;
  transition: 0.2s ease;
}

.category:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.category.active {
  background: linear-gradient(180deg, #ff3d3d 0%, #eb2b2b 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(255, 68, 68, 0.22);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 70px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.search-icon {
  font-size: 1.7rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.search-bar input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  outline: none;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.staff-rank-box {
  position: relative;
  margin-top: 22px;
  background: rgba(19, 21, 25, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  padding: 12px;
}

.staff-rank-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 10px;
}

.staff-rank-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 82, 82, 0), rgba(255, 82, 82, 0.9) 12%, rgba(255, 82, 82, 0.9) 88%, rgba(255, 82, 82, 0));
  pointer-events: none;
}

.staff-rank-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  padding: 0;
}

.staff-rank-visual {
  height: 120px;
  background: linear-gradient(90deg, rgba(135, 127, 110, 0.95), rgba(52, 59, 65, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-head { background: linear-gradient(90deg, rgba(153, 141, 107, 0.78), rgba(27, 35, 43, 0.88)); }
.visual-senior { background: linear-gradient(90deg, rgba(120, 129, 121, 0.8), rgba(26, 34, 42, 0.9)); }
.visual-admin { background: linear-gradient(90deg, rgba(124, 134, 150, 0.8), rgba(20, 28, 37, 0.95)); }
.visual-mod { background: linear-gradient(90deg, rgba(146, 128, 108, 0.8), rgba(27, 32, 38, 0.92)); }
.visual-support { background: linear-gradient(90deg, rgba(110, 126, 118, 0.8), rgba(18, 25, 32, 0.9)); }
.visual-trainee { background: linear-gradient(90deg, rgba(142, 124, 91, 0.8), rgba(24, 31, 36, 0.94)); }

.staff-rank-content {
  padding: 14px 16px 16px;
  background: rgba(12, 16, 20, 0.96);
}

.staff-rank-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.staff-rank-item h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.staff-rank-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.5;
}

.staff-rank-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.staff-price span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.staff-price strong {
  display: block;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.staff-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.staff-rank-item .ghost-btn {
  min-width: 86px;
  height: 52px;
  border-radius: 999px;
  font-size: 1.06rem;
  background: rgba(255, 255, 255, 0.06);
}

.staff-rank-item .staff-buy {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff514f, #ef2d2d);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 12px 18px rgba(255, 72, 72, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.product-card {
  background: rgba(19, 21, 25, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.product-art {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.art-mystery {
  background: radial-gradient(circle at center, rgba(255, 70, 70, 0.38), transparent 30%), linear-gradient(180deg, rgba(47, 10, 10, 0.9), rgba(11, 3, 3, 0.96));
}

.art-mystery-blue {
  background: radial-gradient(circle at center, rgba(64, 166, 255, 0.32), transparent 30%), linear-gradient(180deg, rgba(10, 21, 34, 0.9), rgba(7, 12, 17, 0.96));
}

.art-rank {
  background: linear-gradient(135deg, rgba(243, 184, 52, 0.25), rgba(40, 70, 90, 0.2)), linear-gradient(120deg, #1b2230, #0c1014);
}

.art-vip {
  background: linear-gradient(135deg, rgba(62, 188, 255, 0.28), rgba(20, 50, 80, 0.2)), linear-gradient(120deg, #142332, #0d1420);
}

.art-car {
  background: linear-gradient(135deg, rgba(93, 120, 255, 0.18), rgba(31, 42, 75, 0.22)), linear-gradient(120deg, #181e2b, #0b1017);
}

.art-weapon {
  background: linear-gradient(135deg, rgba(255, 120, 45, 0.2), rgba(80, 26, 13, 0.25)), linear-gradient(120deg, #201b1d, #0b0e12);
}

.art-business {
  background: linear-gradient(135deg, rgba(71, 132, 255, 0.22), rgba(8, 67, 92, 0.2)), linear-gradient(120deg, #1b2430, #0b1218);
}

.art-house {
  background: linear-gradient(135deg, rgba(186, 139, 255, 0.22), rgba(50, 40, 80, 0.2)), linear-gradient(120deg, #1f2330, #0e1118);
}

.art-unban {
  background: linear-gradient(135deg, rgba(255, 110, 110, 0.2), rgba(74, 10, 15, 0.2)), linear-gradient(120deg, #1e1d1d, #0d0f12);
}

.product-content {
  padding: 14px 16px 16px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.25rem, 1.8vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  min-height: 34px;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.price-group span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.price-group strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-btn {
  min-width: 60px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cart-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff4d4d, #ef2e2e);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 12px 18px rgba(255, 72, 72, 0.2);
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.65);
}

.checkout-modal.open {
  display: grid;
}

.checkout-panel {
  position: relative;
  width: min(100%, 440px);
  padding: 24px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 18, 23, 0.96);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.4);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.checkout-panel h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-summary strong {
  color: #fff;
}

#checkoutForm {
  display: grid;
  gap: 14px;
}

#checkoutForm label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 600;
}

#checkoutForm input,
#checkoutForm select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 12px 14px;
}

#checkoutForm input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  margin-top: 4px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #46d0ff, #1aaae7);
  color: #06151f;
  font-weight: 800;
  padding: 12px 18px;
  cursor: pointer;
}

.order-summary {
  min-height: 28px;
  margin: 12px 0 0;
  color: #9fe7ff;
}

.hidden {
  display: none !important;
}

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

@media (max-width: 640px) {
  .staff-rank-list {
    grid-template-columns: 1fr;
  }

  .catalog-shell {
    width: min(100% - 16px, 1600px);
  }

  .category-row {
    gap: 12px 8px;
  }

  .category {
    padding: 10px 16px;
    min-height: 44px;
    font-size: 0.92rem;
  }

  .staff-rank-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .staff-buy {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .search-bar {
    min-height: 58px;
  }
}

/* Overdrive RP storefront layer */
:root { --ink: #070a12; --panel: #111522; --panel-2: #171c2b; --white: #f5f7ff; --muted: #9299ad; --cyan: #55d6ff; --violet: #a879ff; --orange: #ff9d4d; --line: rgba(255,255,255,.1); }
html { scroll-behavior: smooth; }
body { background: var(--ink); color: var(--white); font-family: "DM Sans", sans-serif; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 80% 10%, rgba(91, 70, 188, .2), transparent 30%), radial-gradient(circle at 10% 45%, rgba(19, 128, 164, .12), transparent 28%), #070a12; }
.site-noise { position: fixed; inset: 0; z-index: -1; opacity: .15; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.35) .5px, transparent .5px); background-size: 5px 5px; }
.section-wrap, .site-header { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; }
.brand strong, .brand small { display: block; line-height: .9; } .brand strong { font: 800 1.25rem "Barlow Condensed", sans-serif; letter-spacing: .08em; } .brand small { margin-top: 4px; color: var(--cyan); font-size: .52rem; letter-spacing: .22em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--cyan); color: var(--cyan); font: 800 1.2rem "Barlow Condensed", sans-serif; transform: skew(-8deg); box-shadow: 0 0 20px rgba(85,214,255,.24); }
.brand-logo img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; } .brand-logo { display: grid; place-items: center; }
.main-nav { display: flex; gap: 22px; } .nav-link, .icon-button { color: var(--muted); text-decoration: none; border: 0; background: none; font-size: .76rem; letter-spacing: .04em; cursor: pointer; } .nav-link:hover, .nav-link.active, .icon-button:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 14px; } .icon-button { display: flex; gap: 7px; align-items: center; }
.cart-trigger { border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.04); color: var(--white); padding: 10px 13px; cursor: pointer; } .cart-trigger b { margin-left: 8px; color: var(--cyan); }
.mobile-menu { display: none; border: 0; background: none; color: var(--white); font-size: 1.5rem; }
.hero { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; align-items: center; gap: 64px; } .hero h1, h2 { margin: 12px 0 20px; font: 800 clamp(3.6rem, 7vw, 7rem)/.84 "Barlow Condensed", sans-serif; letter-spacing: .01em; } h2 { font-size: clamp(3rem, 5vw, 5.6rem); } h1 em, h2 em { color: var(--cyan); font-style: normal; }
.eyebrow { margin: 0; color: var(--cyan); font-size: .68rem; font-weight: 700; letter-spacing: .16em; } .eyebrow span, .live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px var(--orange); }
.hero-lede, .section-heading > p { max-width: 440px; color: var(--muted); line-height: 1.65; } .hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 28px; } .button { display: inline-flex; justify-content: center; align-items: center; gap: 14px; padding: 13px 18px; border: 1px solid transparent; border-radius: 3px; color: var(--white); text-decoration: none; font-weight: 700; font-size: .78rem; cursor: pointer; } .button-primary { background: var(--cyan); color: #061018; box-shadow: 0 10px 30px rgba(85,214,255,.2); } .button-secondary { border-color: var(--line); background: rgba(255,255,255,.05); } .text-link { color: var(--white); font-size: .78rem; text-decoration: none; } .text-link span { color: var(--cyan); margin-left: 8px; }
.hero-stats { display: flex; gap: 30px; margin-top: 70px; } .hero-stats strong { display: block; font: 700 1.8rem "Barlow Condensed", sans-serif; } .hero-stats span { display: block; margin-top: 4px; color: var(--muted); font-size: .55rem; letter-spacing: .12em; }
.hero-visual { position: relative; min-height: 510px; overflow: hidden; background: linear-gradient(145deg, rgba(43,39,88,.85), rgba(16,33,57,.55)), radial-gradient(ellipse at 60% 55%, #d65c74, transparent 20%), #111a2c; clip-path: polygon(8% 0,100% 0,92% 100%,0 93%); box-shadow: 0 0 90px rgba(91, 105, 255, .18); } .hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,.18), transparent 45%); animation: scan 7s linear infinite; } @keyframes scan { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.sunset-grid { position: absolute; inset: 45% -10% -20%; opacity: .35; background: repeating-linear-gradient(90deg, transparent 0 44px, rgba(85,214,255,.2) 45px 46px), repeating-linear-gradient(0deg, transparent 0 27px, rgba(85,214,255,.2) 28px 29px); transform: perspective(320px) rotateX(52deg); } .hero-glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; top: 25%; left: 30%; background: rgba(250,105,137,.2); filter: blur(18px); } .car-silhouette { position: absolute; inset: 29% 10% 24%; display: grid; place-items: center; color: rgba(6,10,20,.75); font: 900 11rem "Barlow Condensed", sans-serif; letter-spacing: -.1em; transform: skewX(-15deg); text-shadow: 28px 25px 0 rgba(0,0,0,.3); } .visual-label, .visual-caption { position: absolute; z-index: 2; font-size: .65rem; letter-spacing: .16em; } .visual-label { top: 24px; left: 28px; } .visual-label strong { margin-left: 28px; color: var(--cyan); } .visual-caption { bottom: 28px; right: 30px; color: rgba(255,255,255,.66); line-height: .95; } .visual-caption strong { color: var(--white); font-size: 2.5rem; }
.trust-strip { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .56rem; letter-spacing: .14em; } .trust-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--violet); }
.shop-section, .mystery-section, .info-section, .contact-section { padding-top: 110px; } .section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; } .shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin: 30px 0 24px; } .category-row { display: flex; flex-wrap: wrap; gap: 8px; } .category { min-height: auto; padding: 9px 13px; border: 1px solid var(--line); border-radius: 3px; background: transparent; color: var(--muted); font-size: .7rem; cursor: pointer; } .category.active { border-color: var(--cyan); color: var(--cyan); background: rgba(85,214,255,.1); box-shadow: none; } .search-box { display: flex; align-items: center; min-width: 235px; border-bottom: 1px solid var(--line); color: var(--muted); } .search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--white); padding: 10px; font-size: .8rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 0; } .product-card, .box-card { border: 1px solid var(--line); border-radius: 4px; background: linear-gradient(150deg, rgba(24,29,45,.9), rgba(13,16,27,.9)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; } .product-card:hover, .box-card:hover { transform: translateY(-5px); border-color: rgba(85,214,255,.55); box-shadow: 0 20px 45px rgba(0,0,0,.25); } .product-art { position: relative; height: 190px; overflow: hidden; } .product-art::before, .box-art::before { content: ""; position: absolute; inset: 22% 12%; border: 1px solid rgba(255,255,255,.18); transform: skewX(-16deg) rotate(-6deg); } .product-art::after, .box-art::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -35px; top: -55px; background: rgba(85,214,255,.16); filter: blur(5px); } .art-car { background: linear-gradient(135deg, #172f4e, #0d1726); } .art-house { background: linear-gradient(135deg, #392456, #111523); } .art-business { background: linear-gradient(135deg, #133f4c, #0d1726); } .art-weapon { background: linear-gradient(135deg, #4d2b25, #12131c); } .art-id { background: linear-gradient(135deg, #174a49, #111823); } .art-vip { background: linear-gradient(135deg, #392e65, #111525); } .art-staff { background: linear-gradient(135deg, #4b3c22, #151925); } .product-art span, .box-stamp { position: absolute; left: 16px; bottom: 14px; z-index: 1; color: rgba(255,255,255,.7); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; } .product-content, .box-content { padding: 16px; } .product-category { color: var(--cyan); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; } .product-card h3, .box-card h3 { margin: 8px 0; font: 700 1.55rem/1 "Barlow Condensed", sans-serif; letter-spacing: .01em; } .product-card p:not(.product-category) { min-height: 37px; color: var(--muted); font-size: .76rem; line-height: 1.45; } .product-footer, .box-content > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 18px; } .product-footer > strong, .box-content > div > strong { font: 700 1.35rem "Barlow Condensed", sans-serif; } .add-button { padding: 9px 10px; border: 1px solid var(--line); background: transparent; color: var(--white); font-size: .68rem; cursor: pointer; } .add-button span { color: var(--cyan); font-size: 1.1rem; margin-left: 8px; } .empty-state { color: var(--muted); }
.rarity-legend { display: flex; gap: 18px; margin-bottom: 22px; color: var(--muted); font-size: .62rem; } .rarity-legend i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; } .common { background: #63e28b; }.rare { background: #54b9ff; }.epic { background: #bd78ff; }.legendary { background: #ff9d4d; }.mythic { background: #ff5d73; }
.box-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; } .box-art { position: relative; min-height: 170px; overflow: hidden; display: grid; place-items: center; } .box-art > strong { position: relative; z-index: 1; font: 800 7rem "Barlow Condensed", sans-serif; color: rgba(255,255,255,.1); } .box-content h3 { min-height: 42px; } .box-content > div { margin-top: 15px; } .box-content .button { padding: 9px 10px; font-size: .65rem; }
.info-section, .contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; } .faq-list details { border-top: 1px solid var(--line); padding: 18px 0; } summary { cursor: pointer; list-style: none; font: 700 1.2rem "Barlow Condensed", sans-serif; } summary::-webkit-details-marker { display: none; } summary::after { content: "+"; float: right; color: var(--cyan); } details[open] summary::after { content: "−"; } details p { max-width: 600px; color: var(--muted); font-size: .8rem; line-height: 1.6; } .contact-section { padding-bottom: 120px; } .contact-card { display: flex; gap: 20px; padding: 28px; border: 1px solid var(--line); background: var(--panel); } .discord-icon { font-size: 2.5rem; color: var(--violet); } .contact-card h3 { margin: 0; font: 700 1.8rem "Barlow Condensed", sans-serif; } .contact-card p { color: var(--muted); font-size: .8rem; line-height: 1.5; }
.site-footer { display: grid; grid-template-columns: 1.2fr 1fr 2fr auto; gap: 24px; align-items: center; padding: 32px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; } .site-footer p { margin: 0; } .footer-links { display: flex; justify-content: flex-end; gap: 16px; } .footer-links a { color: var(--muted); text-decoration: none; } .site-footer > small { text-align: right; }
.cart-drawer { position: fixed; z-index: 20; inset: 0 0 0 auto; width: min(420px, 100%); padding: 28px; background: #0d111d; transform: translateX(100%); transition: transform .3s ease; } .cart-drawer.open { transform: translateX(0); } .drawer-backdrop { position: fixed; z-index: 19; inset: 0; background: rgba(0,0,0,.65); opacity: 0; pointer-events: none; transition: opacity .3s; } .drawer-backdrop.open { opacity: 1; pointer-events: auto; } .drawer-header { display: flex; justify-content: space-between; } .drawer-header h2 { font-size: 3rem; margin-top: 8px; } .close-button { border: 0; background: transparent; color: var(--white); font-size: 1.8rem; cursor: pointer; } .cart-items { display: grid; gap: 12px; margin-top: 34px; } .cart-item { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); } .cart-item strong, .cart-item span { display: block; } .cart-item strong { font: 700 1.2rem "Barlow Condensed", sans-serif; } .cart-item span, .empty-cart { margin-top: 4px; color: var(--muted); font-size: .72rem; } .cart-item button { border: 0; background: none; color: var(--orange); cursor: pointer; } .cart-footer { position: absolute; right: 28px; bottom: 28px; left: 28px; } .cart-footer > div { display: flex; justify-content: space-between; margin-bottom: 14px; } .cart-footer small { display: block; margin-top: 12px; color: var(--muted); font-size: .62rem; line-height: 1.4; } .full-width { width: 100%; }
.modal { position: fixed; z-index: 30; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.75); } .modal.open { display: grid; } .modal-card, .opening-card { position: relative; width: min(100%, 480px); max-height: 90vh; overflow: auto; padding: 32px; background: #101522; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.45); } .modal-card h2, .opening-card h2 { margin-top: 9px; font-size: 3rem; } .modal-intro { color: var(--muted); font-size: .78rem; line-height: 1.5; } #checkoutForm { display: grid; gap: 14px; } #checkoutForm label { display: grid; gap: 6px; color: var(--muted); font-size: .7rem; } #checkoutForm input { padding: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--white); outline: 0; } .order-review { margin: 8px 0; padding: 12px; border-block: 1px solid var(--line); font-size: .72rem; } .order-review div { display: flex; justify-content: space-between; padding: 4px 0; } .form-message { color: var(--cyan); font-size: .75rem; line-height: 1.5; } .opening-card { width: min(100%, 620px); text-align: center; } .opening-stage { position: relative; height: 260px; margin: 20px 0; overflow: hidden; display: flex; align-items: center; background: repeating-linear-gradient(90deg, transparent 0 39px, rgba(85,214,255,.08) 40px), #0a0e18; border: 1px solid var(--line); } .box-icon { position: absolute; z-index: 2; left: 50%; display: grid; place-items: center; width: 100px; height: 100px; transform: translateX(-50%); border: 1px solid var(--cyan); color: var(--cyan); font: 800 4rem "Barlow Condensed", sans-serif; background: #10192a; box-shadow: 0 0 45px rgba(85,214,255,.32); } .roll-track { display: flex; gap: 20px; transform: translateX(0); transition: transform 2.5s cubic-bezier(.1,.8,.2,1); } .opening-stage.finished .roll-track { transform: translateX(-940px); } .roll-track span { flex: 0 0 150px; padding: 45px 10px; color: var(--muted); font: 700 1.3rem "Barlow Condensed", sans-serif; } .opening-status { color: var(--muted); font-size: .72rem; } .reward-result strong, .reward-result span { display: block; } .reward-result strong { margin-top: 18px; font: 800 2.6rem "Barlow Condensed", sans-serif; } .reward-result span { margin-top: 4px; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; } .rarity-common { color: #63e28b; }.rarity-rare { color: #54b9ff; }.rarity-epic { color: #bd78ff; }.rarity-legendary { color: #ff9d4d; }.rarity-mythic { color: #ff5d73; }
@media (max-width: 850px) { .main-nav { display: none; position: absolute; z-index: 10; top: 70px; right: 24px; left: 24px; padding: 18px; background: #101522; border: 1px solid var(--line); } .main-nav.open { display: grid; gap: 18px; } .mobile-menu { display: block; margin-left: auto; } .header-actions { order: 2; } .hero { grid-template-columns: 1fr; gap: 24px; padding-top: 70px; } .hero-visual { min-height: 380px; } .box-grid { grid-template-columns: repeat(2, 1fr); } .site-footer { grid-template-columns: 1fr 1fr; } .footer-links { justify-content: flex-start; flex-wrap: wrap; } .site-footer > small { text-align: left; } }
@media (max-width: 560px) { .section-wrap, .site-header { width: min(100% - 28px, 1180px); } .header-actions .icon-button span { display: none; } .hero h1 { font-size: 4.2rem; } .hero-stats { gap: 14px; margin-top: 42px; } .hero-visual { min-height: 300px; } .shop-toolbar, .section-heading, .info-section, .contact-section { display: block; } .section-heading > p { margin-top: 18px; } .search-box { margin-top: 18px; } .products-grid, .box-grid { grid-template-columns: 1fr; } .rarity-legend { flex-wrap: wrap; } .site-footer { display: grid; grid-template-columns: 1fr; } }

.products-grid.staff-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.section-hidden { display: none !important; }
.product-card .product-badge { margin-top: 2px; color: var(--cyan); border-color: rgba(85,214,255,.28); background: rgba(85,214,255,.08); }
.product-actions { display: flex; align-items: center; gap: 8px; }
.view-button { min-width: 48px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 3px; background: rgba(255,255,255,.05); color: var(--white); font-size: .68rem; cursor: pointer; }
.product-actions .add-button { width: 42px; height: 36px; padding: 0; font-size: 1rem; }
.art-staff-head { background: linear-gradient(135deg, #544a2d, #151b2d); }
.art-staff-senior { background: linear-gradient(135deg, #3d5269, #111925); }
.art-staff-admin { background: linear-gradient(135deg, #263f65, #0d1422); }
.art-staff-mod { background: linear-gradient(135deg, #543b2e, #151523); }
.art-staff-support { background: linear-gradient(135deg, #214e52, #0e1722); }
.art-staff-trainee { background: linear-gradient(135deg, #245a43, #0e1b20); }
@media (max-width: 850px) { .products-grid.staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .products-grid.staff-grid { grid-template-columns: 1fr; } }

.brand-logo img { display: block; width: 42px; height: 42px; object-fit: contain; object-position: center; border-radius: 9px; }
.hero-logo-wrap { position: absolute; z-index: 2; inset: 16% 12% 18%; display: grid; place-items: center; }
.hero-logo { display: block; width: min(78%, 430px); height: auto; max-height: 78%; object-fit: contain; object-position: center; filter: drop-shadow(0 0 12px rgba(85,214,255,.7)) drop-shadow(0 0 32px rgba(113,87,255,.48)); animation: logo-breathe 4.5s ease-in-out infinite; }
.hero-logo-fallback { color: rgba(6,10,20,.75); font: 900 11rem "Barlow Condensed", sans-serif; letter-spacing: -.1em; transform: skewX(-15deg); text-shadow: 28px 25px 0 rgba(0,0,0,.3); }
@keyframes logo-breathe { 0%, 100% { transform: scale(.98); filter: drop-shadow(0 0 12px rgba(85,214,255,.62)) drop-shadow(0 0 28px rgba(113,87,255,.4)); } 50% { transform: scale(1.02); filter: drop-shadow(0 0 18px rgba(85,214,255,.9)) drop-shadow(0 0 42px rgba(113,87,255,.62)); } }

/* The marked hero area contains only the official logo. */
.site-header .brand { gap: 0; }
.site-header .brand-logo img { width: 58px; height: 58px; object-fit: contain; border-radius: 0; }
.hero-visual { min-height: 510px; overflow: visible; background: transparent; clip-path: none; box-shadow: none; }
.hero-visual::after, .hero-visual .sunset-grid, .hero-visual .hero-glow, .hero-visual .visual-label, .hero-visual .visual-caption { display: none; }
.hero-visual .hero-logo { position: absolute; inset: 0; width: 86%; height: 86%; max-height: none; margin: auto; object-fit: contain; mix-blend-mode: screen; filter: drop-shadow(0 0 18px rgba(85,214,255,.75)) drop-shadow(0 0 40px rgba(113,87,255,.45)); }
@media (max-width: 850px) { .hero-visual { min-height: 380px; } }
@media (max-width: 560px) { .hero-visual { min-height: 300px; } .site-header .brand-logo img { width: 48px; height: 48px; } }
