:root {
  --comper-bg: #080811;
  --comper-bg-soft: #0e0e1a;
  --comper-panel: #17162a;
  --comper-panel-2: #1d1a33;
  --comper-border: #34295c;
  --comper-border-soft: rgba(139, 92, 246, .22);
  --comper-text: #f4f2ff;
  --comper-muted: #9c98b8;
  --comper-purple: #8b5cf6;
  --comper-cyan: #06b6d4;
  --comper-green: #10b981;
  --comper-danger: #ef4444;
  --comper-gradient: linear-gradient(135deg, #8b5cf6 0%, #4f7ff2 48%, #06b6d4 100%);
  --comper-shadow: 0 18px 55px rgba(0, 0, 0, .32);
}

html {
  background: var(--comper-bg);
}

body {
  margin: 0 0 0 256px;
  min-height: 100vh;
  color: var(--comper-text);
  background:
    radial-gradient(circle at 78% 10%, rgba(139, 92, 246, .17), transparent 30%),
    radial-gradient(circle at 8% 86%, rgba(6, 182, 212, .11), transparent 28%),
    linear-gradient(rgba(139, 92, 246, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, .045) 1px, transparent 1px),
    var(--comper-bg);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  font-family: "Rubik", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}

a,
a:hover,
a:focus {
  color: inherit;
}

.comper-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1001;
  display: flex;
  width: 256px;
  flex-direction: column;
  color: var(--comper-text);
  background: rgba(12, 11, 24, .97);
  border-right: 1px solid var(--comper-border);
  box-shadow: 12px 0 45px rgba(0, 0, 0, .22);
}

.comper-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 18px 17px;
  border-bottom: 1px solid var(--comper-border);
}

.comper-brand:hover {
  color: var(--comper-text);
}

.comper-brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 48px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  border-radius: 14px;
  background: var(--comper-gradient);
  box-shadow: 0 8px 22px rgba(139, 92, 246, .38);
}

.comper-brand-name {
  display: block;
  color: #8c8cff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .5px;
}

.comper-brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--comper-muted);
  font-size: 10px;
  letter-spacing: 2.5px;
}

.comper-sidebar-scroll {
  overflow-y: auto;
  flex: 1;
  padding: 18px 10px;
}

.comper-nav-label {
  padding: 12px 8px 7px;
  color: #68647e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.comper-nav {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.comper-nav-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  color: #aaa6c1;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: .2s ease;
}

.comper-nav-link i {
  width: 18px;
  color: #85809e;
  text-align: center;
}

.comper-nav-link:hover,
.comper-nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, .88), rgba(6, 182, 212, .82));
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 28px rgba(93, 71, 210, .25);
}

.comper-nav-link:hover i,
.comper-nav-link.is-active i {
  color: #fff;
}

.comper-sidebar-bottom {
  padding: 12px 10px 16px;
  border-top: 1px solid var(--comper-border);
}

.comper-language {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.comper-language a {
  flex: 1;
  padding: 7px 6px;
  color: var(--comper-muted);
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--comper-border);
  border-radius: 9px;
}

.comper-language a:hover {
  color: #fff;
  border-color: var(--comper-purple);
}

.comper-account-button {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 11px;
  background: var(--comper-gradient);
}

.comper-mobile-header,
.comper-sidebar-overlay {
  display: none;
}

.comper-site-content {
  min-height: 100vh;
  overflow: hidden;
  background: transparent !important;
}

.comper-notice-bar {
  position: relative;
  z-index: 10;
  min-height: 42px;
  color: #b9b5d0;
  font-size: 12px;
  background: rgba(16, 15, 31, .88);
  border-bottom: 1px solid var(--comper-border);
}

.comper-notice-inner {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 1400px;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 8px 28px;
}

.comper-notice-main {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  gap: 9px;
}

.comper-notice-bar i {
  color: var(--comper-cyan);
}

.comper-notice-text {
  min-width: 0;
  max-width: 760px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.comper-notice-scroll {
  display: inline-block;
  min-width: max-content;
  padding-left: 100%;
  animation: comper-notice-marquee 32s linear infinite;
  will-change: transform;
}

.comper-notice-text:hover .comper-notice-scroll {
  animation-play-state: paused;
}

@keyframes comper-notice-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.comper-top-actions,
.comper-top-language,
.comper-top-action {
  display: flex;
  align-items: center;
}

.comper-top-actions {
  flex: 0 0 auto;
  gap: 17px;
  white-space: nowrap;
}

.comper-top-language,
.comper-top-action {
  gap: 5px;
}

.comper-top-language > span:first-of-type {
  margin-right: 2px;
  color: #817d99;
}

.comper-top-language a,
.comper-top-action {
  color: #aaa6c1;
  text-decoration: none;
  transition: color .2s ease;
}

.comper-top-language a:hover,
.comper-top-action:hover {
  color: var(--comper-purple);
}

.comper-top-actions i {
  color: inherit;
}

.comper-top-separator {
  color: #5f5a75;
}

.auto-container {
  width: min(1180px, calc(100% - 44px));
  max-width: 1180px;
}

.sec-pad,
.myprofile-section,
.ragister-section,
.property-details,
.property-page-section {
  background: transparent !important;
}

.sec-pad,
.myprofile-section,
.ragister-section {
  padding-top: 44px;
  padding-bottom: 44px;
}

h1, h2, h3, h4, h5, h6,
.sec-title h2,
.widget-title h3,
.widget-title h4,
.widget-title h5,
.title-box h2,
.title-box h3 {
  color: var(--comper-text) !important;
}

p,
label,
li,
span,
.text,
.othre-text {
  color: inherit;
}

.sec-title p,
.post-date,
.property-details-content p,
.sidebar-widget p,
.form-group label,
.field-input label {
  color: var(--comper-muted) !important;
}

.sidebar-widget,
.inner-box.default-form,
.property-details-content,
.content-widget,
.author-widget,
.calculator-widget,
.ragister-section .inner-box,
.gallery-box > .inner-box,
.modal-content {
  color: var(--comper-text);
  background: rgba(24, 22, 43, .96) !important;
  border: 1px solid var(--comper-border) !important;
  border-radius: 17px !important;
  box-shadow: var(--comper-shadow) !important;
}

.sidebar-widget,
.inner-box.default-form,
.property-details-content,
.content-widget,
.author-widget,
.calculator-widget {
  padding: 24px !important;
}

.widget-title,
.blog-sidebar .post-widget .post-inner,
.property-details-content .top-details,
.property-details-content .discription-box {
  border-color: var(--comper-border) !important;
}

input,
textarea,
select,
.form-control,
.nice-select {
  color: var(--comper-text) !important;
  background: #100f20 !important;
  border: 1px solid #3c3261 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
  color: #6f6a87 !important;
}

.nice-select .list,
.dropdown-menu {
  color: var(--comper-text);
  background: var(--comper-panel-2) !important;
  border: 1px solid var(--comper-border) !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: rgba(139, 92, 246, .22) !important;
}

.theme-btn.btn-one,
button.theme-btn,
input[type="submit"],
.message-btn button {
  color: #fff !important;
  background: var(--comper-gradient) !important;
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 9px 25px rgba(85, 92, 230, .28) !important;
}

.theme-btn.btn-one:hover,
button.theme-btn:hover,
input[type="submit"]:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.indexbanner {
  position: relative;
  width: min(1180px, calc(100% - 44px));
  min-height: 0 !important;
  margin: 28px auto 24px;
  padding: 0 !important;
  overflow: hidden;
  background: var(--comper-panel) !important;
  border: 1px solid var(--comper-border);
  border-radius: 20px;
  box-shadow: var(--comper-shadow);
}

.indexbanner:after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 8, 17, .42), transparent 55%, rgba(139, 92, 246, .14));
}

.indexbanner img {
  display: block;
  width: 100%;
}

.buymenus {
  right: 28px !important;
  bottom: 24px;
  top: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.buymenus .widget-content {
  display: flex;
  gap: 10px;
  padding: 0 !important;
}

.buymenus .buy-btn,
.buymenus .filter-btn {
  margin: 0 !important;
}

.default-sidebar.property-sidebar.item-shorting {
  display: block;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.comper-ranking-panel {
  width: 100% !important;
  min-height: auto !important;
  padding: 25px !important;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .09), rgba(6, 182, 212, .04)),
    var(--comper-panel) !important;
}

.comper-ranking-panel .category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.comper-ranking-panel .category-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 9px 12px !important;
  color: #d5d1e6;
  background: rgba(9, 9, 19, .55);
  border: 1px solid var(--comper-border-soft) !important;
  border-radius: 11px;
}

#swnewlist {
  padding: 26px 0 52px !important;
  background: transparent !important;
}

#swnewlist .inner-box.default-form {
  padding: 26px !important;
}

#swnewlist .sidebar-widget.post-widget {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#swnewlist #indexShowItem,
.property-page-section .post-inner {
  display: grid;
  width: 100% !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#swnewlist .blog-sidebar .post-widget .post,
.property-page-section .blog-sidebar .post-widget .post {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 13px !important;
  overflow: hidden;
  background: var(--comper-panel-2) !important;
  border: 1px solid var(--comper-border-soft);
  border-radius: 14px;
  box-shadow: none;
}

.blog-sidebar .post-widget .post .post-thumb {
  display: block !important;
  width: 100% !important;
  height: 170px;
  margin: 0 0 12px !important;
  overflow: hidden;
  border-radius: 10px;
}

.blog-sidebar .post-widget .post .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar .post-widget .post h5,
.blog-sidebar .post-widget .post h5 a {
  color: var(--comper-text) !important;
}

.blog-sidebar .post-widget .post .post-date {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px !important;
  color: #fff !important;
  background: rgba(139, 92, 246, .72) !important;
  border-radius: 7px;
}

.tabs-box .tab-btn,
.category-list .tab-btn {
  color: #aaa6c1 !important;
  border-color: var(--comper-border) !important;
}

.tabs-box .tab-btn.active-btn,
.tabs-box .tab-btn:hover,
.category-list .tab-btn.active-btn,
.category-list .tab-btn:hover {
  color: #fff !important;
  background: rgba(139, 92, 246, .18) !important;
}

.myprofile-section .sidebar-side .sidebar-widget {
  padding: 24px !important;
}

.myprofile-section .sidebar-side .category-list li {
  border-color: var(--comper-border) !important;
}

.myprofile-section .sidebar-side .category-list a {
  color: #aaa6c1 !important;
}

.myprofile-section .sidebar-side .category-list li:hover a,
.myprofile-section .sidebar-side .category-list .active-btn a {
  color: var(--comper-purple) !important;
}

.property-details-content .price-box,
.property-details-content .price-inner,
.calculate-inner,
.author-info {
  color: var(--comper-text) !important;
  background: transparent !important;
  border-color: var(--comper-border) !important;
}

table {
  color: var(--comper-text) !important;
}

table th,
table td {
  border-color: var(--comper-border) !important;
}

.pagination li a,
.pagination li span {
  color: var(--comper-text) !important;
  background: var(--comper-panel) !important;
  border-color: var(--comper-border) !important;
}

.main-footer,
.main-footer2,
.footer-top,
.footer-bottom {
  display: none !important;
}

@media (max-width: 991px) {
  body {
    margin-left: 0;
    padding-top: 64px;
  }

  .comper-mobile-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1002;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    background: rgba(12, 11, 24, .96);
    border-bottom: 1px solid var(--comper-border);
    backdrop-filter: blur(12px);
  }

  .comper-mobile-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
  }

  .comper-mobile-brand .comper-brand-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    font-size: 20px;
    border-radius: 11px;
  }

  .comper-menu-toggle {
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--comper-panel);
    border: 1px solid var(--comper-border);
    border-radius: 10px;
  }

  .comper-sidebar {
    width: min(300px, 86vw);
    transform: translateX(-105%);
    transition: transform .25s ease;
  }

  .comper-sidebar.is-open {
    transform: translateX(0);
  }

  .comper-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: block;
    visibility: hidden;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    transition: .25s ease;
  }

  .comper-sidebar-overlay.is-open {
    visibility: visible;
    opacity: 1;
  }

  .comper-notice-inner {
    padding: 8px 15px;
  }

  .indexbanner,
  .auto-container {
    width: min(100% - 28px, 1180px);
  }

  .comper-ranking-panel .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #swnewlist #indexShowItem,
  .property-page-section .post-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .myprofile-section .sidebar-side,
  .myprofile-section .tabs-content {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .myprofile-section .tabs-content {
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .comper-top-actions {
    display: none;
  }

  .comper-notice-text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .auto-container,
  .indexbanner {
    width: calc(100% - 20px);
  }

  .sec-pad,
  .myprofile-section,
  .ragister-section {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .sidebar-widget,
  .inner-box.default-form,
  .property-details-content,
  .content-widget,
  .author-widget,
  .calculator-widget {
    padding: 17px !important;
    border-radius: 13px !important;
  }

  .indexbanner {
    margin-top: 12px;
    border-radius: 13px;
  }

  .buymenus {
    position: static !important;
    display: block !important;
    padding: 10px !important;
  }

  .buymenus .widget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .buymenus .theme-btn {
    width: 100%;
    padding: 11px 8px !important;
  }

  .comper-ranking-panel .category-list,
  #swnewlist #indexShowItem,
  .property-page-section .post-inner {
    grid-template-columns: 1fr;
  }

  .blog-sidebar .post-widget .post .post-thumb {
    height: 190px;
  }
}

/* Purchase marketplace */
.comper-market-page {
  min-height: calc(100vh - 42px);
  padding-bottom: 64px;
}

.comper-market-hero {
  position: relative;
  padding: 74px 0 46px;
  overflow: hidden;
}

.comper-market-hero:before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .1), transparent 42%),
    radial-gradient(circle at 78% 35%, rgba(6, 182, 212, .14), transparent 28%);
  pointer-events: none;
}

.comper-market-hero__glow {
  position: absolute;
  top: -180px;
  right: 7%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(99, 102, 241, .12);
  filter: blur(70px);
  pointer-events: none;
}

.comper-market-hero__content {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .12), rgba(6, 182, 212, .05)),
    rgba(23, 22, 42, .94);
  border: 1px solid var(--comper-border);
  border-radius: 22px;
  box-shadow: var(--comper-shadow);
}

.comper-market-eyebrow,
.comper-market-toolbar__label {
  color: var(--comper-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.comper-market-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}

.comper-market-hero h1 {
  margin: 0 0 10px;
  color: #fff !important;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.15;
}

.comper-market-hero__content > p {
  margin: 0 0 28px;
  color: var(--comper-muted);
  font-size: 15px;
}

.comper-market-search label {
  display: block;
  margin-bottom: 9px;
  color: #d8d5e7 !important;
  font-size: 13px;
  font-weight: 700;
}

.comper-market-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.comper-market-search__input {
  position: relative;
}

.comper-market-search__input > i {
  position: absolute;
  top: 50%;
  left: 17px;
  z-index: 1;
  color: #77718f;
  transform: translateY(-50%);
}

.comper-market-search__input input {
  width: 100%;
  height: 52px;
  padding: 0 17px 0 46px;
  font-size: 14px;
}

.comper-market-search__button,
.comper-market-sell-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  background: var(--comper-gradient);
  border: 0;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(80, 91, 223, .27);
}

.comper-market-search__button {
  min-width: 132px;
  height: 52px;
  padding: 0 22px;
}

.comper-market-results {
  padding: 6px 0 30px;
}

.comper-market-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.comper-market-toolbar h2 {
  margin: 4px 0 0;
  font-size: 28px;
}

.comper-market-sell-button {
  min-height: 43px;
  padding: 10px 17px;
  background: rgba(139, 92, 246, .13);
  border: 1px solid rgba(139, 92, 246, .46);
  box-shadow: none;
}

.comper-market-sell-button:hover {
  background: rgba(139, 92, 246, .24);
}

.comper-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.comper-product-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(24, 22, 43, .96);
  border: 1px solid var(--comper-border-soft);
  border-radius: 16px;
  box-shadow: 0 13px 34px rgba(0, 0, 0, .21);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.comper-product-card:hover {
  border-color: rgba(139, 92, 246, .56);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
  transform: translateY(-3px);
}

.comper-product-card__image {
  position: relative;
  display: block;
  height: 205px;
  overflow: hidden;
  background: #0d0c19;
}

.comper-product-card__image:after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  content: "";
  background: linear-gradient(transparent, rgba(8, 8, 17, .76));
}

.comper-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.comper-product-card:hover .comper-product-card__image img {
  transform: scale(1.035);
}

.comper-product-card__status {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 5px 10px;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, .82);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.comper-product-card__body {
  padding: 17px;
}

.comper-product-card__game {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--comper-cyan);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comper-product-card h3 {
  min-height: 48px;
  margin: 0 0 16px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.comper-product-card h3 a {
  color: var(--comper-text);
}

.comper-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--comper-border);
}

.comper-product-card__footer strong {
  color: var(--comper-cyan);
  font-size: 19px;
}

.comper-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa6c1;
  font-size: 12px;
  font-weight: 700;
}

.comper-product-card__link:hover {
  color: #fff;
}

.comper-market-empty {
  grid-column: 1 / -1;
  padding: 70px 20px;
  color: var(--comper-muted);
  text-align: center;
  background: rgba(24, 22, 43, .82);
  border: 1px dashed var(--comper-border);
  border-radius: 16px;
}

.comper-market-empty > i {
  margin-bottom: 17px;
  color: var(--comper-purple);
  font-size: 32px;
}

.comper-market-empty h3 {
  margin-bottom: 8px;
}

.comper-market-empty p {
  margin: 0;
}

.comper-market-pagination {
  margin-top: 30px;
  text-align: center;
}

.comper-market-pagination > div,
.comper-market-pagination .pagination {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.comper-market-pagination a,
.comper-market-pagination span {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 10px;
  color: #c8c4da;
  background: var(--comper-panel);
  border: 1px solid var(--comper-border);
  border-radius: 9px;
}

.comper-market-pagination .current,
.comper-market-pagination a:hover {
  color: #fff;
  background: var(--comper-gradient);
  border-color: transparent;
}

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

@media (max-width: 767px) {
  .comper-market-hero {
    padding: 32px 0 28px;
  }

  .comper-market-hero__content {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .comper-market-search__row {
    grid-template-columns: 1fr;
  }

  .comper-market-search__button {
    width: 100%;
  }

  .comper-market-toolbar {
    align-items: center;
  }

  .comper-market-toolbar h2 {
    font-size: 23px;
  }

  .comper-product-grid {
    grid-template-columns: 1fr;
  }

  .comper-product-card__image {
    height: 220px;
  }
}

@media (max-width: 420px) {
  .comper-market-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .comper-market-sell-button {
    width: 100%;
  }
}

/* Reference-style home hero */
.comper-home-hero-wrap {
  margin-top: 48px;
}

.comper-home-hero {
  position: relative;
  display: flex;
  min-height: 475px;
  align-items: center;
  overflow: hidden;
  background: #17162a;
  border: 1px solid var(--comper-border);
  border-radius: 24px;
  box-shadow: var(--comper-shadow);
}

.comper-home-hero:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 246, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.comper-home-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  background: url("/Public/images/kotobukiya_laura.webp") center center / cover no-repeat;
}

.comper-home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #17162a 0%, rgba(23, 22, 42, .98) 37%, rgba(23, 22, 42, .72) 56%, rgba(23, 22, 42, .13) 100%),
    linear-gradient(0deg, rgba(8, 8, 17, .23), transparent 45%);
}

.comper-home-hero__content {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 48px;
}

.comper-home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 19px;
  padding: 6px 14px;
  color: #c56cff;
  font-size: 12px;
  font-weight: 700;
  background: rgba(168, 85, 247, .14);
  border: 1px solid rgba(168, 85, 247, .35);
  border-radius: 100px;
}

.comper-home-hero h1 {
  margin: 0 0 17px;
  color: #f8f7ff !important;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .02em;
}

.comper-home-hero h1 span {
  color: transparent;
  background: var(--comper-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comper-home-hero__content > p {
  max-width: 560px;
  margin: 0 0 27px;
  color: #aaa6c1;
  font-size: 15px;
  line-height: 1.8;
}

.comper-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.comper-home-hero__actions button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 27px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.comper-home-hero__buy {
  background: var(--comper-gradient);
  border: 0;
  box-shadow: 0 8px 25px rgba(98, 80, 224, .35);
}

.comper-home-hero__sell {
  background: var(--comper-gradient);
  border: 0;
  box-shadow: 0 8px 25px rgba(98, 80, 224, .35);
}

.comper-home-hero__actions button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.comper-home-hero__stats {
  display: flex;
  gap: 38px;
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid var(--comper-border);
}

.comper-home-hero__stats div {
  display: grid;
  gap: 3px;
}

.comper-home-hero__stats strong {
  color: var(--comper-cyan);
  font-size: 27px;
  font-weight: 900;
}

.comper-home-hero__stats span {
  color: #77728f;
  font-size: 11px;
}

/* Reference-style ranking */
.comper-reference-ranking {
  margin-top: 42px;
  margin-bottom: 10px;
}

.ranking-card-v2 {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: rgba(24, 22, 43, .96);
  border: 1px solid var(--comper-border);
  border-radius: 18px;
  box-shadow: var(--comper-shadow);
}

.ranking-card-v2:before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .55), transparent);
}

.ranking-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ranking-title-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--comper-text);
  font-size: 17px;
  font-weight: 800;
}

.ranking-title-v2 .icon-wrap {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--comper-cyan);
  background: linear-gradient(135deg, rgba(6, 182, 212, .2), rgba(16, 185, 129, .12));
  border-radius: 10px;
}

.ranking-period-v2 {
  padding: 4px 10px;
  color: var(--comper-cyan) !important;
  font-size: 11px;
  font-weight: 700;
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 100px;
}

.ranking-list-v2 {
  display: grid;
  gap: 6px;
}

.ranking-item-v2 {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}

.ranking-item-v2:hover {
  color: inherit;
  background: rgba(255, 255, 255, .035);
  transform: translateX(4px);
}

.ranking-item-v2.top1 {
  background: linear-gradient(135deg, rgba(251, 191, 36, .08), transparent);
  border-color: rgba(251, 191, 36, .16);
}

.ranking-item-v2.top2 {
  background: linear-gradient(135deg, rgba(156, 163, 175, .06), transparent);
  border-color: rgba(156, 163, 175, .13);
}

.ranking-item-v2.top3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, .06), transparent);
  border-color: rgba(205, 127, 50, .13);
}

.ranking-medal-v2,
.ranking-thumb-v2 {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.ranking-medal-v2 {
  width: 29px;
  height: 29px;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
}

.ranking-medal-v2.top1 {
  color: #1a1a2e !important;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 2px 10px rgba(251, 191, 36, .4);
}

.ranking-medal-v2.top2 {
  color: #1a1a2e !important;
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
}

.ranking-medal-v2.top3 {
  color: #fff !important;
  background: linear-gradient(135deg, #d97706, #b45309);
}

.ranking-medal-v2.normal {
  color: #89849f !important;
  background: #100f20;
  border: 1px solid var(--comper-border);
}

.ranking-thumb-v2 {
  position: relative;
  width: 42px;
  height: 42px;
  font-size: 20px;
  border-radius: 12px;
}

.ranking-thumb-v2:after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: inherit;
}

.ranking-info-v2 {
  display: block;
  min-width: 0;
  flex: 1;
}

.ranking-name-v2 {
  display: block;
  overflow: hidden;
  color: var(--comper-text) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-meta-v2 {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.ranking-price-v2 {
  flex: 0 0 auto;
  color: var(--comper-cyan) !important;
  font-size: 12px;
  font-weight: 700;
}

.ranking-heat-bar-v2 {
  display: block;
  min-width: 40px;
  height: 4px;
  overflow: hidden;
  flex: 1;
  background: #0f0e1d;
  border-radius: 3px;
}

.ranking-heat-fill-v2 {
  display: block;
  height: 100%;
  background: var(--comper-gradient);
  border-radius: inherit;
}

.ranking-trend-v2 {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
}

.ranking-trend-v2.up {
  color: var(--comper-green) !important;
  background: rgba(16, 185, 129, .12);
}

.ranking-trend-v2.down {
  color: var(--comper-danger) !important;
  background: rgba(239, 68, 68, .12);
}

.ranking-trend-v2.flat {
  color: #77728f !important;
  background: rgba(107, 107, 128, .1);
}

@media (max-width: 900px) {
  .comper-home-hero {
    min-height: 520px;
  }

  .comper-home-hero__image {
    width: 100%;
    opacity: .43;
  }

  .comper-home-hero__shade {
    background: linear-gradient(90deg, rgba(23, 22, 42, .99), rgba(23, 22, 42, .8) 70%, rgba(23, 22, 42, .42));
  }

  .comper-home-hero__content {
    width: 76%;
  }
}

@media (max-width: 575px) {
  .comper-home-hero-wrap {
    margin-top: 18px;
  }

  .comper-home-hero {
    min-height: 610px;
    align-items: flex-end;
    border-radius: 15px;
  }

  .comper-home-hero__image {
    inset: 0;
    height: 52%;
    opacity: .72;
    background-image: url("/Public/images/kotobukiya_laura_mb.webp");
    background-position: top center;
  }

  .comper-home-hero__shade {
    background: linear-gradient(0deg, #17162a 0%, #17162a 54%, rgba(23, 22, 42, .63) 76%, rgba(23, 22, 42, .15) 100%);
  }

  .comper-home-hero__content {
    width: 100%;
    padding: 250px 20px 24px;
  }

  .comper-home-hero__badge {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .comper-home-hero h1 {
    margin-bottom: 12px;
    font-size: 31px;
  }

  .comper-home-hero__content > p {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.65;
  }

  .comper-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .comper-home-hero__actions button {
    min-height: 45px;
    padding: 9px;
    font-size: 13px;
  }

  .comper-home-hero__stats {
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 17px;
  }

  .comper-home-hero__stats strong {
    font-size: 20px;
  }

  .comper-reference-ranking {
    margin-top: 22px;
  }

  .ranking-card-v2 {
    padding: 16px 12px;
    border-radius: 14px;
  }

  .ranking-header-v2 {
    align-items: flex-start;
    gap: 9px;
    flex-direction: column;
  }

  .ranking-item-v2 {
    gap: 8px;
    padding: 9px 7px;
  }

  .ranking-thumb-v2 {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .ranking-medal-v2 {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }

  .ranking-name-v2 {
    font-size: 12px;
  }

  .ranking-price-v2,
  .ranking-trend-v2 {
    font-size: 10px;
  }

  .ranking-trend-v2 {
    padding: 3px 5px;
  }
}

/* Reference-style new products */
.comper-new-products-section {
  padding: 48px 0 68px;
}

.comper-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
}

.comper-section-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--comper-text) !important;
  font-size: 28px;
  font-weight: 900;
}

.comper-section-header h2:before {
  width: 4px;
  height: 28px;
  content: "";
  background: var(--comper-gradient);
  border-radius: 3px;
}

.comper-section-header p {
  margin: 5px 0 0 16px;
  color: #77728f;
  font-size: 13px;
}

.comper-section-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ae72ff;
  font-size: 13px;
  font-weight: 700;
  transition: gap .2s ease;
}

.comper-section-more:hover {
  gap: 10px;
  color: #c99aff;
}

.comper-home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.comper-home-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: rgba(24, 22, 43, .96);
  border: 1px solid var(--comper-border);
  border-radius: 17px;
  box-shadow: 0 13px 34px rgba(0, 0, 0, .18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.comper-home-product-card:hover {
  border-color: rgba(139, 92, 246, .52);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
  transform: translateY(-4px);
}

.comper-home-product-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(139, 92, 246, .16), transparent 42%),
    #100f20;
}

.comper-home-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.comper-home-product-card:hover .comper-home-product-image img {
  transform: scale(1.035);
}

.comper-home-product-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  max-width: calc(100% - 22px);
  overflow: hidden;
  padding: 5px 10px;
  color: #fff !important;
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.comper-home-product-badge.sold {
  background: rgba(239, 68, 68, .88);
}

.comper-home-product-badge.new {
  background: rgba(16, 185, 129, .88);
}

.comper-home-product-body {
  padding: 16px;
}

.comper-home-product-body h3 {
  display: -webkit-box;
  min-height: 42px;
  margin: 0 0 9px;
  overflow: hidden;
  color: var(--comper-text) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.comper-home-product-body h3 a {
  color: inherit;
}

.comper-home-product-game {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #817c99;
  font-size: 12px;
}

.comper-home-product-game i {
  color: var(--comper-cyan);
}

.comper-home-product-game span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comper-home-product-price {
  margin-top: 11px;
  color: var(--comper-cyan);
  font-size: 21px;
  font-weight: 900;
}

.comper-home-product-price small {
  margin-right: 2px;
  font-size: 13px;
  font-weight: 700;
}

.comper-home-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 13px;
}

.comper-home-product-buy,
.comper-home-product-detail {
  display: grid;
  min-height: 36px;
  place-items: center;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
}

.comper-home-product-buy {
  color: #fff !important;
  background: var(--comper-gradient);
}

.comper-home-product-buy.is-disabled {
  color: #716c87 !important;
  background: #100f20;
  cursor: default;
}

.comper-home-product-detail {
  color: #aaa6c1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--comper-border);
}

.comper-home-product-detail:hover {
  color: #fff;
  border-color: rgba(139, 92, 246, .5);
}

@media (max-width: 1100px) {
  .comper-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .comper-new-products-section {
    padding: 33px 0 45px;
  }

  .comper-section-header {
    align-items: center;
  }

  .comper-section-header h2 {
    font-size: 22px;
  }

  .comper-section-header h2:before {
    height: 23px;
  }

  .comper-section-header p {
    margin-left: 16px;
    font-size: 11px;
  }

  .comper-section-more {
    font-size: 11px;
  }

  .comper-home-product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .comper-home-product-image {
    aspect-ratio: 16 / 9;
  }
}

/* Home notices */
.comper-notice-section {
  padding: 0 0 72px;
}

.comper-notice-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, .055), rgba(6, 182, 212, .025)),
    rgba(24, 22, 43, .96);
  border: 1px solid var(--comper-border);
  border-radius: 18px;
  box-shadow: var(--comper-shadow);
}

.comper-notice-card:before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, .65), rgba(6, 182, 212, .55), transparent);
}

.comper-notice-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.comper-notice-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comper-notice-card__title > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--comper-cyan);
  background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(6, 182, 212, .14));
  border: 1px solid rgba(139, 92, 246, .22);
  border-radius: 11px;
}

.comper-notice-card__title h2 {
  margin: 0;
  color: var(--comper-text) !important;
  font-size: 19px;
  font-weight: 800;
}

.comper-notice-card__title p {
  margin: 3px 0 0;
  color: #77728f;
  font-size: 11px;
}

.comper-notice-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ae72ff;
  font-size: 12px;
  font-weight: 700;
  transition: gap .2s ease;
}

.comper-notice-card__more:hover {
  gap: 10px;
  color: #cf9fff;
}

.comper-notice-list {
  display: grid;
  gap: 8px;
}

.comper-notice-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 13px 15px;
  color: inherit;
  background: rgba(10, 9, 20, .52);
  border: 1px solid rgba(139, 92, 246, .13);
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.comper-notice-item:hover {
  color: inherit;
  background: rgba(139, 92, 246, .07);
  border-color: rgba(139, 92, 246, .38);
  transform: translateX(3px);
}

.comper-notice-item__badge {
  padding: 4px 8px;
  color: var(--comper-cyan) !important;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .7px;
  background: rgba(6, 182, 212, .1);
  border: 1px solid rgba(6, 182, 212, .2);
  border-radius: 6px;
}

.comper-notice-item__body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.comper-notice-item__body strong {
  overflow: hidden;
  color: #e9e6f5;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comper-notice-item__body > span {
  overflow: hidden;
  color: #817c99;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comper-notice-item > i {
  color: #625d78;
  font-size: 11px;
}

.comper-notice-empty {
  padding: 30px 15px;
  color: #77728f;
  text-align: center;
  border: 1px dashed var(--comper-border);
  border-radius: 12px;
}

@media (max-width: 575px) {
  .comper-notice-section {
    padding-bottom: 45px;
  }

  .comper-notice-card {
    padding: 17px 13px;
    border-radius: 14px;
  }

  .comper-notice-card__header {
    align-items: flex-start;
  }

  .comper-notice-card__title > span {
    width: 35px;
    height: 35px;
  }

  .comper-notice-card__title h2 {
    font-size: 17px;
  }

  .comper-notice-card__more {
    padding-top: 5px;
    font-size: 10px;
  }

  .comper-notice-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 12px;
  }

  .comper-notice-item__badge {
    display: none;
  }
}

/* Notice accordion, aligned with the reference FAQ */
.comper-notice-item {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  transform: none;
}

.comper-notice-item:hover {
  transform: none;
}

.comper-notice-question {
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  color: var(--comper-text);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.comper-notice-question strong {
  overflow: hidden;
  color: #e9e6f5;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comper-notice-question > i {
  color: #77728f;
  font-size: 12px;
  transition: color .2s ease, transform .3s ease;
}

.comper-notice-item.is-open {
  background: rgba(139, 92, 246, .065);
  border-color: rgba(139, 92, 246, .36);
}

.comper-notice-item.is-open .comper-notice-question > i {
  color: #b779ff;
  transform: rotate(180deg);
}

.comper-notice-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition: max-height .3s ease, padding .3s ease, opacity .2s ease;
}

.comper-notice-item.is-open .comper-notice-answer {
  max-height: 320px;
  padding: 0 18px 17px;
  opacity: 1;
}

.comper-notice-answer p {
  margin: 0;
  color: #8d88a3;
  font-size: 13px;
  line-height: 1.8;
}

.comper-notice-answer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: #ae72ff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 575px) {
  .comper-notice-question {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    min-height: 56px;
    padding: 13px;
  }

  .comper-notice-question strong {
    font-size: 13px;
  }

  .comper-notice-item.is-open .comper-notice-answer {
    padding: 0 13px 14px;
  }

  .comper-notice-answer p {
    font-size: 12px;
  }
}

/* Account management */
.myprofile-section {
  min-height: calc(100vh - 42px);
}

.myprofile-section .tabs-box.row {
  align-items: flex-start;
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 992px) {
  .myprofile-section .tabs-box.row {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    margin-right: 0;
    margin-left: 0;
  }

  .myprofile-section .sidebar-side,
  .myprofile-section .content-side {
    width: auto;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
    flex: none;
  }
}

.myprofile-section .sidebar-side,
.myprofile-section .content-side {
  padding-right: 10px;
  padding-left: 10px;
}

.myprofile-section .sidebar-side .sidebar-widget {
  position: sticky;
  top: 66px;
  overflow: hidden;
  padding: 24px 20px !important;
  background: rgba(24, 22, 43, .97) !important;
  border-color: var(--comper-border) !important;
}

.myprofile-section .sidebar-side .widget-title {
  margin: 0 0 20px !important;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--comper-border) !important;
}

.myprofile-section .sidebar-side .widget-title h4 {
  margin: 0 0 20px;
  padding: 0 !important;
  font-size: 16px;
  font-weight: 700;
}

.myprofile-section .sidebar-side .widget-title .field-input {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.myprofile-section .sidebar-side .widget-title label {
  margin: 0;
  color: #aaa6c1 !important;
  font-size: 13px;
  line-height: 1.5;
}

.myprofile-section .sidebar-side .widget-content {
  padding: 0;
}

.myprofile-section .sidebar-side .category-list {
  display: grid;
  gap: 0;
}

.myprofile-section .sidebar-side .category-list li {
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--comper-border) !important;
  border-radius: 0;
}

.myprofile-section .sidebar-side .category-list li:last-child {
  border-bottom: 0 !important;
}

.myprofile-section .comper-account-nav-button {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 12px 0 !important;
  color: #aaa6c1 !important;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  font-family: inherit;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: color .2s ease;
}

.myprofile-section .comper-account-nav-button > span {
  float: none !important;
}

.myprofile-section .comper-account-nav-arrow {
  display: inline-flex;
  width: 12px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #77728f !important;
  font-size: 10px;
  line-height: 1;
}

.myprofile-section .sidebar-side .category-list li:hover,
.myprofile-section .sidebar-side .category-list li.active-btn {
  background: transparent !important;
}

.myprofile-section .sidebar-side .category-list li:hover .comper-account-nav-button,
.myprofile-section .sidebar-side .category-list li.active-btn .comper-account-nav-button {
  color: #a875ff !important;
}

.myprofile-section .sidebar-side .category-list li.active-btn .comper-account-nav-button {
  font-weight: 700;
}

.myprofile-section .sidebar-side .category-list li:hover .comper-account-nav-arrow,
.myprofile-section .sidebar-side .category-list li.active-btn .comper-account-nav-arrow {
  color: #a875ff !important;
}

.myprofile-section .comper-account-nav-button.is-logout {
  color: #ef5b6b !important;
}

.myprofile-section .sidebar-side .category-list li:last-child:hover .comper-account-nav-button {
  color: #fb7185 !important;
}

.myprofile-section .comper-account-nav-button.is-logout .comper-account-nav-arrow,
.myprofile-section .sidebar-side .category-list li:last-child:hover .comper-account-nav-arrow {
  color: #ef5b6b !important;
}

.myprofile-section .tabs-content {
  color: var(--comper-text);
}

.myprofile-section .tabs-content > .tab,
.myprofile-section .gallery-box,
.myprofile-section .general-information,
.myprofile-section .property-details {
  color: var(--comper-text);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.myprofile-section .gallery-box,
.myprofile-section .property-details,
.myprofile-section .general-information {
  padding: 0 !important;
}

.myprofile-section .gallery-box > .inner-box,
.myprofile-section .tabs-content > .tab > .inner-box,
.myprofile-section .tabs-content .sidebar-widget {
  background:
    linear-gradient(145deg, rgba(139, 92, 246, .065), rgba(6, 182, 212, .025)),
    rgba(24, 22, 43, .97) !important;
  border: 1px solid var(--comper-border-soft) !important;
  border-radius: 16px !important;
  box-shadow: var(--comper-shadow) !important;
}

.myprofile-section .tabs-content .sidebar-widget .blog-sidebar,
.myprofile-section .tabs-content .post-inner,
.myprofile-section .gallery-box .row,
.myprofile-section .gallery-box form {
  background: transparent !important;
  border-color: var(--comper-border) !important;
}

.myprofile-section .blog-sidebar[style*="border-bottom"],
.myprofile-section h4[style*="border-bottom"] {
  border-bottom-color: var(--comper-border) !important;
}

.myprofile-section .tabs-content h4 {
  margin-bottom: 20px;
  padding: 0 0 14px !important;
  font-size: 18px;
  font-weight: 800;
}

.myprofile-section .field-input {
  margin-bottom: 18px !important;
}

.myprofile-section .field-input label {
  margin-bottom: 7px;
  color: #aaa6c1 !important;
  font-size: 13px;
  font-weight: 600;
}

.myprofile-section input[type="text"],
.myprofile-section input[type="email"],
.myprofile-section input[type="tel"],
.myprofile-section input[type="number"],
.myprofile-section input[type="password"],
.myprofile-section textarea,
.myprofile-section .nice-select {
  min-height: 48px;
  color: #f2efff !important;
  background: rgba(8, 8, 17, .76) !important;
  border-color: rgba(139, 92, 246, .3) !important;
}

.myprofile-section input:focus,
.myprofile-section textarea:focus,
.myprofile-section .nice-select.open {
  border-color: rgba(6, 182, 212, .7) !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .09) !important;
}

.myprofile-section input[type="button"],
.myprofile-section .theme-btn.btn-one {
  min-height: 42px;
  color: #fff !important;
  background: var(--comper-gradient) !important;
  border: 0 !important;
  border-radius: 9px !important;
}

.myprofile-section .comper-id-upload-field {
  height: 100%;
}

.myprofile-section .comper-id-upload-field > label {
  display: block;
  min-height: 40px;
}

.myprofile-section .comper-id-upload-card {
  display: flex;
  height: calc(100% - 40px);
  min-height: 268px;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 34%, rgba(139, 92, 246, .12), transparent 48%),
    rgba(8, 8, 17, .58);
  border: 1px dashed rgba(139, 92, 246, .46);
  border-radius: 14px;
}

.myprofile-section .comper-id-upload-preview {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
  background: rgba(10, 9, 20, .78);
  border: 1px solid var(--comper-border-soft);
  border-radius: 11px;
}

.myprofile-section .comper-id-upload-preview img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: contain;
  background: transparent;
}

.myprofile-section .comper-id-upload-card.has-image .comper-id-upload-preview img {
  display: block;
}

.myprofile-section .comper-id-upload-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  color: #77728f;
  text-align: center;
}

.myprofile-section .comper-id-upload-placeholder i {
  color: #7665ad;
  font-size: 34px;
}

.myprofile-section .comper-id-upload-placeholder span {
  color: #817c99;
  font-size: 12px;
}

.myprofile-section .comper-id-upload-card.has-image .comper-id-upload-placeholder {
  display: none;
}

.myprofile-section .comper-id-upload-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  background: var(--comper-gradient);
  border: 0;
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(85, 92, 230, .22);
  cursor: pointer;
}

.myprofile-section .comper-id-upload-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.myprofile-section .comper-id-file-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.myprofile-section .comper-id-upload-button.is-loading,
.myprofile-section .comper-id-upload-button:disabled {
  opacity: .58;
  pointer-events: none;
  transform: none;
}

.myprofile-section #showitemlist,
.myprofile-section #showcashlist {
  border: 0 !important;
}

.myprofile-section #showitemlist {
  display: grid;
  width: 100%;
  gap: 14px;
}

.myprofile-section #showitemlist .post,
.myprofile-section #showcashlist > div {
  color: var(--comper-text);
  background: rgba(8, 8, 17, .48) !important;
  border: 1px solid var(--comper-border-soft) !important;
  border-radius: 12px;
}

.myprofile-section #showitemlist .post {
  position: relative;
  display: grid !important;
  width: 100%;
  min-height: 0 !important;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 15px;
  row-gap: 7px;
  margin: 0 !important;
  padding: 14px !important;
  overflow: hidden;
}

.myprofile-section #showitemlist .post .post-thumb {
  position: static !important;
  inset: auto !important;
  display: block !important;
  width: 90px !important;
  height: 90px !important;
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 10px;
}

.myprofile-section #showitemlist .post .post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myprofile-section #showitemlist .post h5 {
  min-width: 0;
  grid-column: 2 / -1;
  grid-row: 1;
  margin: 0 !important;
  padding: 0 !important;
  overflow-wrap: anywhere;
}

.myprofile-section #showitemlist .post > .post-date {
  position: static;
  float: none !important;
  width: max-content;
  max-width: 100%;
  margin: 0 !important;
}

.myprofile-section #showitemlist .post > span:nth-of-type(1) {
  grid-column: 3;
  grid-row: 2;
}

.myprofile-section #showitemlist .post > span:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}

.myprofile-section #showitemlist .post > span:nth-of-type(3) {
  grid-column: 2 / -1;
  grid-row: 3;
  color: var(--comper-muted) !important;
  background: transparent !important;
}

.myprofile-section #showcashlist > div {
  margin-bottom: 9px !important;
  padding: 13px 15px;
}

.myprofile-section #history {
  margin-top: 24px !important;
}

@media (max-width: 575px) {
  .myprofile-section .tabs-box.row {
    margin-right: 0;
    margin-left: 0;
  }

  .myprofile-section .sidebar-side,
  .myprofile-section .content-side {
    padding-right: 0;
    padding-left: 0;
  }

  .myprofile-section .sidebar-side .widget-title {
    padding: 0 0 15px;
  }

  .myprofile-section .sidebar-side .widget-content {
    padding: 0;
  }

  .myprofile-section .gallery-box > .inner-box,
  .myprofile-section .tabs-content > .tab > .inner-box,
  .myprofile-section .tabs-content .sidebar-widget {
    padding: 17px !important;
    border-radius: 13px !important;
  }

  .myprofile-section #showitemlist .post {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    column-gap: 12px;
    padding: 12px !important;
  }

  .myprofile-section #showitemlist .post .post-thumb {
    width: 72px !important;
    height: 72px !important;
    grid-row: 1 / span 4;
  }

  .myprofile-section #showitemlist .post h5 {
    grid-column: 2;
  }

  .myprofile-section #showitemlist .post > span:nth-of-type(1),
  .myprofile-section #showitemlist .post > span:nth-of-type(2),
  .myprofile-section #showitemlist .post > span:nth-of-type(3) {
    grid-column: 2;
  }

  .myprofile-section #showitemlist .post > span:nth-of-type(1) {
    grid-row: 2;
  }

  .myprofile-section #showitemlist .post > span:nth-of-type(2) {
    grid-row: 3;
  }

  .myprofile-section #showitemlist .post > span:nth-of-type(3) {
    grid-row: 4;
  }
}

/* Sell form */
.myprofile-section #productInfo .field,
.myprofile-section #productInfo .field main {
  width: 100%;
  background: transparent !important;
}

.myprofile-section #productInfo .field input {
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  color: var(--comper-text) !important;
  font-size: 14px;
  background: #100f20 !important;
  border: 1px solid #3c3261 !important;
  border-radius: 10px !important;
}

.myprofile-section #productInfo .field input:focus {
  border-color: rgba(6, 182, 212, .7) !important;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, .09) !important;
}

.myprofile-section #productInfo .main {
  width: 100%;
  margin: 0;
}

.myprofile-section #productInfo .upload-content {
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, .07), rgba(6, 182, 212, .025)),
    rgba(8, 8, 17, .58);
  border: 1px dashed rgba(139, 92, 246, .46);
  border-radius: 14px;
}

.myprofile-section #productInfo .upload-content > span {
  display: block;
  margin-bottom: 12px;
  color: #aaa6c1;
  font-size: 13px;
}

.myprofile-section #productInfo .content-img {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
}

.myprofile-section #productInfo .content-img-list {
  display: contents;
  margin: 0;
}

.myprofile-section #productInfo .upload-content .file,
.myprofile-section #productInfo .upload-content .content-img-list-item {
  width: 150px;
  height: 150px;
  margin: 0;
  overflow: hidden;
  color: #817c99;
  line-height: 150px;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 92, 246, .14), transparent 45%),
    #100f20 !important;
  border: 1px dashed rgba(139, 92, 246, .5) !important;
  border-radius: 12px;
}

.myprofile-section #productInfo .upload-content .file:hover {
  color: var(--comper-cyan);
  background: rgba(6, 182, 212, .055) !important;
  border-color: var(--comper-cyan) !important;
}

.myprofile-section #productInfo .upload-content .content-img .gcl {
  color: #9b91bb;
}

.myprofile-section #productInfo .upload-content .file:hover .gcl {
  color: var(--comper-cyan);
}

.myprofile-section #productInfo .upload-content .content-img-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myprofile-section #productInfo .upload-content .file input {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0 !important;
}

@media (max-width: 575px) {
  .myprofile-section #productInfo .upload-content {
    padding: 14px;
  }

  .myprofile-section #productInfo .upload-content .file,
  .myprofile-section #productInfo .upload-content .content-img-list-item {
    width: 126px;
    height: 126px;
    line-height: 126px;
  }
}

/* Product detail */
.detail-page {
  padding: 44px 0 64px;
}

.detail-page .detail-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px 28px;
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, .065), rgba(6, 182, 212, .025)),
    rgba(24, 22, 43, .97);
  border: 1px solid var(--comper-border);
  border-radius: 17px;
  box-shadow: var(--comper-shadow);
}

.detail-page .detail-game-name {
  color: var(--comper-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.detail-page .detail-header-price {
  flex: 0 0 auto;
  color: var(--comper-green);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
}

.detail-page .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
  align-items: start;
  gap: 24px;
}

.detail-page .detail-main-col,
.detail-page .detail-side-col {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.detail-page .detail-gallery-card,
.detail-page .detail-product-info,
.detail-page .detail-seller-card,
.detail-page .detail-desc-card {
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(139, 92, 246, .065), rgba(6, 182, 212, .025)),
    rgba(24, 22, 43, .97);
  border: 1px solid var(--comper-border);
  border-radius: 17px;
  box-shadow: var(--comper-shadow);
}

.detail-page .detail-gallery-card {
  min-width: 0;
  padding: 24px;
  overflow: hidden;
}

.detail-page .swiper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.detail-page .mySwiper2 {
  height: 510px;
  overflow: hidden;
  background: rgba(8, 8, 17, .72);
  border: 1px solid var(--comper-border-soft);
  border-radius: 13px;
}

.detail-page .mySwiper {
  height: 92px;
  box-sizing: border-box;
  margin-top: 14px;
  padding: 0;
}

.detail-page .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: rgba(8, 8, 17, .7);
  border-radius: 9px;
}

.detail-page .mySwiper .swiper-slide {
  height: 100%;
  opacity: .42;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease;
}

.detail-page .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--comper-purple);
}

.detail-page .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-page .mySwiper .swiper-slide img {
  object-fit: cover;
}

.detail-page .swiper-button-next,
.detail-page .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(8, 8, 17, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.detail-page .swiper-button-next::after,
.detail-page .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 900;
}

.detail-page .detail-product-info {
  padding: 28px;
}

.detail-page .detail-product-title {
  margin: 0 0 12px;
  color: var(--comper-text) !important;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.detail-page .detail-product-price {
  margin-bottom: 20px;
  color: #fb7185;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
}

.detail-page .detail-buy-button {
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  background: linear-gradient(135deg, #14b8a6, #10b981);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.detail-page .detail-buy-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, .3);
}

.detail-page .detail-seller-card,
.detail-page .detail-desc-card {
  padding: 24px;
}

.detail-page .detail-seller-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--comper-border);
}

.detail-page .detail-seller-avatar {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(139, 92, 246, .24);
}

.detail-page .detail-seller-name {
  margin-bottom: 5px;
  color: var(--comper-text);
  font-size: 18px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-page .detail-copy-link-btn {
  padding: 4px 12px;
  color: var(--comper-green);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
  border: 1px solid var(--comper-green);
  border-radius: 6px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.detail-page .detail-copy-link-btn:hover {
  color: #07120f;
  background: var(--comper-green);
}

.detail-page .detail-seller-info-row {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
}

.detail-page .detail-seller-info-label {
  width: 90px;
  flex: 0 0 90px;
  color: var(--comper-muted);
}

.detail-page .detail-seller-info-value {
  min-width: 0;
  flex: 1;
  color: #cfcae2;
  overflow-wrap: anywhere;
}

.detail-page .detail-seller-info-value.green {
  color: var(--comper-green);
}

.detail-page .detail-desc-title {
  margin-bottom: 16px;
  padding-bottom: 12px;
  color: var(--comper-text);
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--comper-border);
}

.detail-page .detail-desc-content {
  color: #c1bcd4;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .detail-page .detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-page .detail-side-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .detail-page {
    padding: 26px 0 46px;
  }

  .detail-page .detail-header-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 17px;
  }

  .detail-page .detail-game-name,
  .detail-page .detail-header-price {
    font-size: 18px;
  }

  .detail-page .detail-gallery-card,
  .detail-page .detail-product-info,
  .detail-page .detail-seller-card,
  .detail-page .detail-desc-card {
    padding: 16px;
    border-radius: 14px;
  }

  .detail-page .mySwiper2 {
    height: 380px;
  }

  .detail-page .mySwiper {
    height: 72px;
    margin-top: 10px;
  }

  .detail-page .detail-product-title {
    font-size: 20px;
  }

  .detail-page .detail-product-price {
    font-size: 26px;
  }

  .detail-page .detail-side-col {
    display: flex;
  }

  .detail-page .detail-seller-info-label {
    width: 82px;
    flex-basis: 82px;
  }
}


/* ===== 阳光活力主题覆盖层 v3（含购买页/出品表单/待售列表）===== */
/* ============================================================
   COMPER — Sunny / 阳光活力主题覆盖层
   在 comper-dark.css 之后加载即可切换到明亮暖橙主题。
   不改动原样式文件，纯覆盖层，可随时移除回退。
   ============================================================ */

:root {
  --comper-bg: #fff8ef;
  --comper-bg-soft: #fffdf8;
  --comper-panel: #ffffff;
  --comper-panel-2: #fff3e0;
  --comper-border: #ffe3bc;
  --comper-border-soft: rgba(255, 138, 0, .18);
  --comper-text: #3d3125;
  --comper-muted: #8a7b66;
  --comper-purple: #ff8a00;
  --comper-cyan: #ff7a00;
  --comper-green: #16a34a;
  --comper-danger: #ef4444;
  --comper-gradient: linear-gradient(135deg, #ff8a00 0%, #ffb800 48%, #ff5e3a 100%);
  --comper-shadow: 0 18px 55px rgba(255, 138, 0, .14);
}

html {
  background: var(--comper-bg);
}

body {
  color: var(--comper-text);
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 180, 60, .22), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(255, 214, 102, .18), transparent 28%),
    linear-gradient(rgba(255, 138, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, .05) 1px, transparent 1px),
    var(--comper-bg);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
}

/* ---------- 侧边栏 ---------- */
.comper-sidebar {
  color: var(--comper-text);
  background: rgba(255, 253, 248, .98);
  border-right: 1px solid var(--comper-border);
  box-shadow: 12px 0 45px rgba(255, 138, 0, .08);
}

.comper-brand {
  border-bottom: 1px solid var(--comper-border);
}

.comper-brand-icon {
  color: #fff;
  background: var(--comper-gradient);
  box-shadow: 0 8px 22px rgba(255, 122, 0, .32);
}

.comper-brand-name {
  color: #ff7a00;
}

.comper-brand-sub {
  color: #b39b72;
}

.comper-nav-label {
  color: #c2a06a;
}

.comper-nav-link {
  color: #6b5d49;
}

.comper-nav-link i {
  color: #d9a85e;
}

.comper-nav-link:hover,
.comper-nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 138, 0, .9), rgba(255, 94, 58, .85));
  border-color: rgba(255, 255, 255, .35);
  box-shadow: 0 10px 28px rgba(255, 122, 0, .3);
}

.comper-sidebar-bottom {
  border-top: 1px solid var(--comper-border);
}

.comper-language a {
  color: var(--comper-muted);
  border: 1px solid var(--comper-border);
}

.comper-language a:hover {
  color: #ff7a00;
  border-color: var(--comper-purple);
}

.comper-account-button {
  color: #fff;
  background: var(--comper-gradient);
  box-shadow: 0 8px 22px rgba(255, 122, 0, .28);
}

/* ---------- 移动端顶栏 ---------- */
.comper-mobile-header {
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid var(--comper-border);
  backdrop-filter: blur(12px);
}

.comper-mobile-brand {
  color: #3d3125;
}

.comper-mobile-brand .comper-brand-icon {
  color: #fff;
}

.comper-menu-toggle {
  color: #ff7a00;
  background: var(--comper-panel);
  border: 1px solid var(--comper-border);
}

.comper-sidebar-overlay {
  background: rgba(90, 60, 20, .5);
}

/* ---------- 顶部通知栏 ---------- */
.comper-notice-bar {
  color: #6b5d49;
  background: rgba(255, 246, 233, .95);
  border-bottom: 1px solid var(--comper-border);
}

.comper-notice-bar i {
  color: var(--comper-cyan);
}

.comper-top-language > span:first-of-type {
  color: #a08a6a;
}

.comper-top-language a,
.comper-top-action {
  color: #6b5d49;
}

.comper-top-language a:hover,
.comper-top-action:hover {
  color: #ff7a00;
}

.comper-top-separator {
  color: #d8c3a0;
}

/* ---------- 主 Hero ---------- */
.comper-home-hero {
  background: #fffbf3;
  border: 1px solid var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.comper-home-hero:before {
  background-image:
    linear-gradient(rgba(255, 138, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.comper-home-hero__shade {
  background:
    linear-gradient(90deg, #fffbf3 0%, rgba(255, 251, 243, .96) 37%, rgba(255, 251, 243, .7) 56%, rgba(255, 251, 243, .08) 100%),
    linear-gradient(0deg, rgba(255, 214, 102, .12), transparent 45%);
}

.comper-home-hero__badge {
  color: #ff7a00;
  background: rgba(255, 138, 0, .12);
  border: 1px solid rgba(255, 138, 0, .32);
}

.comper-home-hero h1 {
  color: #3d3125 !important;
}

.comper-home-hero h1 span {
  background: linear-gradient(135deg, #ff8a00 0%, #ffb800 50%, #ff5e3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.comper-home-hero__content > p {
  color: #8a7b66;
}

.comper-home-hero__buy {
  background: var(--comper-gradient);
  border: 0;
  box-shadow: 0 8px 25px rgba(255, 122, 0, .32);
}

.comper-home-hero__sell {
  background: var(--comper-gradient);
  border: 0;
  box-shadow: 0 8px 25px rgba(255, 122, 0, .32);
}

.comper-home-hero__stats {
  border-top: 1px solid var(--comper-border);
}

.comper-home-hero__stats strong {
  color: #ff7a00;
}

.comper-home-hero__stats span {
  color: #b39b72;
}

/* ---------- 排名卡片 ---------- */
.ranking-card-v2 {
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.ranking-card-v2:before {
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, .5), rgba(255, 184, 0, .6), transparent);
}

.ranking-title-v2 {
  color: var(--comper-text);
}

.ranking-title-v2 .icon-wrap {
  color: #ff7a00;
  background: linear-gradient(135deg, rgba(255, 138, 0, .18), rgba(255, 184, 0, .12));
}

.ranking-period-v2 {
  color: #ff7a00 !important;
  background: rgba(255, 138, 0, .1);
  border: 1px solid rgba(255, 138, 0, .22);
}

.ranking-item-v2:hover {
  background: rgba(255, 180, 60, .07);
}

.ranking-item-v2.top1 {
  background: linear-gradient(135deg, rgba(255, 184, 0, .12), transparent);
  border-color: rgba(255, 184, 0, .22);
}

.ranking-item-v2.top2 {
  background: linear-gradient(135deg, rgba(196, 181, 153, .08), transparent);
  border-color: rgba(196, 181, 153, .18);
}

.ranking-item-v2.top3 {
  background: linear-gradient(135deg, rgba(255, 122, 0, .08), transparent);
  border-color: rgba(255, 122, 0, .18);
}

.ranking-medal-v2.top1 {
  color: #fff !important;
  background: linear-gradient(135deg, #ffb800, #ff8a00);
  box-shadow: 0 2px 10px rgba(255, 170, 0, .42);
}

.ranking-medal-v2.top2 {
  color: #fff !important;
  background: linear-gradient(135deg, #e8e0d2, #c4b599);
}

.ranking-medal-v2.top3 {
  color: #fff !important;
  background: linear-gradient(135deg, #ff9f43, #ff7a00);
}

.ranking-medal-v2.normal {
  color: #8a7b66 !important;
  background: #fff8ef;
  border: 1px solid var(--comper-border);
}

.ranking-name-v2 {
  color: var(--comper-text) !important;
}

.ranking-price-v2 {
  color: #ff7a00 !important;
}

.ranking-thumb-v2:after {
  border-color: rgba(255, 138, 0, .18);
}

/* ---------- 分区标题 ---------- */
.comper-section-header h2 {
  color: var(--comper-text) !important;
}

.comper-section-header h2:before {
  background: var(--comper-gradient);
}

.comper-section-header p {
  color: #a08a6a;
}

.comper-section-more {
  color: #ff7a00;
}

.comper-section-more:hover {
  color: #ff5e3a;
}

/* ---------- 商品卡片 ---------- */
.comper-home-product-card {
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--comper-border);
  box-shadow: 0 13px 34px rgba(255, 138, 0, .1);
}

.comper-home-product-card:hover {
  border-color: rgba(255, 138, 0, .45);
  box-shadow: 0 18px 42px rgba(255, 138, 0, .16);
}

.comper-home-product-image {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 184, 0, .18), transparent 42%),
    #fff8ef;
}

.comper-home-product-badge.sold {
  background: rgba(239, 68, 68, .9);
}

.comper-home-product-badge.new {
  background: rgba(22, 163, 74, .9);
}

.comper-home-product-body h3 {
  color: var(--comper-text) !important;
}

.comper-home-product-game {
  color: #a08a6a;
}

.comper-home-product-game i {
  color: #ff8a00;
}

.comper-home-product-price {
  color: #ff7a00;
}

.comper-home-product-buy {
  color: #fff !important;
  background: var(--comper-gradient);
  box-shadow: 0 6px 16px rgba(255, 122, 0, .24);
}

.comper-home-product-buy.is-disabled {
  color: #b5a588 !important;
  background: #f5efe4;
}

.comper-home-product-detail {
  color: #6b5d49;
  background: rgba(255, 138, 0, .05);
  border: 1px solid var(--comper-border);
}

.comper-home-product-detail:hover {
  color: #ff7a00;
  border-color: rgba(255, 138, 0, .5);
}

/* ---------- 公告卡片 ---------- */
.comper-notice-card {
  background:
    linear-gradient(135deg, rgba(255, 138, 0, .05), rgba(255, 184, 0, .03)),
    rgba(255, 255, 255, .97);
  border: 1px solid var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.comper-notice-card:before {
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, .6), rgba(255, 184, 0, .55), transparent);
}

.comper-notice-card__title > span {
  color: #ff7a00;
  background: linear-gradient(135deg, rgba(255, 138, 0, .16), rgba(255, 184, 0, .12));
  border: 1px solid rgba(255, 138, 0, .22);
}

.comper-notice-card__title h2 {
  color: var(--comper-text) !important;
}

.comper-notice-card__title p {
  color: #a08a6a;
}

.comper-notice-card__more {
  color: #ff7a00;
}

.comper-notice-card__more:hover {
  color: #ff5e3a;
}

.comper-notice-item {
  background: rgba(255, 250, 240, .7);
  border: 1px solid rgba(255, 138, 0, .14);
}

.comper-notice-item:hover {
  background: rgba(255, 138, 0, .06);
  border-color: rgba(255, 138, 0, .34);
}

.comper-notice-item__badge {
  color: #ff7a00 !important;
  background: rgba(255, 138, 0, .1);
  border: 1px solid rgba(255, 138, 0, .22);
}

.comper-notice-item__body strong {
  color: #4a3d2e;
}

.comper-notice-item__body > span {
  color: #a08a6a;
}

.comper-notice-item > i {
  color: #c9b088;
}

.comper-notice-empty {
  color: #a08a6a;
  border: 1px dashed var(--comper-border);
}

.comper-notice-question strong {
  color: #4a3d2e;
}

.comper-notice-question > i {
  color: #b39b72;
}

.comper-notice-item.is-open {
  background: rgba(255, 138, 0, .06);
  border-color: rgba(255, 138, 0, .32);
}

.comper-notice-item.is-open .comper-notice-question > i {
  color: #ff8a00;
}

.comper-notice-answer p {
  color: #8a7b66;
}

.comper-notice-answer a {
  color: #ff7a00;
}

/* ---------- 通用组件（表单/面板/按钮等） ---------- */
h1, h2, h3, h4, h5, h6,
.sec-title h2,
.widget-title h3,
.widget-title h4,
.widget-title h5,
.title-box h2,
.title-box h3 {
  color: var(--comper-text) !important;
}

.sidebar-widget,
.inner-box.default-form,
.property-details-content,
.content-widget,
.author-widget,
.calculator-widget,
.ragister-section .inner-box,
.gallery-box > .inner-box,
.modal-content {
  color: var(--comper-text);
  background: rgba(255, 255, 255, .97) !important;
  border: 1px solid var(--comper-border) !important;
  box-shadow: var(--comper-shadow) !important;
}

input,
textarea,
select,
.form-control,
.nice-select {
  color: var(--comper-text) !important;
  background: #fffdf8 !important;
  border: 1px solid var(--comper-border) !important;
}

input::placeholder,
textarea::placeholder {
  color: #b39b72 !important;
}

.nice-select .list,
.dropdown-menu {
  color: var(--comper-text);
  background: #fffdf8 !important;
  border: 1px solid var(--comper-border) !important;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background: rgba(255, 138, 0, .14) !important;
}

.theme-btn.btn-one,
button.theme-btn,
input[type="submit"],
.message-btn button {
  color: #fff !important;
  background: var(--comper-gradient) !important;
  border: 0 !important;
  box-shadow: 0 9px 25px rgba(255, 122, 0, .28) !important;
}

/* ---------- 商品列表页（itemHtml） ---------- */
.comper-product-card {
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--comper-border);
  box-shadow: 0 13px 34px rgba(255, 138, 0, .1);
}

.comper-product-card:hover {
  border-color: rgba(255, 138, 0, .5);
  box-shadow: 0 18px 42px rgba(255, 138, 0, .16);
}

.comper-product-card__image {
  background: #fff8ef;
}

.comper-product-card__image:after {
  background: linear-gradient(transparent, rgba(255, 214, 102, .18));
}

.comper-product-card__game {
  color: #ff7a00;
}

.comper-product-card h3 a {
  color: var(--comper-text);
}

.comper-product-card__footer strong {
  color: #ff7a00;
}

.comper-product-card__link {
  color: #6b5d49;
}

.comper-product-card__link:hover {
  color: #ff7a00;
}

.comper-market-empty {
  background: rgba(255, 255, 255, .9);
  border: 1px dashed var(--comper-border);
}

.comper-market-empty > i {
  color: #ff8a00;
}

.comper-market-pagination a,
.comper-market-pagination span {
  color: #6b5d49;
  background: #fffdf8;
  border: 1px solid var(--comper-border);
}

/* ---------- 商品详情页（getItem） ---------- */
.detail-page .detail-header-bar {
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, .06), rgba(255, 184, 0, .03)),
    rgba(255, 255, 255, .97);
  border: 1px solid var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.detail-page .detail-header-price {
  color: #ff7a00;
}

.detail-page .detail-gallery-card,
.detail-page .detail-product-info,
.detail-page .detail-seller-card,
.detail-page .detail-desc-card {
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, .05), rgba(255, 184, 0, .03)),
    rgba(255, 255, 255, .97);
  border: 1px solid var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.detail-page .mySwiper2 {
  background: #fff8ef;
  border: 1px solid var(--comper-border);
}

.detail-page .swiper-slide {
  background: #fff3e0;
}

.detail-page .swiper-button-next,
.detail-page .swiper-button-prev {
  color: #fff;
  background: rgba(255, 138, 0, .85);
  border: 0;
  box-shadow: 0 6px 16px rgba(255, 122, 0, .3);
}

.detail-page .detail-product-title {
  color: var(--comper-text) !important;
}

.detail-page .detail-product-price {
  color: #ff7a00;
}

.detail-page .detail-buy-button {
  color: #fff;
  background: var(--comper-gradient);
  border: 0;
  box-shadow: 0 10px 25px rgba(255, 122, 0, .3);
}

.detail-page .detail-buy-button:hover {
  box-shadow: 0 14px 30px rgba(255, 122, 0, .36);
}

.detail-page .detail-seller-header {
  border-bottom: 1px solid var(--comper-border);
}

.detail-page .detail-seller-avatar {
  color: #fff;
  background: var(--comper-gradient);
  box-shadow: 0 8px 20px rgba(255, 122, 0, .28);
}

.detail-page .detail-seller-name {
  color: var(--comper-text);
}

.detail-page .detail-copy-link-btn {
  color: #ff7a00;
  border: 1px solid rgba(255, 138, 0, .55);
}

.detail-page .detail-copy-link-btn:hover {
  color: #fff;
  background: #ff7a00;
}

.detail-page .detail-seller-info-label {
  color: #a08a6a;
}

.detail-page .detail-seller-info-value {
  color: #4a3d2e;
}

.detail-page .detail-desc-title {
  color: var(--comper-text);
  border-bottom: 1px solid var(--comper-border);
}

.detail-page .detail-desc-content {
  color: #6b5d49;
}

/* ---------- 个人中心（myprofile） ---------- */
.myprofile-section .sidebar-side .sidebar-widget,
.myprofile-section .tabs-content .sidebar-widget {
  background: rgba(255, 255, 255, .97) !important;
  border-color: var(--comper-border) !important;
}

.myprofile-section .sidebar-side .widget-title label {
  color: #6b5d49 !important;
}

.myprofile-section .comper-account-nav-button {
  color: #6b5d49 !important;
}

.myprofile-section .comper-account-nav-arrow {
  color: #b39b72 !important;
}

.myprofile-section .sidebar-side .category-list li:hover .comper-account-nav-button,
.myprofile-section .sidebar-side .category-list li.active-btn .comper-account-nav-button,
.myprofile-section .sidebar-side .category-list li:hover .comper-account-nav-arrow,
.myprofile-section .sidebar-side .category-list li.active-btn .comper-account-nav-arrow {
  color: #ff7a00 !important;
}

.myprofile-section .comper-account-nav-button.is-logout {
  color: #ef4444 !important;
}

.myprofile-section .nice-select {
  background: #fffdf8 !important;
}

.myprofile-section .comper-id-upload-card,
.myprofile-section .comper-id-upload-preview,
.myprofile-section .tabs-content .sidebar-widget .upload-content {
  background: #fff8ef !important;
}

.myprofile-section #showcashlist > div {
  background: #fffdf8 !important;
}

.myprofile-section #productInfo .field input {
  background: #fffdf8 !important;
}

.myprofile-section #productInfo .upload-content .content-img-list-item {
  background: #fff8ef !important;
}

/* ---------- 购买/市场页（itemHtml） ---------- */
.comper-market-hero:before {
  background:
    linear-gradient(135deg, rgba(255, 138, 0, .1), transparent 42%),
    radial-gradient(circle at 78% 35%, rgba(255, 184, 0, .16), transparent 28%);
}

.comper-market-hero__glow {
  background: rgba(255, 138, 0, .14);
}

.comper-market-hero__content {
  color: var(--comper-text);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, .1), rgba(255, 184, 0, .05)),
    rgba(255, 255, 255, .97);
  border-color: var(--comper-border);
  box-shadow: var(--comper-shadow);
}

.comper-market-hero h1 {
  color: #3d3125 !important;
}

.comper-market-hero__content > p {
  color: #8a7b66;
}

.comper-market-search label {
  color: #6b5d49 !important;
}

.comper-market-search__input > i {
  color: #ff8a00;
}

.comper-market-search__input input {
  color: var(--comper-text) !important;
  background: #fffdf8 !important;
  border: 1px solid var(--comper-border) !important;
}

.comper-market-search__button {
  box-shadow: 0 10px 28px rgba(255, 122, 0, .3);
}

.comper-market-sell-button {
  color: #ff7a00;
  background: rgba(255, 138, 0, .12);
  border-color: rgba(255, 138, 0, .5);
  box-shadow: none;
}

.comper-market-sell-button:hover {
  color: #fff;
  background: var(--comper-gradient);
}

.comper-market-toolbar h2 {
  color: var(--comper-text) !important;
}

.comper-market-toolbar__label {
  color: #ff7a00;
}

/* ---------- 出品表单页（addCommodityHtml / 个人中心表单） ---------- */
.myprofile-section .gallery-box > .inner-box,
.myprofile-section .tabs-content > .tab > .inner-box {
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, .05), rgba(255, 184, 0, .03)),
    rgba(255, 255, 255, .97) !important;
  border-color: var(--comper-border) !important;
  box-shadow: var(--comper-shadow) !important;
}

.myprofile-section .field-input label {
  color: #6b5d49 !important;
}

.myprofile-section input[type="text"],
.myprofile-section input[type="email"],
.myprofile-section input[type="tel"],
.myprofile-section input[type="number"],
.myprofile-section input[type="password"],
.myprofile-section textarea {
  color: var(--comper-text) !important;
  background: #fffdf8 !important;
  border-color: var(--comper-border) !important;
}

.myprofile-section input:focus,
.myprofile-section textarea:focus,
.myprofile-section .nice-select.open {
  border-color: rgba(255, 138, 0, .6) !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, .1) !important;
}

.myprofile-section #showitemlist .post {
  color: var(--comper-text);
  background: rgba(255, 255, 255, .92) !important;
  border-color: var(--comper-border) !important;
}

.myprofile-section #showitemlist .post h5 {
  color: var(--comper-text) !important;
}

.myprofile-section #showitemlist .post > span:nth-of-type(2) {
  color: #ff7a00 !important;
}

.myprofile-section #productInfo .upload-content {
  color: var(--comper-text);
  background:
    linear-gradient(145deg, rgba(255, 138, 0, .06), rgba(255, 184, 0, .03)),
    rgba(255, 255, 255, .97) !important;
  border-color: rgba(255, 138, 0, .4) !important;
}

.myprofile-section #productInfo .upload-content > span {
  color: #8a7b66;
}

.myprofile-section #productInfo .upload-content .file,
.myprofile-section #productInfo .upload-content .content-img-list-item {
  color: #8a7b66;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 138, 0, .12), transparent 45%),
    #fff8ef !important;
  border-color: rgba(255, 138, 0, .45) !important;
}

.myprofile-section #productInfo .upload-content .file:hover {
  color: #ff7a00;
  background: rgba(255, 138, 0, .06) !important;
  border-color: #ff7a00 !important;
}

.myprofile-section #productInfo .upload-content .content-img .gcl {
  color: #b39b72;
}

.myprofile-section #productInfo .upload-content .file:hover .gcl {
  color: #ff7a00;
}

.myprofile-section .comper-id-upload-placeholder i {
  color: #ff8a00;
}

.myprofile-section .comper-id-upload-placeholder span {
  color: #a08a6a;
}

.myprofile-section .comper-id-upload-card,
.myprofile-section .comper-id-upload-preview {
  color: var(--comper-text);
}
