/*
Theme Name: BlackMarket
Theme URI: https://example.com/
Author: BlackMarket
Description: BlackMarket 遊戲商品展示網站專用深色主題。
Version: 5.1.5
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: blackmarket
*/

:root{
  --bm-bg:#09090b;
  --bm-panel:#141419;
  --bm-panel2:#1b1b22;
  --bm-text:#ffffff;
  --bm-muted:#a1a1aa;
  --bm-purple:#7c3aed;
  --bm-purple2:#a855f7;
  --bm-border:#2a2a33;
  --bm-radius:18px;
  --bm-max:1200px;
}
*{box-sizing:border-box}
html,body{overflow-x:hidden}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bm-bg);
  color:var(--bm-text);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans TC",sans-serif;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.bm-container{width:min(var(--bm-max),calc(100% - 40px));margin:auto}
.bm-skip-link{
  position:fixed;
  top:10px;
  left:10px;
  z-index:9999;
  padding:10px 14px;
  border-radius:8px;
  background:#fff;
  color:#111;
  font-weight:800;
  transform:translateY(-150%);
  transition:transform .18s ease;
}
.bm-skip-link:focus{transform:translateY(0)}

/* Header */

.bm-brand{
  margin-right:auto;
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.bm-brand img{
  width:52px;
  height:52px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.bm-brand-name{
  margin-left:13px;
  color:#fff;
  font-size:20px;
  font-weight:900;
  line-height:1;
  letter-spacing:.5px;
  white-space:nowrap;
  text-shadow:0 0 18px rgba(168,85,247,.18);
}

.bm-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(9,9,11,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--bm-border);
}
.admin-bar .bm-header{top:32px}
.bm-nav{position:relative;height:76px;display:flex;align-items:center;gap:30px}

.bm-menu{display:flex;align-items:center;gap:28px;list-style:none;margin:0;padding:0}
.bm-menu a{font-size:15px;font-weight:600;color:#e4e4e7}
.bm-menu a:hover,.bm-menu .current-menu-item>a{color:#fff}
.bm-community{
  border:1px solid var(--bm-purple);
  padding:10px 18px;
  border-radius:12px;
  font-weight:700;
  transition:.2s;
}
.bm-community:hover{background:var(--bm-purple)}

.bm-community-wrap{position:relative}
.bm-community-button{
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--bm-purple);
  background:transparent;
  color:#fff;
  padding:10px 18px;
  border-radius:12px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:.2s;
}
.bm-community-button:hover,
.bm-community-wrap.is-open .bm-community-button{
  background:rgba(124,58,237,.18);
  box-shadow:0 0 24px rgba(124,58,237,.18)
}
.bm-community-chevron{
  font-size:12px;
  transition:transform .2s
}
.bm-community-wrap.is-open .bm-community-chevron{transform:rotate(180deg)}
.bm-community-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:190px;
  padding:8px;
  margin:0;
  list-style:none;
  background:rgba(12,12,16,.98);
  border:1px solid var(--bm-border);
  border-radius:14px;
  box-shadow:0 18px 50px rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  transition:.18s ease;
  z-index:200
}
.bm-community-wrap.is-open .bm-community-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0)
}
.bm-community-menu a{
  display:flex;
  align-items:center;
  gap:11px;
  padding:11px 12px;
  border-radius:10px;
  color:#e4e4e7;
  font-weight:650
}
.bm-community-menu a:hover{
  color:#fff;
  background:#1a1a22
}
.bm-social-icon{
  width:32px;
  height:32px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 32px;
  overflow:hidden;
}
.bm-social-icon img{
  width:18px;
  height:18px;
  display:block;
  filter:brightness(0) invert(1);
}
.bm-social-discord{background:#5865F2}
.bm-social-youtube{background:#FF0000}
.bm-social-line{background:#06C755}
.bm-social-instagram{
  background:linear-gradient(135deg,#833AB4 0%,#FD1D1D 52%,#FCAF45 100%)
}
.bm-social-threads{background:#111;border:1px solid #3f3f46}

.bm-mobile-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  padding:0;
  border:1px solid var(--bm-border);
  border-radius:10px;
  background:transparent;
  color:#fff;
  cursor:pointer;
}
.bm-mobile-toggle:hover,
.bm-mobile-toggle:focus-visible{border-color:var(--bm-purple);background:rgba(124,58,237,.14)}
.bm-mobile-toggle-icon,
.bm-mobile-toggle-icon::before,
.bm-mobile-toggle-icon::after{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .2s ease,opacity .2s ease,background .2s ease;
}
.bm-mobile-toggle-icon{position:relative}
.bm-mobile-toggle-icon::before,
.bm-mobile-toggle-icon::after{content:"";position:absolute;left:0}
.bm-mobile-toggle-icon::before{top:-6px}
.bm-mobile-toggle-icon::after{top:6px}
.bm-nav.is-mobile-open .bm-mobile-toggle-icon{background:transparent}
.bm-nav.is-mobile-open .bm-mobile-toggle-icon::before{top:0;transform:rotate(45deg)}
.bm-nav.is-mobile-open .bm-mobile-toggle-icon::after{top:0;transform:rotate(-45deg)}

/* Hero */
.bm-hero{
  position:relative;
  width:100%;
  max-width:none;
  min-height:620px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(5,5,8,.96) 0%,rgba(5,5,8,.86) 28%,rgba(5,5,8,.35) 58%,rgba(5,5,8,.10) 100%),
    image-set(
      url("assets/img/blackmarket-hero-v34.webp") type("image/webp"),
      url("assets/img/blackmarket-hero-v34.jpg") type("image/jpeg")
    ) center center / cover no-repeat;
}
.bm-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:150px;
  background:linear-gradient(to bottom,transparent,var(--bm-bg));
  pointer-events:none;
}
.bm-hero-inner{
  position:relative;
  z-index:2;
  width:min(var(--bm-max),calc(100% - 40px));
  margin:auto;
}
.bm-hero-copy{max-width:640px}
.bm-eyebrow{
  color:#c4b5fd;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase
}
.bm-hero h1{
  font-size:clamp(50px,7vw,88px);
  line-height:1;
  margin:15px 0 20px;
  letter-spacing:-.055em;
  text-shadow:0 8px 30px rgba(0,0,0,.65)
}
.bm-hero p{
  font-size:20px;
  color:#d4d4d8;
  max-width:620px;
  text-shadow:0 4px 18px rgba(0,0,0,.7)
}
.bm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--bm-purple),var(--bm-purple2));
  padding:13px 22px;
  border-radius:14px;
  font-weight:800;
  margin-top:18px;
  transition:.2s;
}
.bm-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 35px rgba(124,58,237,.35)
}

/* Sections */
.bm-section{padding:82px 0}
.bm-section.alt{background:#0d0d11}
.bm-section-head{display:flex;justify-content:space-between;align-items:end;gap:20px;margin-bottom:28px}
.bm-section h2{font-size:34px;margin:0;letter-spacing:-.035em}
.bm-section-sub{color:var(--bm-muted);margin:8px 0 0}
.bm-link{color:#c4b5fd;font-weight:800}

/* Cards */
.bm-grid{display:grid;gap:22px}
.bm-grid-4{grid-template-columns:repeat(4,1fr)}
.bm-grid-games{grid-template-columns:repeat(5,1fr)}
.bm-card{
  background:var(--bm-panel);
  border:1px solid var(--bm-border);
  border-radius:var(--bm-radius);
  overflow:hidden;
  transition:.22s ease;
  position:relative;
}
.bm-card:hover{transform:translateY(-5px);border-color:rgba(168,85,247,.65);box-shadow:0 20px 48px rgba(0,0,0,.35)}
/* 商品卡封面固定為正方形，完整顯示 1024×1024 圖片，避免上下被裁切 */
.bm-card-media{
  aspect-ratio:1/1;
  background:var(--bm-panel2);
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bm-card-media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .3s ease;
}
.bm-card:hover .bm-card-media img{transform:scale(1.04)}
.bm-card-overlay{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(9,9,11,.56);
  opacity:0;transition:.2s;font-weight:800
}
.bm-card:hover .bm-card-overlay{opacity:1}
.bm-card-body{padding:16px 18px}
.bm-card-title{font-size:19px;font-weight:800;margin:0}
.bm-card-price{margin-top:12px;color:#f0abfc;font-size:17px;font-weight:850;letter-spacing:.01em}
.bm-game-card{position:relative;min-height:180px;padding:24px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px}
.bm-game-icon{width:76px;height:76px;border-radius:18px;object-fit:cover;background:var(--bm-panel2)}
.bm-game-group+.bm-game-group{margin-top:48px}
.bm-game-group-title{margin:0 0 20px;font-size:27px}
.bm-game-group-upcoming .bm-game-card{opacity:.82}
.bm-game-group-upcoming .bm-game-card:hover{opacity:1}
.bm-coming-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:5px 10px;
  border:1px solid rgba(168,85,247,.46);
  border-radius:999px;
  background:rgba(124,58,237,.14);
  color:#d8b4fe;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
}

/* Product archive filters and pagination */
.bm-archive-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:24px}
.bm-archive-heading .bm-page-title{margin-bottom:8px}
.bm-product-filters{
  display:grid;
  grid-template-columns:minmax(240px,1.35fr) repeat(2,minmax(180px,.8fr)) auto;
  gap:14px;
  align-items:end;
  margin-bottom:18px;
  padding:18px;
  border:1px solid var(--bm-border);
  border-radius:18px;
  background:var(--bm-panel);
}
.bm-filter-field{display:grid;gap:7px}
.bm-filter-field label{color:#d4d4d8;font-size:13px;font-weight:750}
.bm-filter-field input,
.bm-filter-field select{
  width:100%;
  min-height:46px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:11px;
  background:#0d0d12;
  color:#fff;
  font:inherit;
}
.bm-filter-field input::placeholder{color:#71717a}
.bm-filter-field input:focus,
.bm-filter-field select:focus{outline:2px solid rgba(168,85,247,.65);outline-offset:2px;border-color:transparent}
.bm-filter-actions{display:flex;align-items:center;gap:12px;min-height:46px}
.bm-filter-submit{min-height:46px;padding:0 19px;border:0;cursor:pointer;white-space:nowrap}
.bm-filter-reset{color:#d8b4fe;font-weight:750;white-space:nowrap}
.bm-results-summary{margin:0 0 17px;color:var(--bm-muted);font-size:14px}
.bm-filter-empty{display:grid;gap:12px}
.navigation.pagination{margin-top:34px}
.navigation.pagination .nav-links{display:flex;flex-wrap:wrap;justify-content:center;gap:8px}
.navigation.pagination .page-numbers{
  min-width:42px;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 13px;
  border:1px solid var(--bm-border);
  border-radius:10px;
  background:var(--bm-panel);
  color:#e4e4e7;
  font-weight:750;
}
.navigation.pagination a.page-numbers:hover{border-color:rgba(168,85,247,.7);color:#fff}
.navigation.pagination .page-numbers.current{border-color:#a855f7;background:rgba(168,85,247,.2);color:#fff}
.bm-related-products{margin-top:16px}

/* Announcements */
.bm-notice-list{display:grid;gap:12px}
.bm-notice{
  display:grid;
  grid-template-columns:130px 1fr auto;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border:1px solid var(--bm-border);
  border-radius:14px;
  background:var(--bm-panel)
}
.bm-notice-date{color:var(--bm-muted);font-size:14px}
.bm-notice-title{font-weight:800}

/* Why */
.bm-why{grid-template-columns:repeat(4,1fr)}
.bm-why-item{padding:28px;background:var(--bm-panel);border:1px solid var(--bm-border);border-radius:var(--bm-radius)}
.bm-why-icon{font-size:28px;margin-bottom:12px}

/* Pages */
.bm-content{padding:70px 0;min-height:60vh}
.bm-page-title{font-size:46px;margin:0 0 30px}
.bm-prose{max-width:900px;color:#e4e4e7}
.bm-prose h2,.bm-prose h3{color:#fff}
.bm-empty{padding:30px;border:1px dashed var(--bm-border);border-radius:16px;color:var(--bm-muted)}
.bm-breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:22px;
  color:var(--bm-muted);
  font-size:14px;
}
.bm-breadcrumbs a{color:#d8b4fe}
.bm-breadcrumbs a:hover{text-decoration:underline}
.bm-taxonomy-header{max-width:900px;margin-bottom:34px}
.bm-taxonomy-header .bm-page-title{margin-bottom:12px}
.bm-taxonomy-description{color:#c4c4cc;font-size:17px;line-height:1.85}
.bm-taxonomy-description p{margin:0}
.bm-coming-soon{grid-column:1/-1;text-align:center}
.bm-coming-soon .bm-coming-badge{margin:0 auto 12px}
.bm-coming-soon h2{margin:0 0 8px;color:#fff}
.bm-coming-soon p{margin:0 0 18px}
.bm-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:28px}
.bm-contact-card{padding:24px;border:1px solid var(--bm-border);border-radius:16px;background:var(--bm-panel)}
.bm-contact-card h2{margin:0 0 8px;font-size:22px}
.bm-contact-card p{margin:0 0 16px;color:var(--bm-muted)}
.bm-faq details{background:var(--bm-panel);border:1px solid var(--bm-border);border-radius:14px;padding:18px 20px;margin-bottom:12px}
.bm-faq summary{font-weight:800;cursor:pointer}

/* Product */
.bm-product-hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:start;
  margin-bottom:70px
}
.bm-product-gallery-shell{min-width:0}
.bm-product-viewer{position:relative;display:flex;align-items:center;justify-content:center;min-height:520px;padding:24px;border-radius:24px;overflow:hidden;border:1px solid var(--bm-border);background:#18181d}
.bm-gallery-main-image{display:block;width:100%;max-height:680px;object-fit:contain;border-radius:18px;cursor:default}
.bm-product-viewer-empty{color:var(--bm-muted);border-style:dashed}
.bm-gallery-thumbs{display:flex;gap:12px;overflow-x:auto;padding:14px 2px 4px}
.bm-gallery-thumb{flex:0 0 94px;width:94px;height:94px;padding:0;border:2px solid transparent;border-radius:14px;background:#18181d;overflow:hidden;cursor:pointer;opacity:.72;transition:.2s}
.bm-gallery-thumb:hover,.bm-gallery-thumb.is-active{opacity:1;border-color:#f43f5e;transform:translateY(-2px)}
.bm-gallery-thumb img{width:100%;height:100%;object-fit:cover}
.bm-detail-section{padding:44px 0;border-top:1px solid var(--bm-border)}
.bm-detail-section h2{font-size:30px;margin:0 0 22px}
.bm-feature-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.bm-feature-group{padding:26px 28px;border:1px solid var(--bm-border);border-radius:18px;background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012))}
.bm-feature-group h3{font-size:24px;margin:0 0 18px;color:#fff}
.bm-feature-group ul{display:grid;gap:13px;list-style:none;padding:0;margin:0}
.bm-feature-group li{display:flex;gap:11px;align-items:flex-start;color:#b8b8c0;font-size:17px;line-height:1.55}
.bm-feature-check{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;margin-top:2px;border-radius:50%;background:rgba(34,197,94,.16);color:#4ade80;font-weight:900}
.bm-video{aspect-ratio:16/9;width:100%;border:0;border-radius:18px;background:#000}
.bm-update-box{padding:24px;border:1px solid rgba(168,85,247,.45);border-radius:16px;background:rgba(124,58,237,.08);white-space:pre-line}

/* Footer */
.bm-footer{border-top:1px solid var(--bm-border);padding:38px 0;color:var(--bm-muted)}
.bm-footer-row{display:flex;justify-content:space-between;gap:30px;align-items:center}
.bm-footer-links{display:flex;gap:20px;flex-wrap:wrap}

@media(max-width:900px){
  .admin-bar .bm-header{top:46px}
  .bm-menu{
    display:none;
    position:absolute;
    top:calc(100% + 1px);
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    max-height:calc(100vh - 90px);
    overflow-y:auto;
    padding:12px;
    border:1px solid var(--bm-border);
    border-top:0;
    border-radius:0 0 16px 16px;
    background:rgba(12,12,16,.99);
    box-shadow:0 18px 50px rgba(0,0,0,.5);
  }
  .bm-nav.is-mobile-open .bm-menu{display:flex}
  .bm-menu li{width:100%}
  .bm-menu a{display:block;padding:12px 14px;border-radius:10px}
  .bm-menu a:hover,
  .bm-menu .current-menu-item>a{background:rgba(124,58,237,.14)}
  .bm-mobile-toggle{display:inline-flex}
  .bm-nav{height:68px}
  .bm-community-wrap{display:none}
  body.bm-mobile-menu-open{overflow:hidden}
  .bm-hero{min-height:560px;background-position:66% center}
  
  .bm-grid-4,.bm-why{grid-template-columns:repeat(2,1fr)}
  .bm-grid-games{grid-template-columns:repeat(3,1fr)}
  .bm-product-hero{grid-template-columns:1fr}
  .bm-product-filters{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bm-filter-search{grid-column:1/-1}
}

@media(max-width:640px){
  .bm-brand img{width:44px;height:44px;border-radius:10px}
  .bm-brand-name{margin-left:10px;font-size:16px;letter-spacing:.3px}

  .bm-container{width:min(100% - 28px,var(--bm-max))}
  .bm-hero{min-height:500px;background-position:70% center}.bm-hero-inner{width:min(100% - 28px,var(--bm-max))}.bm-hero-copy{max-width:92%}
  .bm-hero p{font-size:17px}
  .bm-section{padding:58px 0}
  .bm-section h2{font-size:29px}
  .bm-grid-4{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:10px}
  .bm-grid-4 .bm-card{min-width:82%;scroll-snap-align:start}
  .bm-product-filters{grid-template-columns:1fr;padding:15px}
  .bm-filter-search{grid-column:auto}
  .bm-filter-actions{justify-content:space-between}
  .bm-filter-submit{flex:1}
  .bm-product-archive-grid{display:grid;grid-template-columns:1fr;overflow:visible;padding-bottom:0}
  .bm-product-archive-grid .bm-card{min-width:0}
  .bm-grid-games{grid-template-columns:repeat(2,1fr)}
  .bm-contact-grid{grid-template-columns:1fr}
  .bm-notice{grid-template-columns:1fr;gap:4px}
  .bm-notice .bm-link{display:none}
  .bm-why{grid-template-columns:1fr}
  .bm-footer-row{align-items:flex-start;flex-direction:column}
  .bm-feature-groups{grid-template-columns:1fr}
  .bm-product-viewer{min-height:360px;padding:14px}
  .bm-gallery-thumb{flex-basis:78px;width:78px;height:78px}
  .bm-product-info h1{font-size:34px}
}


.bm-product-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 4px;
}
.bm-meta-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 11px;
  border:1px solid var(--bm-border);
  border-radius:999px;
  background:#101015;
  color:#d4d4d8;
  font-size:14px;
  font-weight:700;
}
.bm-meta-pill-link{
  text-decoration:none;
  transition:border-color .18s ease,color .18s ease,background .18s ease;
}
.bm-meta-pill-link:hover,
.bm-meta-pill-link:focus{
  border-color:var(--bm-purple);
  background:rgba(139,92,246,.12);
  color:#fff;
}
.bm-status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  flex:0 0 8px;
}
.bm-status-on-sale .bm-status-dot{background:#22c55e;box-shadow:0 0 12px rgba(34,197,94,.55)}
.bm-status-maintenance .bm-status-dot{background:#eab308;box-shadow:0 0 12px rgba(234,179,8,.55)}
.bm-status-discontinued .bm-status-dot{background:#ef4444;box-shadow:0 0 12px rgba(239,68,68,.55)}
.bm-status-coming .bm-status-dot{background:#a855f7;box-shadow:0 0 12px rgba(168,85,247,.55)}
.bm-card-meta-line{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
  color:var(--bm-muted);
  font-size:13px;
}
.bm-card-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.bm-card-status .bm-status-dot{
  width:7px;
  height:7px;
  flex-basis:7px;
}


@media(max-width:640px){
  .bm-product-viewer{min-height:280px;border-radius:18px}
  .bm-gallery-main-image{border-radius:12px}
  .bm-feature-group{padding:21px 20px}
  .bm-feature-group h3{font-size:21px}
  .bm-gallery-lightbox{padding:14px}
}


.bm-card-image-placeholder{width:100%;height:100%;background:radial-gradient(circle at 50% 45%,rgba(139,65,255,.16),transparent 55%),var(--bm-panel2)}
.bm-card-media .bm-card-game-icon{object-fit:contain;object-position:center}

/* V5 product information layout */
.bm-product-info{background:var(--bm-panel);border:1px solid var(--bm-border);border-radius:24px;padding:30px;min-width:0}
.bm-product-breadcrumbs{align-items:center;flex-wrap:nowrap;gap:7px;min-width:0;margin:0 0 14px;white-space:nowrap}
.bm-product-breadcrumbs a{flex:0 0 auto;text-decoration:none}
.bm-product-breadcrumbs a:hover,
.bm-product-breadcrumbs a:focus-visible{text-decoration:underline;text-underline-offset:3px}
.bm-product-breadcrumbs .bm-breadcrumb-game,
.bm-product-breadcrumbs .bm-breadcrumb-current{overflow:hidden;text-overflow:ellipsis}
.bm-product-breadcrumbs .bm-breadcrumb-game{max-width:45%}
.bm-product-breadcrumbs .bm-breadcrumb-current{flex:1 1 auto;min-width:0;color:#a1a1aa}
.bm-product-breadcrumbs .bm-breadcrumb-separator{flex:0 0 auto;color:#71717a}
.bm-product-info h1{font-size:44px;line-height:1.12;margin:0 0 18px;overflow-wrap:anywhere}
.bm-product-summary,.bm-product-prices{display:block;white-space:normal;overflow-wrap:anywhere;word-break:break-word}
.bm-product-summary{margin-top:22px;padding:18px 20px;border:1px solid var(--bm-border);border-radius:14px;background:#101015;color:#e4e4e7;font-size:17px;line-height:1.9}
.bm-product-prices{margin-top:14px;padding:18px 20px;border:1px solid rgba(168,85,247,.35);border-radius:14px;background:rgba(124,58,237,.08);color:#d8b4fe}
.bm-price-list{display:grid}
.bm-price-plan{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:13px 0;border-top:1px solid rgba(216,180,254,.16)}
.bm-price-plan:first-child{padding-top:0;border-top:0}
.bm-price-plan:last-child{padding-bottom:0}
.bm-price-plan-main{display:grid;gap:3px;min-width:0}
.bm-price-plan-main strong{font-size:18px;line-height:1.35;color:#f3e8ff}
.bm-price-plan-main span{font-size:13px;font-weight:500;line-height:1.5;color:#c4b5d5}
.bm-price-plan-values{display:grid;justify-items:end;gap:3px;flex:0 0 auto;text-align:right}
.bm-price-plan-values strong{font-size:20px;line-height:1.3;color:#d8b4fe}
.bm-price-plan-values strong small{font-size:14px;font-weight:700}
.bm-price-plan-values>span{font-size:13px;font-weight:700;color:#c4b5fd}
.bm-price-note{margin:15px 0 0;padding-top:14px;border-top:1px solid rgba(216,180,254,.16);font-size:14px;font-weight:500;line-height:1.65;color:#ddd6e8}
.bm-product-prices-legacy{font-size:20px;font-weight:800;line-height:1.55}
.bm-purchase-quick{margin-top:16px;padding:10px 18px;border:1px solid var(--bm-border);border-radius:14px;background:#101015}
.bm-purchase-check{margin-top:16px;padding:20px;border:1px solid var(--bm-border);border-radius:16px;background:#101015}
.bm-purchase-check h2{margin:0 0 14px;font-size:21px}
.bm-purchase-check p{margin:12px 0 0;color:var(--bm-muted);font-size:14px;line-height:1.75}
.bm-purchase-check a{color:#d8b4fe;text-decoration:underline;text-underline-offset:3px}
.bm-purchase-facts{display:grid;gap:0;margin:0}
.bm-purchase-facts>div{display:grid;grid-template-columns:110px minmax(0,1fr);gap:12px;padding:10px 0;border-top:1px solid rgba(255,255,255,.07)}
.bm-purchase-facts>div:first-child{border-top:0}
.bm-purchase-facts dt{color:#a1a1aa;font-weight:700}
.bm-purchase-facts dd{margin:0;color:#f4f4f5;font-weight:650;overflow-wrap:anywhere}
.bm-purchase-facts .bm-purchase-warning dd{color:#fda4af}
.bm-purchase-section{padding-top:32px;padding-bottom:44px}
.bm-purchase-check-wide{margin-top:0;padding:26px 28px}
.bm-purchase-check-wide h2{font-size:28px;margin-bottom:18px}
.bm-purchase-facts-wide{grid-template-columns:repeat(2,minmax(0,1fr));column-gap:30px}
.bm-purchase-facts-wide>div:nth-child(-n+2){border-top:0}
.bm-purchase-notes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:16px;padding-top:16px;border-top:1px solid rgba(255,255,255,.07)}
.bm-purchase-notes p{margin:0}
.bm-product-info>.bm-btn{margin-top:18px}
.bm-product-viewer{cursor:default}
.bm-gallery-main-image{cursor:default;user-select:none;-webkit-user-drag:none}
@media(max-width:640px){.bm-product-info{padding:22px 18px}.bm-product-breadcrumbs{gap:6px;margin-bottom:12px;font-size:13px}.bm-product-breadcrumbs .bm-breadcrumb-game{max-width:38%}.bm-product-info h1{font-size:32px}.bm-product-summary,.bm-product-prices{padding:15px 16px;font-size:16px}.bm-price-plan{align-items:flex-start}.bm-price-plan-values{justify-items:end}.bm-purchase-check{padding:17px 15px}.bm-purchase-facts>div{grid-template-columns:1fr;gap:2px}.bm-purchase-facts-wide{grid-template-columns:1fr}.bm-purchase-facts-wide>div:nth-child(2){border-top:1px solid rgba(255,255,255,.07)}.bm-purchase-notes{grid-template-columns:1fr}.bm-purchase-section{padding-top:24px;padding-bottom:36px}}
