/*
Theme Name: Modown GO Child
Theme URI: https://gan.cool/
Description: Modown 10.0 的 GO 子主题。统一登录、VIP 与前台个人中心为黑白灰风格，不修改 Erphpdown 支付逻辑。
Author: GO
Author URI: https://gan.cool/
Template: modown
Version: 1.3.7
Text Domain: modown-go-child
*/

/*
 * Unified GO header
 *
 * The child header replaces Modown's default white header at template level.
 * These names are intentionally isolated from Modown's generic .header/.nav
 * selectors and from the full-page GO templates.
 */
.go-site-header,
.go-site-header * {
  box-sizing: border-box;
}

.go-site-header {
  --go-header-shell: min(1180px, calc(100vw - 48px));
  --go-header-text: #f5f5f5;
  --go-header-muted: #96999e;
  position: fixed;
  inset: 0 0 auto;
  z-index: 10003;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 9, 10, 0.9);
  color: var(--go-header-text);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.go-site-header a,
.go-site-header a:hover {
  text-decoration: none;
}

.go-site-shell {
  width: var(--go-header-shell);
  margin-inline: auto;
}

.go-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.go-site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--go-header-text) !important;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.go-site-brand-mark {
  position: relative;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.go-site-brand-mark::before,
.go-site-brand-mark::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: #fff;
  transform: skew(-15deg);
}

.go-site-brand-mark::before {
  left: 7px;
}

.go-site-brand-mark::after {
  left: 15px;
  opacity: 0.5;
}

.go-site-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 28px;
  color: var(--go-header-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.go-site-links a {
  color: inherit !important;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.go-site-links a:hover,
.go-site-links a[aria-current="page"] {
  color: #fff !important;
}

.go-site-account {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #e9e9e9 !important;
}

.go-site-avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}

.go-site-account-name {
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.go-site-purchase {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #e9e9e9 !important;
}

.go-site-purchase:hover,
.go-site-purchase[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: #fff !important;
}

body.go-theme-header {
  margin-top: 64px !important;
}

body.admin-bar .go-site-header {
  top: 32px;
}

@media (max-width: 980px) {
  .go-site-links {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .go-site-header {
    --go-header-shell: calc(100vw - 24px);
    height: 58px;
  }

  body.go-theme-header {
    margin-top: 58px !important;
  }

  .go-site-nav,
  .go-site-links {
    gap: 10px;
  }

  .go-site-links {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .go-site-links::-webkit-scrollbar {
    display: none;
  }

  .go-site-purchase {
    padding: 0;
  }
}

@media (max-width: 782px) {
  body.admin-bar .go-site-header {
    top: 46px;
  }
}

@media (max-width: 420px) {
  .go-site-brand > span:last-child {
    display: none;
  }
}

/*
 * Design tokens
 * Only account and VIP pages inherit these values. The GO full-page templates
 * retain their own isolated stylesheet.
 */
.go-account-page,
.go-vip-page,
.go-auth-page {
  --go-bg: #070707;
  --go-panel: #101010;
  --go-panel-soft: #151515;
  --go-text: #f3f3f3;
  --go-muted: #8d8d8d;
  --go-line: rgba(255, 255, 255, 0.11);
  --go-line-strong: rgba(255, 255, 255, 0.24);
  --go-white: #f5f5f5;
  --go-black: #080808;
  --go-success: #57c785;
  --go-error: #ef6a6a;
  --go-radius: 14px;
  background: var(--go-bg) !important;
  color: var(--go-text);
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.go-account-page h1,
.go-account-page h2,
.go-account-page h3,
.go-account-page h4,
.go-account-page h5,
.go-account-page h6,
.go-account-page b,
.go-account-page strong,
.go-vip-page h1,
.go-vip-page h2,
.go-vip-page h3,
.go-vip-page h4,
.go-vip-page h5,
.go-vip-page h6,
.go-vip-page b,
.go-vip-page strong,
.go-auth-page h1,
.go-auth-page h2,
.go-auth-page h3,
.go-auth-page b,
.go-auth-page strong {
  font-weight: 400 !important;
}

.go-account-page a,
.go-vip-page a,
.go-auth-page a {
  color: inherit;
}

.go-account-page *:focus,
.go-vip-page *:focus,
.go-auth-page *:focus {
  outline: none !important;
}

/* Shared form controls */
.go-account-page input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.go-account-page textarea,
.go-account-page select,
.go-vip-page input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.go-vip-page textarea,
.go-vip-page select,
.go-auth-page input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.go-auth-page textarea,
.go-auth-page select {
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 13px !important;
  border: 1px solid var(--go-line) !important;
  border-radius: 10px !important;
  background: #0b0b0b !important;
  color: var(--go-text) !important;
  box-shadow: none !important;
  font: inherit;
}

.go-account-page textarea,
.go-vip-page textarea,
.go-auth-page textarea {
  min-height: 112px;
  resize: vertical;
}

.go-account-page input::placeholder,
.go-account-page textarea::placeholder,
.go-vip-page input::placeholder,
.go-vip-page textarea::placeholder,
.go-auth-page input::placeholder,
.go-auth-page textarea::placeholder {
  color: #696969 !important;
  opacity: 1;
}

.go-account-page input:focus,
.go-account-page textarea:focus,
.go-account-page select:focus,
.go-vip-page input:focus,
.go-vip-page textarea:focus,
.go-vip-page select:focus,
.go-auth-page input:focus,
.go-auth-page textarea:focus,
.go-auth-page select:focus {
  border-color: var(--go-line-strong) !important;
}

/* Account page shell */
.go-account-page .main,
.go-vip-page .main {
  min-height: calc(100vh - 120px);
  padding: 38px 0 64px !important;
  background: var(--go-bg) !important;
}

.go-account-page .container,
.go-vip-page .container {
  width: min(1180px, calc(100% - 40px));
}

.go-account-page .container-user {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.go-account-page .userside {
  position: sticky;
  top: 20px;
  flex: 0 0 224px;
  width: 224px !important;
  margin: 0 !important;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #0d0d0f;
  box-shadow: none !important;
}

.go-account-page .usertitle {
  padding: 22px 16px 18px !important;
  border-bottom: 1px solid var(--go-line);
  background: transparent !important;
  text-align: center;
}

.go-account-page .usertitle img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--go-line);
  border-radius: 50%;
}

.go-account-page .usertitle h2 {
  margin: 10px 0 0 !important;
  color: var(--go-text);
  font-size: 15px;
  line-height: 1.4;
}

.go-account-page .mobantu-check {
  margin-top: 12px;
}

.go-account-page .mobantu-check p {
  color: var(--go-muted);
  font-size: 12px;
}

.go-account-page .usercheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--go-line-strong);
  border-radius: 8px;
  background: transparent !important;
  color: var(--go-text) !important;
}

.go-account-page .usermenus {
  padding: 8px;
}

.go-account-page .usermenu,
.go-account-page .usermenu li {
  margin: 0;
  padding: 0;
  border: 0 !important;
}

.go-account-page .usermenu li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  margin: 2px 0;
  padding: 0 11px !important;
  border: 0 !important;
  border-radius: 9px;
  background: transparent !important;
  color: var(--go-muted) !important;
  font-size: 13px;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease;
}

.go-account-page .usermenu li a:hover {
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--go-text) !important;
}

.go-account-page .usermenu li.active a {
  background: var(--go-white) !important;
  color: var(--go-black) !important;
}

.go-account-page .usermenu li a i {
  width: 20px;
  margin-right: 8px;
  color: inherit !important;
  font-size: 15px;
  text-align: center;
}

.go-account-page .container-user > .content {
  float: none !important;
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.go-account-page .content-wrap,
.go-vip-page .content-wrap,
.go-vip-page .content {
  background: transparent !important;
  box-shadow: none !important;
}

.go-account-page .user-main {
  min-height: 520px;
  box-sizing: border-box;
  overflow-x: auto;
  padding: 30px !important;
  border: 0;
  border-radius: 12px;
  background: #0d0d0f !important;
  box-shadow: none !important;
}

.go-account-page .user-main > h1,
.go-account-page .user-main > h2,
.go-account-page .user-main > h3,
.go-account-page .charge-title,
.go-account-page .user-title {
  margin: 0 0 18px !important;
  color: var(--go-text) !important;
  font-size: 19px !important;
  line-height: 1.4;
}

.go-account-page .warning,
.go-account-page .container-user-warning .warning {
  margin-bottom: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(239, 106, 106, 0.35);
  border-radius: 10px;
  background: rgba(239, 106, 106, 0.08) !important;
  color: #ef9b9b !important;
}

/* Account summary */
.go-account-page .charge,
.go-account-page .charge.vip {
  color: var(--go-text);
}

.go-account-page .charge-header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 30px;
  padding: 18px 0 !important;
  border-width: 1px 0 !important;
  border-style: solid !important;
  border-color: var(--go-line) !important;
  background: transparent !important;
}

/* The parent theme's clearfix nodes must not participate in this grid. */
.go-account-page .charge-header::before,
.go-account-page .charge-header::after {
  display: none !important;
  content: none !important;
}

.go-account-page .charge-header .item {
  float: none !important;
  width: auto !important;
  min-height: 94px;
  box-sizing: border-box;
  padding: 8px 20px !important;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  color: var(--go-text);
  text-align: left;
}

.go-account-page .charge-header .item + .item {
  border-left: 1px solid var(--go-line) !important;
}

.go-account-page .charge-header .item b,
.go-account-page .charge-header .item .color {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--go-white) !important;
  font-size: 18px;
}

.go-account-page .charge-header .item p,
.go-account-page .charge-header .item .tips {
  margin: 0;
  color: var(--go-muted) !important;
  font-size: 12px;
}

/* Tables and empty states */
.go-account-page table,
.go-account-page .table {
  width: 100%;
  border: 1px solid var(--go-line) !important;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 11px;
  background: transparent !important;
  color: var(--go-text);
}

.go-account-page table th,
.go-account-page table td {
  padding: 11px 12px !important;
  border-width: 0 0 1px !important;
  border-color: var(--go-line) !important;
  background: transparent !important;
  color: inherit !important;
  font-weight: 400 !important;
  text-align: left;
  white-space: nowrap;
}

.go-account-page table th {
  color: var(--go-muted) !important;
  font-size: 12px;
}

.go-account-page table tr:last-child td {
  border-bottom: 0 !important;
}

.go-account-page .user-ordernone,
.go-account-page .no-content,
.go-account-page .empty {
  padding: 54px 20px !important;
  border: 1px dashed var(--go-line-strong);
  border-radius: 11px;
  background: transparent !important;
  color: var(--go-muted) !important;
  text-align: center;
}

/* Shared buttons on account and VIP pages */
.go-account-page .btn,
.go-account-page button,
.go-account-page input[type="submit"],
.go-vip-page .btn,
.go-vip-page button,
.go-vip-page input[type="submit"] {
  min-height: 40px;
  box-sizing: border-box;
  padding: 0 16px !important;
  border: 1px solid var(--go-white) !important;
  border-radius: 9px !important;
  background: var(--go-white) !important;
  background-image: none !important;
  color: var(--go-black) !important;
  box-shadow: none !important;
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 38px;
  text-shadow: none !important;
}

.go-account-page .btn:hover,
.go-account-page button:hover,
.go-account-page input[type="submit"]:hover,
.go-vip-page .btn:hover,
.go-vip-page button:hover,
.go-vip-page input[type="submit"]:hover {
  border-color: #d9d9d9 !important;
  background: #d9d9d9 !important;
  color: var(--go-black) !important;
}

.go-account-page .btn.disabled,
.go-account-page .btn[disabled],
.go-vip-page .btn.disabled,
.go-vip-page .btn[disabled] {
  border-color: var(--go-line) !important;
  background: #1b1b1b !important;
  color: #626262 !important;
  cursor: not-allowed;
}

/* VIP plan grid: used by the public VIP page and account?action=vip */
.go-account-page .vip-content,
.go-vip-page .vip-content {
  margin: 0 !important;
  color: var(--go-text);
  text-align: left !important;
}

.go-vip-page .single-content,
.go-vip-page .article-header,
.go-vip-page .article-content {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.go-vip-page .article-title,
.go-vip-page .vip-content > h2,
.go-account-page .vip-content > h2 {
  margin: 0 0 14px !important;
  color: var(--go-text) !important;
  font-size: clamp(44px, 6vw, 76px) !important;
  font-weight: 400 !important;
  line-height: 1.06;
  letter-spacing: -0.018em;
  word-spacing: 0.08em;
  text-align: left;
}

.go-vip-page .vip-desc,
.go-vip-page .vip-content .desc,
.go-account-page .vip-content .desc {
  max-width: 680px;
  margin: 0 0 68px !important;
  color: var(--go-muted) !important;
  font-size: 15px;
  letter-spacing: 0.012em;
  line-height: 1.75;
  text-align: left;
}

.go-account-page .page-vip-content,
.go-vip-page .page-vip-content {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100% !important;
  max-width: 1240px;
  margin: 0 auto !important;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.08);
}

/* Modown's clearfix pseudo-elements otherwise become two empty grid cells. */
.go-account-page .page-vip-content::before,
.go-account-page .page-vip-content::after,
.go-vip-page .page-vip-content::before,
.go-vip-page .page-vip-content::after {
  display: none !important;
  content: none !important;
}

.go-account-page .vip-item,
.go-vip-page .vip-item {
  position: relative;
  display: flex !important;
  flex-direction: column;
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 500px;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 34px 28px 30px !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--go-text) !important;
  text-align: left !important;
  transform: none !important;
}

.go-account-page .vip-item:hover,
.go-vip-page .vip-item:hover {
  transform: none !important;
}

.go-account-page .vip-item + .vip-item,
.go-vip-page .vip-item + .vip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.go-account-page .vip-item.item-5,
.go-vip-page .vip-item.item-5 {
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.go-account-page .vip-item::before,
.go-vip-page .vip-item::before {
  content: "公测优惠";
  position: absolute;
  top: 34px;
  right: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: #171719;
  color: #b6b8bd;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.go-account-page .vip-item.go-plan-recommended::after,
.go-vip-page .vip-item.go-plan-recommended::after {
  content: "推荐";
  position: absolute;
  top: 34px;
  right: 94px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #0a0a0b;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

/* Use an in-flow badge row so narrow plan columns never overlap the title. */
.go-account-page .vip-item::before,
.go-vip-page .vip-item::before,
.go-account-page .vip-item.go-plan-recommended::after,
.go-vip-page .vip-item.go-plan-recommended::after {
  display: none !important;
  content: none !important;
}

.go-plan-badges {
  display: flex;
  min-height: 22px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}

.go-plan-badge {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  box-sizing: border-box;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: #171719;
  color: #b6b8bd;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.go-plan-badge--recommended {
  border-color: #f1f1f1;
  background: #f1f1f1;
  color: #09090a;
}

.go-account-page .vip-item h6,
.go-vip-page .vip-item h6,
.go-account-page .vip-items .item .title,
.go-vip-page .vip-items .item .title {
  height: auto !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  background-image: none !important;
  color: var(--go-text) !important;
  font-size: 20px !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.go-account-page .vip-item .price,
.go-vip-page .vip-item .price {
  display: block;
  margin: 0 0 26px !important;
  color: var(--go-text) !important;
  font-size: 36px !important;
  line-height: 1.15;
  text-align: left !important;
}

.go-account-page .vip-item:not(.item-0) .price::after,
.go-vip-page .vip-item:not(.item-0) .price::after {
  content: "一次性买断";
  display: block;
  margin-top: 9px;
  color: var(--go-muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.go-account-page .vip-item .price small,
.go-vip-page .vip-item .price small {
  margin-left: 4px;
  color: var(--go-muted) !important;
  font-size: 12px !important;
}

.go-account-page .vip-item .border-decor,
.go-vip-page .vip-item .border-decor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 26px !important;
  padding: 15px 0 !important;
  border-width: 1px 0 !important;
  border-style: solid !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--go-muted) !important;
  text-align: left !important;
}

.go-account-page .vip-item .border-decor::before,
.go-vip-page .vip-item .border-decor::before {
  display: inline !important;
  content: "授权期限" !important;
  color: #696b70;
  font-size: 11px;
}

.go-account-page .vip-item .border-decor span,
.go-vip-page .vip-item .border-decor span {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--go-muted) !important;
}

.go-account-page .vip-item .border-decor::before,
.go-account-page .vip-item .border-decor::after,
.go-vip-page .vip-item .border-decor::before,
.go-vip-page .vip-item .border-decor::after {
  display: none !important;
}

.go-account-page .vip-item .border-decor::before,
.go-vip-page .vip-item .border-decor::before {
  display: inline !important;
}

.go-account-page .vip-item ul,
.go-vip-page .vip-item ul {
  flex: 1 1 auto;
  min-height: 160px;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: var(--go-muted) !important;
  list-style: none;
}

.go-account-page .vip-item li,
.go-vip-page .vip-item li {
  position: relative;
  margin: 11px 0;
  padding: 0 0 0 22px !important;
  border: 0 !important;
  color: #c7c9cd;
  font-size: 13px;
}

.go-account-page .vip-item li::before,
.go-vip-page .vip-item li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: #d7d9dc;
  color: #0a0a0b;
  font-size: 9px;
  line-height: 1;
}

.go-account-page .vip-item .btn,
.go-vip-page .vip-item .btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin: auto 0 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #f2f2f2 !important;
  color: #090909 !important;
}

.go-account-page .vip-item li::before,
.go-vip-page .vip-item li::before {
  content: "\2713" !important;
}

.go-account-page .vip-item.item-3 .btn,
.go-vip-page .vip-item.item-3 .btn {
  border: 0 !important;
  background: #f2f2f2 !important;
  color: #090909 !important;
}

/* Linear-inspired feature comparison below the buyout plans. */
.go-feature-comparison {
  width: 100%;
  max-width: 1240px;
  margin: 104px auto 24px;
  color: var(--go-text);
}

.go-account-page .go-feature-comparison {
  margin-top: 72px;
}

.go-feature-comparison__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  text-align: center;
}

.go-feature-comparison__eyebrow {
  margin: 0 0 12px !important;
  color: #777a80 !important;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center !important;
}

.go-feature-comparison h2 {
  margin: 0 0 12px !important;
  color: var(--go-text) !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  font-weight: 400 !important;
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-align: center !important;
}

.go-feature-comparison h2::before,
.go-feature-comparison h2::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

.go-feature-comparison__intro {
  margin: 0 !important;
  color: var(--go-muted) !important;
  font-size: 13px;
  line-height: 1.7;
  text-align: center !important;
}

.go-feature-comparison__scroll {
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.go-feature-comparison table {
  width: 100% !important;
  min-width: 720px;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse;
  background: transparent !important;
  box-shadow: none !important;
  table-layout: fixed;
}

.go-feature-comparison th,
.go-feature-comparison td {
  height: 54px;
  box-sizing: border-box;
  padding: 0 22px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075) !important;
  background: transparent !important;
  color: #c9cbd0 !important;
  font-size: 13px;
  font-weight: 400 !important;
  line-height: 1.4;
  text-align: center !important;
  vertical-align: middle !important;
}

.go-feature-comparison th:first-child,
.go-feature-comparison td:first-child {
  width: 46%;
  padding-left: 0 !important;
  color: #e5e6e8 !important;
  text-align: left !important;
}

.go-feature-comparison th + th,
.go-feature-comparison td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.055) !important;
}

.go-feature-comparison th:nth-child(4),
.go-feature-comparison td:nth-child(4) {
  background: rgba(255, 255, 255, 0.025) !important;
}

.go-feature-comparison tbody tr:last-child td {
  border-bottom: 0 !important;
}

.go-feature-comparison__recommended {
  display: inline-block;
  margin-left: 7px;
  padding: 3px 6px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #09090a;
  font-size: 9px;
  line-height: 1.2;
  vertical-align: 1px;
}

.go-feature-mark {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.go-trial-limit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -14px 0 24px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #696b70 !important;
  font-size: 11px;
  line-height: 1.5;
}

.go-trial-limit strong {
  color: #c8cacf;
  font-size: 11px;
  font-weight: 400;
}

.go-feature-mark--yes {
  background: #f0f1f2;
  color: #09090a;
}

.go-feature-mark--no {
  color: #5f6268;
  font-size: 15px;
  font-weight: 400;
}

.go-account-page .vip-tips-box,
.go-vip-page .vip-tips-box {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border: 0;
  border-radius: 999px;
  background: #202020 !important;
  color: var(--go-muted) !important;
  font-size: 10px;
}

.go-account-page .footer,
.go-vip-page .footer {
  display: none !important;
}

.go-account-page .vip-tips-box em,
.go-vip-page .vip-tips-box em {
  color: var(--go-text) !important;
  font-style: normal;
}

/* Erphpdown payment choice returned after clicking a VIP plan */
.go-account-page .erphpdown-type-desc,
.go-vip-page .erphpdown-type-desc {
  border-color: var(--go-line) !important;
  background: var(--go-panel) !important;
  color: var(--go-text) !important;
}

.go-account-page .erphpdown-type-payment,
.go-vip-page .erphpdown-type-payment {
  border-color: #ededed !important;
  background: #fff !important;
  color: #111 !important;
}

.go-account-page .erphpdown-type-link,
.go-vip-page .erphpdown-type-link {
  border: 1px solid #080808 !important;
  border-radius: 9px !important;
  background: #080808 !important;
  background-image: none !important;
  color: #fff !important;
  box-shadow: none !important;
}

.go-account-page .erphpdown-type-link:hover,
.go-vip-page .erphpdown-type-link:hover {
  border-color: #242424 !important;
  background: #242424 !important;
  color: #fff !important;
}

.go-account-page .erphpdown-type-link i,
.go-vip-page .erphpdown-type-link i {
  color: #fff !important;
}

.go-account-page .go-purchase-agreement,
.go-vip-page .go-purchase-agreement {
  margin: 10px 14px 14px;
  padding: 9px 10px;
  border: 1px solid #e5e5e5 !important;
  border-radius: 9px;
  background: #fff;
  color: #111;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.go-account-page .go-purchase-agreement.is-error,
.go-vip-page .go-purchase-agreement.is-error {
  border-color: #e9a2a2 !important;
  background: #fff7f7;
}

.go-account-page .go-agreement-label,
.go-vip-page .go-agreement-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #111;
  cursor: pointer;
  user-select: none;
}

.go-account-page .go-agreement-label > span,
.go-vip-page .go-agreement-label > span {
  white-space: nowrap;
}

.go-account-page .go-agreement-checkbox,
.go-vip-page .go-agreement-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 3px !important;
  border: 1px solid #222 !important;
  border-radius: 4px !important;
  background: #fff !important;
  background-clip: content-box !important;
  box-shadow: none !important;
  cursor: pointer;
}

.go-account-page .go-agreement-checkbox:checked,
.go-vip-page .go-agreement-checkbox:checked {
  background-color: #111 !important;
}

.go-account-page .go-agreement-label a,
.go-vip-page .go-agreement-label a {
  color: #080808 !important;
  text-decoration: none;
}

.go-account-page .go-agreement-label a:hover,
.go-vip-page .go-agreement-label a:hover {
  text-decoration: underline;
}

.go-account-page .go-agreement-error,
.go-vip-page .go-agreement-error {
  margin: 5px 0 0 23px;
  color: #c53f3f;
  font-size: 11px;
  line-height: 1.45;
}

.go-account-page .go-agreement-error[hidden],
.go-vip-page .go-agreement-error[hidden] {
  display: none !important;
}

/* Login/register/password page. The parent template is preserved; only style changes. */
.go-auth-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  box-sizing: border-box;
  padding: 28px 18px;
  background-image: radial-gradient(circle at 50% -10%, #242424 0, #0b0b0b 34%, #070707 62%) !important;
  background-attachment: fixed !important;
}

.go-auth-page .loginbox,
.go-auth-page .loginbox.has-left {
  display: block !important;
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  width: min(420px, calc(100vw - 36px)) !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--go-line) !important;
  border-radius: 16px !important;
  background: rgba(16, 16, 16, 0.96) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38) !important;
}

.go-auth-page .loginimage {
  display: none !important;
}

.go-auth-page .sign-wrap {
  float: none !important;
  width: auto !important;
  min-height: 0 !important;
  box-sizing: border-box;
  padding: 34px !important;
  background: transparent !important;
}

.go-auth-page .part {
  width: 100% !important;
  min-height: 0 !important;
}

.go-auth-page .part h2 {
  margin: 0 0 28px !important;
  text-align: center;
}

.go-auth-page .part h2 img {
  display: inline-block;
  width: auto;
  max-width: 140px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1);
}

.go-auth-page .loginform,
.go-auth-page .loginform p {
  margin: 0;
}

.go-auth-page .input-item {
  position: relative;
  margin-bottom: 11px !important;
}

.go-auth-page .input-item .input-control {
  width: 100% !important;
  height: 46px !important;
  padding-right: 42px !important;
}

.go-auth-page .input-item > i {
  right: 13px !important;
  left: auto !important;
  color: #626262 !important;
}

.go-auth-page .input-submit {
  margin-top: 15px !important;
}

.go-auth-page .input-submit .btn,
.go-auth-page .input-submit input[type="submit"] {
  width: 100% !important;
  height: 44px !important;
  padding: 0 16px !important;
  border: 1px solid var(--go-white) !important;
  border-radius: 10px !important;
  background: var(--go-white) !important;
  background-image: none !important;
  color: var(--go-black) !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 400 !important;
  text-shadow: none !important;
}

.go-auth-page .input-submit .btn:hover,
.go-auth-page .input-submit input[type="submit"]:hover {
  border-color: #d9d9d9 !important;
  background: #d9d9d9 !important;
}

.go-auth-page .safe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px !important;
  color: var(--go-muted) !important;
  font-size: 12px;
}

.go-auth-page .safe a:hover,
.go-auth-page .sign-notice a:hover {
  color: var(--go-white) !important;
}

.go-auth-page .sign-tips2:not(:empty),
.go-auth-page .regSuccess {
  margin: 11px 0 !important;
  padding: 9px 11px !important;
  border: 1px solid rgba(239, 106, 106, 0.32);
  border-radius: 9px;
  background: rgba(239, 106, 106, 0.08) !important;
  color: #ef9b9b !important;
  font-size: 12px;
}

.go-auth-page .sign-notice {
  margin-top: 18px !important;
  color: var(--go-muted) !important;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.go-auth-page .return-home {
  top: 20px !important;
  right: 20px !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid var(--go-line) !important;
  border-radius: 10px !important;
  background: #101010 !important;
  color: var(--go-text) !important;
  box-shadow: none !important;
  line-height: 38px !important;
}

.go-auth-page .captcha-clk,
.go-auth-page .captcha-clk2,
.go-auth-page .captcha-sms-clk,
.go-auth-page .invitation-link {
  right: 42px !important;
  color: var(--go-muted) !important;
  font-size: 11px !important;
}

.go-auth-page .form-policy {
  margin-top: 12px;
  color: var(--go-muted);
  font-size: 11px;
  line-height: 1.6;
}

/* Responsive behavior */
@media (max-width: 1100px) {
  .go-account-page .page-vip-content,
  .go-vip-page .page-vip-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .go-account-page .vip-item:nth-child(odd),
  .go-vip-page .vip-item:nth-child(odd) {
    border-left: 0 !important;
  }

  .go-account-page .vip-item:nth-child(n + 3),
  .go-vip-page .vip-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }
}

@media (max-width: 860px) {
  .go-account-page .container,
  .go-vip-page .container {
    width: min(100% - 24px, 1180px);
  }

  .go-account-page .container-user {
    display: block;
  }

  .go-account-page .userside {
    position: static;
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  .go-account-page .usertitle {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px !important;
    text-align: left;
  }

  .go-account-page .usertitle h2 {
    margin: 0 !important;
  }

  .go-account-page .mobantu-check {
    margin: 0 0 0 auto;
  }

  .go-account-page .usermenus {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .go-account-page .usermenu {
    display: flex;
    width: max-content;
  }

  .go-account-page .usermenu li a {
    padding: 0 13px !important;
    white-space: nowrap;
  }

  .go-account-page .charge-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .go-account-page .main,
  .go-vip-page .main {
    padding: 18px 0 42px !important;
  }

  .go-account-page .user-main {
    min-height: 420px;
    padding: 16px !important;
  }

  .go-account-page .page-vip-content,
  .go-vip-page .page-vip-content {
    grid-template-columns: 1fr;
  }

  .go-account-page .vip-item,
  .go-vip-page .vip-item {
    min-height: 0;
    padding: 28px 20px !important;
  }

  .go-account-page .vip-item + .vip-item,
  .go-vip-page .vip-item + .vip-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 0 !important;
  }

  .go-account-page .vip-item ul,
  .go-vip-page .vip-item ul {
    min-height: 0;
  }

  .go-auth-page .sign-wrap {
    padding: 26px 20px !important;
  }

  .go-auth-page .return-home {
    top: 12px !important;
    right: 12px !important;
  }
}
