    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%);
      color: #ffffff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .container {
      max-width: var(--bhost-site-max, 1720px);
      margin: 0 auto;
      padding: 0 var(--bhost-site-gutter, 36px);
    }

    .header {
      background:
        radial-gradient(ellipse 90% 140% at 50% -40%, rgba(108, 99, 255, 0.16) 0%, transparent 52%),
        radial-gradient(ellipse 50% 80% at 88% 0%, rgba(74, 120, 255, 0.1) 0%, transparent 50%),
        linear-gradient(
          180deg,
          rgba(30, 33, 54, 0.78) 0%,
          rgba(26, 31, 58, 0.65) 50%,
          rgba(20, 24, 45, 0.42) 100%
        );
      backdrop-filter: blur(20px) saturate(1.12);
      -webkit-backdrop-filter: blur(20px) saturate(1.12);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 1px 0 rgba(108, 99, 255, 0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header .nav-links {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
    }

.bhost-body--panel .header .nav-links {
  background: transparent;
  border: none;
  box-shadow: none;
}

    .inner {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 24px;
      padding: 16px 36px;
      flex-wrap: wrap;
    }

    .brand-2 {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
    }

    button.brand-2 {
      background: none;
      border: 0;
      padding: 0;
      cursor: pointer;
      font: inherit;
    }

    .brand-logo {
      width: auto;
      height: 48px;
      max-width: 140px;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
      flex: 1;
      justify-content: center;
      min-width: 0;
    }

    .nav-links a,
    .nav-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #a0a0b0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
      background: transparent;
      border: 0;
      padding: 0;
      cursor: pointer;
      font-family: inherit;
    }

    .nav-links a:hover,
    .nav-link-btn:hover {
      color: #6c63ff;
    }

    .nav-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      opacity: 0.85;
    }

    .nav-links a:hover .nav-icon,
    .nav-link-btn:hover .nav-icon {
      opacity: 1;
    }

    .support-panel {
      display: flex;
      gap: 20px;
      margin-left: auto;
      flex-shrink: 0;
      align-items: center;
    }

    .support-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #a0a0b0;
      text-decoration: none;
      transition: color 0.3s;
    }

    .support-item:hover {
      color: #6c63ff;
    }

    .support-icon {
      width: 20px;
      height: 20px;
    }

    .support-text {
      font-size: 14px;
    }

    .btn {
      background: linear-gradient(135deg, #6c63ff, #4a3fe0);
      color: white;
      border: none;
      padding: 10px 24px;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      font-weight: 500;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid #6c63ff;
    }

    .btn-outline:hover {
      background: rgba(108, 99, 255, 0.1);
    }

    .user-profile-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px 6px 8px;
      border-radius: 10px;
      background: rgba(108, 99, 255, 0.12);
      border: 1px solid rgba(108, 99, 255, 0.35);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      font-family: inherit;
    }

    button.user-profile-btn {
      appearance: none;
    }

    .user-profile-btn:hover {
      background: rgba(108, 99, 255, 0.2);
      border-color: rgba(108, 99, 255, 0.55);
    }

    .user-profile-btn:focus,
    .user-profile-btn:focus-visible {
      outline: none;
      box-shadow: none;
    }

    .user-profile-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .user-profile-name {
      max-width: 140px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero {
      display: block;
      padding: 80px 0 40px;
      max-width: 720px;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      background: linear-gradient(135deg, #fff, #6c63ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
    }

    .lead {
      font-size: 1.2rem;
      color: #a0a0b0;
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .stats {
      display: flex;
      gap: 48px;
      margin-top: 48px;
    }

    .stat {
      text-align: center;
    }

    .stat strong {
      font-size: 1rem;
      color: #a0a0b0;
      font-weight: normal;
      display: block;
      margin-bottom: 8px;
    }

    .stat-value {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
    }

    .stat .small {
      font-size: 2rem;
      font-weight: bold;
      color: #6c63ff;
      line-height: 1;
    }

    .stat-unit {
      font-size: 1rem;
      color: #6c63ff;
      font-weight: 500;
    }

    .hero-aside {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-aside h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
    }

    .prime {
      list-style: none;
    }

    .prime li {
      padding: 10px 0;
      padding-left: 24px;
      position: relative;
      color: #c0c0d0;
    }

    .prime li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #6c63ff;
      font-weight: bold;
    }

    .advantages {
      padding: 60px 0 20px;
    }

    .advantages h2,
    .services-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #fff 60%, #6c63ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-subtitle {
      text-align: center;
      color: #a0a0b0;
      margin-bottom: 48px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .advantage-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .advantage-card::before {
      content: '';
      position: absolute;
      top: -40%;
      right: -20%;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .advantage-card:hover {
      transform: translateY(-4px);
      border-color: rgba(108, 99, 255, 0.4);
      box-shadow: 0 12px 40px rgba(108, 99, 255, 0.12);
    }

    .advantage-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(108, 99, 255, 0.15);
      border: 1px solid rgba(108, 99, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: #6c63ff;
    }

    .advantage-icon svg {
      width: 22px;
      height: 22px;
    }

    .advantage-card h3 {
      font-size: 1.15rem;
      margin-bottom: 12px;
    }

    .advantage-card p {
      color: #a0a0b0;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .advantage-link {
      margin-top: auto;
      color: #6c63ff;
      background: transparent;
      border: 0;
      padding: 0;
      font-size: 0.9rem;
      text-align: left;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .advantage-link:hover {
      opacity: 0.8;
    }

    .services-section {
      padding: 60px 0;
    }

    .services-header {
      margin-bottom: 40px;
    }

    .services-title-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .services-title-row h2 {
      margin-bottom: 0;
    }

    .services-sparkle {
      color: #6c63ff;
      font-size: 1.2rem;
    }

    .services-controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      margin-bottom: 32px;
      overflow: visible;
    }

    .services-controls-filters {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .service-tabs,
    .location-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 6px;
      overflow: visible;
    }

    .nest-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 6px;
    }

    .nest-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: none;
      border-radius: 10px;
      background: transparent;
      color: #a0a0b0;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      white-space: nowrap;
    }

    .nest-tab.active {
      background: rgba(108, 99, 255, 0.18);
      color: #fff;
      border: 1px solid rgba(108, 99, 255, 0.3);
    }

    .service-tab,
    .location-tab {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: #a0a0b0;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      white-space: nowrap;
    }

    .service-tab.active,
    .location-tab.active {
      background: rgba(108, 99, 255, 0.2);
      color: #fff;
      border: 1px solid rgba(108, 99, 255, 0.35);
    }

    .service-tab.disabled {
      opacity: 0.55;
    }

    .service-tab .tab-icon {
      font-size: 1rem;
    }

    .coming-soon-tooltip {
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: rgba(10, 14, 39, 0.98);
      border: 1px solid rgba(108, 99, 255, 0.4);
      color: #fff;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 12px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      pointer-events: none;
      z-index: 10;
    }

    .coming-soon-badge {
      display: none !important;
    }

    .service-tab.disabled:not(:hover) {
      background: transparent;
      color: #a0a0b0;
    }

    .service-tab.disabled[aria-disabled="true"],
    .location-tab.empty[aria-disabled="true"] {
      pointer-events: auto;
      cursor: default;
    }

    .location-tab:not(.empty) .coming-soon-tooltip {
      display: none;
    }

    .service-tab.disabled:hover .coming-soon-tooltip,
    .location-tab.empty:hover .coming-soon-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .location-tab.empty {
      opacity: 0.55;
    }

    .coming-soon {
      min-height: 240px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px dashed rgba(108, 99, 255, 0.35);
      border-radius: 20px;
      color: #a0a0b0;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.02);
    }

    .coming-soon__icon {
      font-size: 2rem;
      line-height: 1;
      opacity: 0.8;
    }

    .coming-soon__text {
      font-size: 1.1rem;
      font-weight: 600;
      color: #c8c8d8;
      letter-spacing: 0.02em;
    }

    .location-flag {
      width: 20px;
      height: 14px;
      border-radius: 2px;
      object-fit: cover;
    }

    .location-panel {
      display: none;
    }

    .location-panel.active {
      display: block;
    }

    .tariffs-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .tariff-card {
      background: #1e2136;
      border-radius: 18px;
      padding: 20px 18px 16px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .tariff-card::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 110px;
      background:
        radial-gradient(ellipse 80% 100% at 20% 0%, rgba(108, 99, 255, 0.28) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 85% 10%, rgba(74, 120, 255, 0.15) 0%, transparent 65%);
      pointer-events: none;
    }

    .tariff-card:hover {
      transform: translateY(-2px);
      background: #232742;
      border-color: rgba(108, 99, 255, 0.28);
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      padding: 4px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      white-space: nowrap;
    }

    .tariff-header {
      position: relative;
      margin-bottom: 16px;
      z-index: 1;
      width: 100%;
    }

    .tariff-card__body {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      flex: 1 1 auto;
      text-align: left;
    }

    .tariff-card__body .tariff-header,
    .tariff-card__body .tariff-features,
    .tariff-card__body .price-block {
      width: 100%;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      align-self: stretch;
    }

    .tariff-card__body .tariff-badges,
    .tariff-card__body .tariff-title {
      align-self: flex-start;
      width: 100%;
    }

    .tariff-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tariff-title h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0;
      color: #f4f4f8;
      letter-spacing: -0.01em;
    }

    .country-flag {
      width: 22px;
      height: 16px;
      border-radius: 3px;
      object-fit: cover;
      border: none;
      outline: none;
      flex-shrink: 0;
      display: block;
    }

    .tariff-title .country-flag {
      width: 24px;
      height: 18px;
    }

    .price-block {
      margin-top: auto;
      margin-bottom: 16px;
      padding-top: 4px;
      padding-left: 0;
      padding-right: 0;
      z-index: 1;
      position: relative;
      width: 100%;
      text-align: left;
    }

    .price-amount {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .price-original {
      font-size: 0.95rem;
      color: #8b8fa8;
      text-decoration: line-through;
      margin-bottom: 4px;
    }

    .tariff-discount-badge {
      position: relative;
      z-index: 1;
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
      margin-bottom: 0;
      padding: 6px 10px;
      border-radius: 10px;
    }

    .tariff-discount-badge--sale {
      background: rgba(239, 68, 68, 0.16);
      border: 1px solid rgba(239, 68, 68, 0.38);
    }

    .tariff-discount-badge--sale .tariff-discount-badge__label {
      color: #ffe0e0;
      text-shadow: 0 0 10px rgba(255, 120, 120, 0.55);
    }

    .tariff-badges {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 10px;
    }

    .tariff-discount-badge--partner {
      background: rgba(99, 102, 241, 0.16);
      border-color: rgba(99, 102, 241, 0.34);
    }

    .tariff-discount-badge--partner .tariff-discount-badge__label {
      color: #a5b4fc;
    }

    .tariff-discount-badge--referral {
      background: rgba(56, 189, 248, 0.14);
      border-color: rgba(56, 189, 248, 0.32);
    }

    .tariff-discount-badge--referral .tariff-discount-badge__label {
      color: #7dd3fc;
    }

    .tariff-discount-badge__label {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .price-period {
      margin-top: 6px;
      font-size: 0.8rem;
      color: #7d7d92;
      text-transform: lowercase;
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      margin-right: 8px;
      font-size: 1.2rem;
    }

    .new-price {
      color: #e53935;
      font-size: 1.2em;
    }

    .tariff-features {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      margin: 0 0 18px;
      padding: 0;
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: none;
      justify-self: stretch;
      box-sizing: border-box;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 8px 8px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 9px;
      min-height: 36px;
    }

    .feature-icon {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      color: rgba(255, 255, 255, 0.5);
    }

    .feature-value {
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.72rem;
      line-height: 1.2;
    }

    .tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .tech-badge {
      background: rgba(108, 99, 255, 0.2);
      border: 1px solid rgba(108, 99, 255, 0.4);
      border-radius: 20px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 500;
      color: #b0aaff;
    }

    .btn-tariff {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative;
      z-index: 1;
      border-radius: 12px;
      padding: 12px 14px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.92);
      font-size: 0.82rem;
      font-weight: 500;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }

    .btn-tariff:hover {
      background: rgba(108, 99, 255, 0.14);
      border-color: rgba(108, 99, 255, 0.4);
      color: #fff;
      transform: none;
      box-shadow: none;
    }

    .btn-tariff svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .join-us {
      margin-top: 48px;
      text-align: center;
      padding: 32px 24px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(108, 99, 255, 0.25);
    }

    .join-us h3 {
      font-size: 2rem;
      margin-bottom: 12px;
      background: linear-gradient(135deg, #fff 60%, #6c63ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .join-us p {
      color: #b7b7c8;
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (max-width: 1200px) {
      .tariffs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 992px) {
      .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .tariffs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .user-profile-name,
      .header .support-panel .bhost-user-card--compact .bhost-user-card__name {
        display: none;
      }
      .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .stats {
        justify-content: center;
      }

      .inner {
        justify-content: center;
      }

      .header .inner {
        justify-content: flex-start;
      }

      .nav-links {
        justify-content: center;
      }

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

      .services-controls {
        flex-direction: column;
        align-items: stretch;
      }

      .services-controls-filters {
        flex-direction: column;
        align-items: stretch;
      }

      .service-tabs,
      .location-tabs,
      .currency-toggle {
        justify-content: center;
      }

      .tariffs-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .tariff-features {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding-left: var(--bhost-site-gutter, 16px);
        padding-right: var(--bhost-site-gutter, 16px);
      }

      .brand-logo {
        width: 44px;
        height: 44px;
      }

      .bhost-body--panel .header .brand-logo,
      .bhost-body--public .header .brand-logo {
        width: auto;
        height: 44px;
        max-width: 130px;
      }

      .nav-links {
        gap: 12px;
      }

      .service-tab,
      .location-tab {
        padding: 8px 12px;
        font-size: 13px;
      }

      .join-us h3 {
        font-size: 1.5rem;
      }

      .stats {
        gap: 24px;
      }

      .stat .small {
        font-size: 1.5rem;
      }
    }

/* === Panel & auth pages === */
.bhost-body {
  --bhost-site-max: 1720px;
  --bhost-site-gutter: 36px;
}

.bhost-body--panel {
  --bhost-header-h: 96px;
  --bhost-footer-h: 148px;
  --bhost-panel-max: var(--bhost-site-max);
  --bhost-panel-gutter: var(--bhost-site-gutter);
  --bhost-layout-max: var(--bhost-site-max);
  --bhost-layout-gutter: var(--bhost-site-gutter);
}

.bhost-body--public,
.bhost-body--auth {
  --bhost-header-h: 96px;
  --bhost-content-max: var(--bhost-site-max);
  --bhost-content-gutter: var(--bhost-site-gutter);
  --bhost-layout-max: var(--bhost-site-max);
  --bhost-layout-gutter: var(--bhost-site-gutter);
}

.bhost-panel-viewport {
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
}

.bhost-panel-shell {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 100%;
}

.bhost-panel-sidebar {
  width: 252px;
  max-width: 252px;
  flex: 0 0 252px;
  flex-shrink: 0;
  background: transparent;
  border-right: none;
  overflow: visible;
  padding: 0;
  box-sizing: border-box;
  align-self: flex-start;
}

.bhost-panel-sidebar::-webkit-scrollbar,
.bhost-panel-sidebar *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.bhost-panel-main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 20px 0 28px;
  overflow-x: hidden;
  overflow-y: visible;
}

.bhost-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.3;
}

.header .bhost-breadcrumbs {
  flex: 1;
  justify-content: center;
  margin: 0 12px;
  min-width: 0;
  white-space: nowrap;
}

.bhost-breadcrumbs__link {
  border: 0;
  padding: 0;
  background: none;
  color: #9a9aaa;
  font: inherit;
  cursor: pointer;
  transition: color 0.15s ease;
}

.bhost-breadcrumbs__link:hover {
  color: #fff;
}

.bhost-breadcrumbs__sep {
  color: #6a6a7a;
  font-size: 0.82rem;
  line-height: 1;
}

.bhost-breadcrumbs__current {
  color: #fff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .bhost-body--panel .bhost-panel-sidebar {
    position: sticky;
    top: var(--bhost-header-h);
    align-self: flex-start;
  }
}

.bhost-balance {
  display: inline-flex;
  align-items: center;
  color: #c8c2ff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  font-family: inherit;
  cursor: pointer;
}

button.bhost-balance {
  appearance: none;
}

.bhost-balance:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.4);
  color: #fff;
}

.bhost-profile-trigger {
  display: inline-flex;
  align-items: stretch;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.28);
  overflow: hidden;
}

.bhost-profile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  padding: 0;
  border: 0;
  border-left: 1px solid rgba(108, 99, 255, 0.22);
  background: transparent;
  color: #c8c2ff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.bhost-profile-menu-toggle svg {
  width: 16px;
  height: 16px;
}

.bhost-profile-menu-toggle:hover {
  background: rgba(108, 99, 255, 0.18);
  color: #fff;
}

.user-profile-btn--home {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-decoration: none;
}

.user-profile-btn--home:hover {
  background: rgba(108, 99, 255, 0.12) !important;
}

.bhost-mobile-menu {
  display: none;
  background: transparent;
  border: 0;
  color: #a0a0b0;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.bhost-mobile-menu:hover {
  color: #6c63ff;
}

@media (max-width: 767px) {
  .bhost-body--panel,
  .bhost-body--public {
    --bhost-header-h: 84px;
  }

  .bhost-body--panel .header .inner.container,
  .bhost-body--public .header .inner.container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .bhost-body--panel .header .brand-2,
  .bhost-body--public .header .brand-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .bhost-body--panel .header .brand-logo,
  .bhost-body--public .header .brand-logo {
    width: auto;
    height: 44px;
    max-width: 130px;
  }

  .bhost-body--panel .header .bhost-mobile-menu,
  .bhost-body--public .header .bhost-mobile-menu {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bhost-body--panel .header .support-panel,
  .bhost-body--public .header .support-panel {
    position: relative;
    z-index: 1;
    margin-left: auto;
  }

  .bhost-mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, 0.55);
  }

  .bhost-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 120;
    width: min(280px, 86vw);
    overflow-y: auto;
    padding: calc(var(--bhost-header-h, 72px) + env(safe-area-inset-top, 0px) + 12px) 12px 24px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
  }

  .bhost-mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .bhost-mobile-nav__link {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    color: #c8c8d4;
    font-size: 16px;
    font-weight: 500;
    background: transparent;
    border: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .bhost-mobile-nav__link:hover {
    background: rgba(108, 99, 255, 0.12);
    color: #fff;
  }

  .bhost-main--menu-open {
    overflow: hidden;
  }

  .bhost-body--public .bhost-landing-page .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .bhost-mobile-nav,
  .bhost-mobile-nav-backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.bhost-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.bhost-user-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.bhost-user-icon svg {
  display: block;
}

.bhost-user-icon--sm {
  width: 28px;
  height: 28px;
}

.bhost-user-icon--sm svg {
  width: 16px;
  height: 16px;
}

.bhost-user-icon--md {
  width: 32px;
  height: 32px;
}

.bhost-user-icon--md svg {
  width: 22px;
  height: 22px;
}

.bhost-user-icon--ticket {
  width: 40px;
  height: 40px;
}

.bhost-user-icon--ticket svg {
  width: 22px;
  height: 22px;
}

.bhost-user-icon--lg {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bhost-user-icon--lg svg {
  width: 40px;
  height: 40px;
}

.bhost-user-card--with-balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.bhost-user-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bhost-user-card__avatar .bhost-user-icon {
  width: 30px;
  height: 30px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.bhost-user-card__avatar .bhost-user-icon svg {
  width: 28px;
  height: 28px;
}

.bhost-user-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.bhost-user-card--compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.bhost-user-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #fff;
}

.bhost-user-card__icon svg {
  width: 22px;
  height: 22px;
}

.bhost-user-card--compact .bhost-user-card__icon {
  width: 28px;
  height: 28px;
}

.bhost-user-card--compact .bhost-user-card__icon svg {
  width: 18px;
  height: 18px;
}

.bhost-user-card__profile,
.bhost-user-card__balance {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  text-align: left;
  appearance: none;
}

.bhost-user-card__profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bhost-user-card__icon--btn {
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  appearance: none;
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.bhost-user-card__icon--btn:hover {
  opacity: 0.85;
  color: #c8c2ff;
}

.bhost-user-card__balance {
  cursor: pointer;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.bhost-user-card__balance:hover {
  opacity: 0.9;
  color: #c8c2ff;
}

.bhost-user-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

.bhost-user-card__balance {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #a0a0b0;
}

.bhost-user-card__balance svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bhost-panel-sidebar .bhost-user-card--with-balance {
  margin: 0 0 14px;
  padding: 4px 16px 12px;
}

.bhost-panel-sidebar .bhost-user-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.bhost-panel-sidebar .bhost-user-card__avatar .bhost-user-icon svg {
  width: 30px;
  height: 30px;
}

.bhost-panel-sidebar .bhost-user-card__name {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.bhost-panel-sidebar .bhost-user-card__balance {
  color: #9ca3af;
  font-size: 0.9rem;
  padding-left: 0;
}

.bhost-panel-sidebar .bhost-user-card__balance svg {
  width: 15px;
  height: 15px;
}

.header .support-panel .bhost-user-card--compact {
  min-height: 38px;
  padding: 8px 14px 8px 10px;
  border-radius: 10px;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.35);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  box-sizing: border-box;
}

.header .support-panel .bhost-user-card--compact:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.55);
  opacity: 1;
}

.header .support-panel .bhost-user-card--compact .bhost-user-card__icon,
.header .support-panel .bhost-user-card--compact .bhost-user-icon {
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.header .support-panel .bhost-user-card--compact .bhost-user-card__icon svg,
.header .support-panel .bhost-user-card--compact .bhost-user-icon svg {
  width: 20px;
  height: 20px;
}

.header .support-panel .bhost-user-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 140px;
}

.bhost-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: rgba(10, 14, 39, 0.98);
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.bhost-dropdown li {
  list-style: none;
}

.bhost-dropdown a,
.bhost-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #c0c0d0;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.bhost-dropdown a:hover,
.bhost-dropdown button:hover {
  background: rgba(108, 99, 255, 0.15);
  color: #fff;
}

.bhost-auth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 40px 24px;
}

.bhost-auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.bhost-auth-card:has(.bhost-login) {
  max-width: 860px;
  padding: 0;
  overflow: hidden;
}

.bhost-login {
  display: flex;
  min-height: 420px;
}

.bhost-login__brand {
  display: none;
  flex: 0 0 42%;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.bhost-login__brand-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.bhost-login__panel {
  flex: 1;
  min-width: 0;
  padding: 32px 36px 28px;
}

.bhost-login__title {
  margin: 0 0 24px;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.bhost-login__alert {
  margin: 0 0 16px;
  font-size: 0.85rem;
  color: #a0a0b0;
}

.bhost-login__alert--error {
  color: #f08ba0;
}

.bhost-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bhost-auth-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.bhost-auth-actions__btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  box-shadow: none;
}

.bhost-auth-actions__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.bhost-auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  cursor: pointer;
}

.bhost-custom-checkbox {
  position: relative;
}

.bhost-custom-checkbox__input {
  position: absolute;
  inset: 0 auto auto 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.bhost-custom-checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  border: 1.5px solid #8b6cff;
  background: transparent;
  position: relative;
  pointer-events: none;
  transition: border-color 0.15s ease;
}

.bhost-custom-checkbox__input:focus-visible + .bhost-custom-checkbox__box {
  outline: 2px solid rgba(139, 108, 255, 0.45);
  outline-offset: 2px;
}

.bhost-custom-checkbox__input:checked + .bhost-custom-checkbox__box {
  border-color: #a78bfa;
}

.bhost-custom-checkbox__input:checked + .bhost-custom-checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bhost-auth-terms__text {
  color: #b0b0c0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.bhost-auth-terms__text .bhost-text-link {
  font-size: inherit;
  vertical-align: baseline;
}

.bhost-auth-actions__btn--discord {
  gap: 10px;
}

.bhost-auth-actions__discord-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #5865f2;
}

.bhost-login__links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.bhost-login__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #6a6a7a;
}

.bhost-login__legal .bhost-text-link {
  font-size: 0.78rem;
}

.bhost-turnstile,
.bhost-login__captcha {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .bhost-login__brand {
    display: flex;
  }
}

@media (max-width: 767px) {
  .bhost-auth-card:has(.bhost-login) {
    max-width: 440px;
  }

  .bhost-login__panel {
    padding: 28px 24px 24px;
  }
}

.bhost-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(108, 99, 255, 0.24) 0%, transparent 68%),
    radial-gradient(ellipse at 20% 20%, rgba(74, 120, 255, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  animation: bhost-landing-glow 12s ease-in-out infinite;
}

.bhost-body--panel::before,
.bhost-body--public::before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: min(480px, 72vh);
  animation: none;
  transform: none;
  opacity: 0.88;
  z-index: 0;
}

.bhost-body--panel::before {
  height: min(440px, 68vh);
  opacity: 0.85;
}

@keyframes bhost-landing-glow {
  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(0, 8px, 0) scale(1.04);
  }
}

.bhost-body--panel > .bhost-panel-viewport,
.bhost-body:not(.bhost-body--panel) > .bhost-main,
.bhost-body > .footer {
  position: relative;
  z-index: 1;
}

.bhost-main {
  flex: 1;
  position: relative;
}

/* Sidebar restyle inside panel */
.bhost-panel-sidebar .text-gray-700,
.bhost-panel-sidebar .text-gray-800,
.bhost-panel-sidebar .dark\:text-gray-200,
.bhost-panel-sidebar .dark\:text-gray-400 {
  color: #a0a0b0 !important;
}

.bhost-panel-sidebar a:hover,
.bhost-panel-sidebar .hover\:text-gray-800:hover,
.bhost-panel-sidebar .dark\:hover\:text-gray-200:hover {
  color: #fff !important;
}

.bhost-panel-sidebar .bg-primary-600,
.bhost-panel-sidebar .bg-primary-500 {
  background: #6c63ff !important;
}

.bhost-panel-sidebar .text-gray-800.dark\:text-gray-100,
.bhost-panel-sidebar a.text-gray-800 {
  color: #fff !important;
}

.bhost-panel-sidebar .bg-gray-50,
.bhost-panel-sidebar .dark\:bg-gray-900 {
  background: rgba(0, 0, 0, 0.25) !important;
}

/* Panel content — glass cards */
.bhost-panel-main .bg-white,
.bhost-panel-main .dark\:bg-gray-800 {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #e8e8f0 !important;
}

.bhost-panel-main .text-gray-700,
.bhost-panel-main .text-gray-800,
.bhost-panel-main .dark\:text-gray-200,
.bhost-panel-main .dark\:text-gray-100 {
  color: #f0f0f8 !important;
}

.bhost-panel-main .text-gray-500,
.bhost-panel-main .text-gray-600,
.bhost-panel-main .dark\:text-gray-300,
.bhost-panel-main .dark\:text-gray-400 {
  color: #a0a0b0 !important;
}

.bhost-panel-main .border-gray-200,
.bhost-panel-main .dark\:border-gray-700,
.bhost-panel-main .divide-gray-700 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.bhost-panel-main .bg-gray-50,
.bhost-panel-main .dark\:bg-gray-800 thead,
.bhost-panel-main thead.dark\:bg-gray-800 {
  background: rgba(0, 0, 0, 0.2) !important;
}

.bhost-panel-main .bg-primary-600,
.bhost-panel-main .bg-primary-500 {
  background: linear-gradient(135deg, #6c63ff, #4a3fe0) !important;
}

.bhost-panel-main .shadow-md,
.bhost-panel-main .shadow-sm,
.bhost-panel-main .shadow-xl {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.bhost-panel-main input:not([type="checkbox"]):not([type="radio"]):not(.bhost-finance-field__input):not(.bhost-input-group__input),
.bhost-panel-main select:not(.bhost-checkout-select),
.bhost-panel-main textarea {
  background: rgba(0, 0, 0, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

.bhost-panel-main .bhost-admin-product-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

.bhost-panel-main .bhost-admin-product-toggle:checked {
  background: #6c63ff;
  border-color: #6c63ff;
}

.bhost-panel-main .bhost-admin-product-toggle:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bhost-panel-main .bhost-admin-product-toggle:focus {
  outline: 2px solid rgba(108, 99, 255, 0.45);
  outline-offset: 2px;
}

.bhost-panel-main .container {
  max-width: none;
  width: 100%;
}

.bhost-body--panel > .footer .container,
.bhost-body--public > .footer .container {
  max-width: var(--bhost-layout-max);
  padding-left: var(--bhost-layout-gutter);
  padding-right: var(--bhost-layout-gutter);
}

.bhost-body--public > .bhost-main {
  width: 100%;
  max-width: var(--bhost-layout-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bhost-layout-gutter);
  padding-right: var(--bhost-layout-gutter);
  box-sizing: border-box;
}

.bhost-body--public .bhost-main > .container,
.bhost-body--public .bhost-main > .bhost-info-wrap {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Legal / info pages */
.bhost-info-wrap {
  flex: 1;
  padding: 40px 0 56px;
  width: 100%;
  max-width: var(--bhost-site-max, 1720px);
  margin: 0 auto;
  box-sizing: border-box;
}

.bhost-info-wrap .bg-white,
.bhost-info-wrap .dark\:bg-gray-800 {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #e0e0ec !important;
}

.bhost-legal-page {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.bhost-legal-page__header {
  margin-bottom: 24px;
}

.bhost-legal-page__title {
  margin: 0 0 10px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.bhost-legal-page__subtitle {
  margin: 0;
  color: #9a9aaa;
  font-size: 0.95rem;
  line-height: 1.55;
}

.bhost-legal-page__card {
  padding: 32px 36px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(ellipse at 85% 50%, rgba(108, 99, 255, 0.26) 0%, transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bhost-legal-page__card h3 {
  margin: 28px 0 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.bhost-legal-page__card h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.bhost-legal-page__card p {
  margin: 0 0 12px;
  color: #c8c8d8;
  font-size: 0.92rem;
  line-height: 1.65;
}

.bhost-legal-page__card a {
  color: #9a9aff;
  text-decoration: none;
}

.bhost-legal-page__card a:hover {
  color: #c8c2ff;
}

@media (max-width: 768px) {
  .bhost-info-wrap {
    padding: 24px 16px 40px;
  }

  .bhost-legal-page__card {
    padding: 24px 20px;
  }
}

.bhost-body .bhost-panel-viewport {
  flex: 1;
  width: 100%;
}

.bhost-body .bhost-panel-shell {
  width: 100%;
}

.bhost-panel-sidebar > div {
  padding-top: 12px;
  padding-bottom: 32px;
}

.bhost-panel-sidebar li.relative {
  list-style: none;
  padding: 12px 16px !important;
  margin: 4px 0;
  border-radius: 12px;
  transition: background 0.15s ease;
  overflow: visible;
}

.bhost-panel-sidebar li.relative.px-6.py-1 {
  padding: 18px 16px 8px !important;
  margin-top: 10px;
}

.bhost-panel-sidebar li.relative.px-6.py-1:not(.bhost-sidebar-admin) {
  background: transparent !important;
  pointer-events: none;
  cursor: default;
}

.bhost-panel-sidebar li.relative.px-6.py-1:not(.bhost-sidebar-admin):hover {
  background: transparent !important;
}

.bhost-panel-sidebar li.relative.px-6.py-3 {
  padding: 4px 10px !important;
}

.bhost-panel-sidebar li.relative:has(> span.absolute.inset-y-0.left-0),
.bhost-panel-sidebar li.relative:has(> .is-active) {
  background: transparent !important;
  border: none;
  box-shadow: none;
}

.bhost-panel-sidebar li.relative > span.absolute.inset-y-0.left-0 {
  display: none !important;
}

.bhost-panel-sidebar li.relative.px-6.py-3 > button.inline-flex,
.bhost-panel-sidebar li.relative.px-6.py-3 > a.inline-flex {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 12px;
  box-sizing: border-box;
}

.bhost-panel-sidebar li.relative:has(> span.absolute.inset-y-0.left-0) > button.inline-flex,
.bhost-panel-sidebar li.relative:has(> span.absolute.inset-y-0.left-0) > a.inline-flex,
.bhost-panel-sidebar li.relative:has(> span.absolute.inset-y-0.left-0) > button.inline-block,
.bhost-panel-sidebar li.relative:has(> .is-active) > button.inline-flex,
.bhost-panel-sidebar li.relative:has(> .is-active) > a.inline-flex {
  background: rgba(108, 99, 255, 0.16);
  border-color: rgba(108, 99, 255, 0.22);
  box-shadow: none;
  color: #fff !important;
}

.bhost-panel-sidebar button.inline-flex.is-active,
.bhost-panel-sidebar a.inline-flex.is-active {
  background: rgba(108, 99, 255, 0.16);
  border: 1px solid rgba(108, 99, 255, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: none;
  color: #fff !important;
}

.bhost-panel-sidebar li.relative.px-6.py-3:not(:has(> span.absolute.inset-y-0.left-0)):not(:has(> .is-active)):hover > button.inline-flex,
.bhost-panel-sidebar li.relative.px-6.py-3:not(:has(> span.absolute.inset-y-0.left-0)):not(:has(> .is-active)):hover > a.inline-flex {
  background: rgba(108, 99, 255, 0.16);
  border-color: rgba(108, 99, 255, 0.22);
  color: #fff !important;
}

.bhost-panel-sidebar button.inline-flex:focus,
.bhost-panel-sidebar button.inline-flex:focus-visible {
  outline: none;
}

.bhost-panel-sidebar li.relative:hover {
  background: transparent !important;
}

.bhost-panel-sidebar a.inline-flex {
  color: #a0a0b0 !important;
  gap: 12px;
  align-items: flex-start;
  overflow: visible;
}

.bhost-panel-sidebar a.inline-flex:hover,
.bhost-panel-sidebar li .text-gray-800 {
  color: #fff !important;
}

.bhost-panel-sidebar .font-bold.text-gray-800,
.bhost-panel-sidebar .text-sm.font-bold {
  color: #6c63ff !important;
  letter-spacing: 0.04em;
}

.bhost-buy-page .services-section {
  padding-top: 0;
}

.bhost-buy-page .services-header h2,
.bhost-buy-page .services-title-row h2,
.bhost-landing-page .services-header h2,
.bhost-landing-page .services-title-row h2 {
  font-size: 1.75rem;
  text-align: left;
}

.bhost-buy-page .services-title-row,
.bhost-landing-page .services-title-row {
  justify-content: flex-start;
}

.bhost-buy-page .section-subtitle,
.bhost-landing-page .services-section .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 40px;
}

.bhost-panel-main .bhost-buy-page {
  max-width: none;
  margin: 0;
}

/* Buy page: selectable tariff + inline checkout */
.tariff-card--selectable {
  cursor: pointer;
  user-select: none;
}

.tariff-card--selectable:focus-visible {
  outline: 2px solid rgba(108, 99, 255, 0.55);
  outline-offset: 2px;
}

.tariff-card__check {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  align-items: center;
  justify-content: center;
  background: rgba(10, 12, 24, 0.55);
  pointer-events: none;
}

.tariff-card__check svg {
  width: 52px;
  height: 52px;
  padding: 14px;
  border-radius: 50%;
  background: #fff;
  color: #1a1d2e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tariff-card--selected {
  border-color: rgba(108, 99, 255, 0.65);
  box-shadow:
    0 0 0 1px rgba(108, 99, 255, 0.4),
    0 8px 28px rgba(108, 99, 255, 0.12);
}

.tariff-card--selected .tariff-card__check {
  display: flex;
}

.tariff-card--unavailable {
  opacity: 0.72;
  border-color: rgba(255, 255, 255, 0.08);
}

.tariff-card--unavailable:hover {
  transform: none;
  box-shadow: none;
}

.tariff-unavailable-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 0.8125rem;
  font-weight: 600;
}

.btn-tariff--disabled,
.btn-tariff--disabled:hover {
  cursor: not-allowed;
  opacity: 0.55;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #a0a0b0;
}

.bhost-inline-checkout {
  max-width: 1280px;
  margin: 28px auto 0;
  padding-top: 4px;
}

.bhost-inline-checkout[hidden] {
  display: none !important;
}

.bhost-inline-checkout__inner {
  animation: bhost-fade-in 0.25s ease;
  position: relative;
  z-index: 5;
}

.bhost-inline-checkout__loading,
.bhost-inline-checkout__error {
  padding: 32px 16px;
  text-align: center;
  color: #9a9aaa;
  font-size: 0.95rem;
}

.bhost-inline-checkout__error {
  color: #f08ba0;
}

.bhost-buy-page .bhost-checkout-section:first-child {
  padding-top: 12px;
}

@keyframes bhost-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.bhost-body .header .inner.container {
  max-width: 100%;
  width: 100%;
  padding-left: var(--bhost-site-gutter, 36px);
  padding-right: var(--bhost-site-gutter, 36px);
}

.bhost-body--public .header .inner.container,
.bhost-body--auth .header .inner.container {
  max-width: var(--bhost-layout-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bhost-layout-gutter);
  padding-right: var(--bhost-layout-gutter);
}

.bhost-body--panel .header .inner.container {
  max-width: var(--bhost-layout-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bhost-layout-gutter);
  padding-right: var(--bhost-layout-gutter);
}

.bhost-balance {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.35);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

aside.fixed.inset-y-0.bg-white {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%) !important;
  border-right: none;
  margin-top: 0 !important;
  top: 64px;
  height: calc(100vh - 64px);
}

@media (max-width: 767px) {
  .bhost-panel-sidebar {
    display: none;
  }

  .bhost-panel-main {
    padding: 16px;
  }

  .user-profile-name {
    display: none;
  }
}

/* Service list pages */
.bhost-services-page {
  max-width: none;
  margin: 0;
  padding: 8px 0 32px;
}

.bhost-services-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.bhost-services-page__header > .bhost-btn,
.bhost-services-page__header > .bhost-services-page__actions {
  margin-left: auto;
  flex-shrink: 0;
}

.bhost-services-page__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.bhost-services-page__subtitle {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.95rem;
}

.bhost-panel-main a.bhost-services-page__order-btn,
.bhost-panel-main .bhost-services-page__order-btn,
.bhost-panel-main a.bhost-empty-plaque__btn,
.bhost-panel-main .bhost-empty-plaque__btn,
.bhost-panel-main a.bhost-update-banner__btn,
.bhost-panel-main .bhost-update-banner__btn {
  text-decoration: none !important;
}

.bhost-services-page__order-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 11px 20px !important;
  border-radius: 999px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  border: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease !important;
}

.bhost-services-page__order-btn.bhost-btn--primary,
.bhost-empty-plaque__btn.bhost-btn--primary {
  background: linear-gradient(135deg, #6c63ff, #4a3fe0) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.25) !important;
}

.bhost-services-page__order-btn.bhost-btn--primary:hover,
.bhost-empty-plaque__btn.bhost-btn--primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 0 28px rgba(108, 99, 255, 0.4) !important;
}

.bhost-btn--accent,
.bhost-update-banner__btn.bhost-btn--accent {
  background: linear-gradient(135deg, #ff4d8d, #e91e63) !important;
  color: #fff !important;
  box-shadow: 0 0 24px rgba(233, 30, 99, 0.35) !important;
}

.bhost-btn--accent:hover,
.bhost-update-banner__btn.bhost-btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(233, 30, 99, 0.5) !important;
  color: #fff !important;
}

.bhost-btn--glow {
  background: linear-gradient(135deg, #6c63ff, #4a3fe0) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 0 24px rgba(108, 99, 255, 0.3) !important;
}

.bhost-btn--glow:hover {
  background: linear-gradient(135deg, #7d75ff, #5a4fe8) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(108, 99, 255, 0.45) !important;
}

.bhost-services-page__order-btn--muted {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bhost-services-page__order-btn--muted:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

/* Shared lighter gradient panels (dashboard, services, tickets, settings) */
.bhost-welcome-banner,
.bhost-empty-plaque,
.bhost-empty-card,
.bhost-account-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(ellipse at 85% 50%, rgba(108, 99, 255, 0.26) 0%, transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Empty services plaque */
.bhost-empty-plaque {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 20px;
  min-height: 120px;
}

.bhost-empty-plaque__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.bhost-empty-plaque__text {
  margin: 0;
  max-width: 520px;
  color: #9a9aaa;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bhost-empty-plaque__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.bhost-empty-plaque__arrow {
  font-size: 1.1rem;
  line-height: 1;
}

/* Dedicated update banner */
.bhost-update-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 77, 141, 0.06);
  border: 1px solid rgba(255, 77, 141, 0.45);
  box-shadow: 0 0 32px rgba(255, 77, 141, 0.12);
}

.bhost-update-banner__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 77, 141, 0.15);
  color: #ff4d8d;
}

.bhost-update-banner__body {
  flex: 1;
  min-width: 0;
}

.bhost-update-banner__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff4d8d;
}

.bhost-update-banner__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.bhost-update-banner__text {
  margin: 0;
  color: #b0b0c0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.bhost-update-banner__btn {
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  white-space: nowrap;
  align-self: center;
}

/* Checkout page */
.bhost-checkout-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 0 40px;
}

.bhost-checkout-page__title {
  margin: 0 0 6px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.bhost-checkout-page__subtitle {
  margin: 0 0 28px;
  color: #8a8a9a;
}

.bhost-checkout-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-checkout-discount-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bhost-checkout-discount-badge--partner {
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(99, 102, 241, 0.34);
}

.bhost-checkout-discount-badge--referral {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.32);
}

.bhost-checkout-section--footer {
  border-bottom: none;
  padding-bottom: 0;
}

.bhost-checkout-section__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.bhost-checkout-section__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.bhost-checkout-section__title {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.bhost-checkout-section__subtitle {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.9rem;
}

.bhost-checkout-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bhost-checkout-fields--equal .bhost-checkout-field {
  min-width: 0;
}

.bhost-checkout-fields--equal .bhost-checkout-input,
.bhost-checkout-fields--equal .bhost-checkout-select {
  min-height: 48px;
}

.bhost-checkout-fields--single {
  grid-template-columns: 1fr;
  max-width: 360px;
}

.bhost-checkout-fields--payment {
  grid-template-columns: minmax(160px, 220px) minmax(0, 200px);
  max-width: none;
  align-items: start;
  gap: 14px;
}

.bhost-checkout-fields--payment .bhost-checkout-field__label {
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.bhost-checkout-fields--payment .bhost-checkout-dropdown__trigger,
.bhost-checkout-fields--payment .bhost-checkout-promo__input {
  min-height: 48px;
  height: 48px;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  font-size: 0.95rem !important;
  box-sizing: border-box;
}

.bhost-checkout-fields--payment .bhost-checkout-promo__input {
  padding-right: 38px !important;
}

.bhost-checkout-promo {
  min-width: 0;
  max-width: 200px;
}

.bhost-checkout-promo__input-wrap {
  position: relative;
  width: 100%;
}

.bhost-checkout-promo__info-wrap {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  transform: translateY(-50%);
}

.bhost-checkout-promo__info {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 0;
  background: rgba(108, 99, 255, 0.22);
  color: #c4b5fd;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.bhost-checkout-promo__info:hover,
.bhost-checkout-promo__info:focus-visible {
  background: rgba(108, 99, 255, 0.35);
  outline: none;
}

.bhost-checkout-promo__tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 20;
  display: none;
  width: max-content;
  max-width: 280px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #050508;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.bhost-checkout-promo__info-wrap:hover .bhost-checkout-promo__tooltip,
.bhost-checkout-promo__info-wrap:focus-within .bhost-checkout-promo__tooltip {
  display: block;
}

.bhost-checkout-promo__input {
  width: 100%;
  min-width: 0;
}

.bhost-checkout-promo__input--invalid {
  color: #fca5a5 !important;
  border-color: rgba(248, 113, 113, 0.45) !important;
}

.bhost-checkout-promo__input--valid {
  color: #6ee7b7 !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
}

@media (max-width: 720px) {
  .bhost-checkout-fields--payment {
    grid-template-columns: 1fr;
  }

  .bhost-checkout-promo {
    max-width: none;
  }
}

.bhost-checkout-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #9a9aaa;
}

.bhost-panel-main .bhost-checkout-form .bhost-checkout-input,
.bhost-panel-main .bhost-checkout-form .bhost-checkout-select,
.bhost-panel-main .bhost-ticket-create-form .bhost-checkout-input,
.bhost-panel-main .bhost-ticket-create-form .bhost-checkout-input--textarea,
.bhost-panel-main .bhost-ticket-reply-form .bhost-checkout-input,
.bhost-panel-main .bhost-ticket-reply-form .bhost-checkout-input--textarea,
.bhost-panel-main .bhost-ticket-rating-form .bhost-checkout-input,
.bhost-panel-main .bhost-ticket-rating-form .bhost-checkout-input--textarea {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 14px !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-size: 0.95rem;
  box-shadow: none !important;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.bhost-checkout-input,
.bhost-checkout-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.bhost-checkout-input,
.bhost-checkout-select--clean {
  cursor: pointer;
}

.bhost-checkout-input {
  cursor: text;
  appearance: none;
  -webkit-appearance: none;
}

.bhost-checkout-select {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

.bhost-checkout-select--clean {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  padding-right: 14px !important;
  cursor: pointer;
}

.bhost-checkout-input:focus,
.bhost-checkout-select:focus {
  outline: none;
  border-color: rgba(108, 99, 255, 0.6);
}

.bhost-checkout-select:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.bhost-checkout-select option {
  background: #1a1d2e;
  color: #fff;
}

/* Custom checkout dropdowns */
.bhost-checkout-dropdown {
  position: relative;
  width: 100%;
}

.bhost-checkout-dropdown__trigger {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bhost-checkout-dropdown__trigger-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhost-checkout-dropdown__chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.bhost-checkout-dropdown.is-open .bhost-checkout-dropdown__chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

.bhost-checkout-dropdown__trigger:hover,
.bhost-checkout-dropdown__trigger:focus {
  outline: none;
  border-color: rgba(108, 99, 255, 0.45);
  background: rgba(0, 0, 0, 0.45);
}

.bhost-checkout-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 14px;
  background: rgba(14, 16, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  max-height: 280px;
  overflow-y: auto;
}

.bhost-checkout-dropdown__option {
  display: block;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.bhost-checkout-dropdown__option:hover,
.bhost-checkout-dropdown__option:focus {
  outline: none;
  background: rgba(108, 99, 255, 0.14);
  color: #fff;
}

.bhost-checkout-submit-wrap {
  position: relative;
  flex-shrink: 0;
}

.bhost-checkout-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border: 1px solid rgba(233, 30, 99, 0.45);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 10;
  transform: translateY(4px);
}

.bhost-checkout-submit-wrap--blocked:hover .bhost-checkout-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bhost-checkout-submit-wrap--blocked .bhost-checkout-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.bhost-checkout-submit-wrap--blocked {
  cursor: not-allowed;
}

.bhost-checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bhost-checkout-total {
  margin: 0;
  color: #c0c0d0;
  font-size: 1rem;
}

.bhost-checkout-total strong {
  color: #fff;
  font-weight: 700;
}

.bhost-checkout-total__amount {
  display: inline-block;
  min-width: 4ch;
}

.bhost-checkout-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 14px 28px !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.bhost-checkout-submit__text {
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
}

.bhost-checkout-submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.bhost-checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bhost-checkout-submit__arrow {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .bhost-empty-plaque,
  .bhost-update-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .bhost-empty-plaque__btn,
  .bhost-update-banner__btn {
    justify-content: center;
  }

  .bhost-services-page__header {
    flex-direction: column;
  }

  .bhost-services-page__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .bhost-checkout-fields {
    grid-template-columns: 1fr;
  }

  .bhost-checkout-fields--payment {
    grid-template-columns: 1fr;
  }

  .bhost-checkout-total-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bhost-checkout-submit {
    justify-content: center;
  }

  .header .nav-links--panel {
    display: none;
  }

  .bhost-profile-grid {
    grid-template-columns: 1fr;
  }
}

/* Scrollbar — inner panels only (page scrollbar hidden in bhost-chrome.css) */
.bhost-panel-main {
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.45) transparent;
}

.bhost-panel-main::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.bhost-panel-main::-webkit-scrollbar-track {
  background: transparent;
}

.bhost-panel-main::-webkit-scrollbar-thumb {
  background: rgba(108, 99, 255, 0.35);
  border-radius: 999px;
}

.bhost-panel-main::-webkit-scrollbar-thumb:hover {
  background: rgba(108, 99, 255, 0.55);
}

/* Panel header nav */
.nav-links--panel {
  flex: 1;
  justify-content: center;
  margin: 0 12px;
}

.header .inner.container {
  gap: 12px;
}

.header .brand-2 {
  flex-shrink: 0;
}

.bhost-body--panel .header .brand-logo,
.bhost-body--public .header .brand-logo {
  width: auto;
  height: 52px;
  max-width: 160px;
}

/* Unified buttons */
.bhost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}

button.bhost-btn {
  appearance: none;
}

.bhost-btn--primary {
  background: linear-gradient(135deg, #6c63ff, #4a3fe0);
  color: #fff;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.25);
}

.bhost-btn--primary:hover {
  opacity: 0.92;
  color: #fff;
}

.bhost-btn--primary:disabled,
.bhost-btn--primary[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.bhost-btn--outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.bhost-btn--outline:hover {
  background: rgba(108, 99, 255, 0.15);
  border-color: rgba(108, 99, 255, 0.45);
  color: #fff;
}

.bhost-btn--outline:disabled,
.bhost-btn--outline[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.bhost-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.bhost-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.bhost-btn--discord {
  background: #5865f2;
  color: #fff;
}

.bhost-btn--sm {
  padding: 8px 14px;
  font-size: 0.82rem;
}

.bhost-btn.flex-1 {
  flex: 1 1 0;
  min-width: 0;
}

.bhost-services-page__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Tables */
.bhost-panel-main table,
.bhost-panel-main .dataTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.bhost-panel-main table thead th,
.bhost-panel-main .dataTable thead th {
  background: rgba(0, 0, 0, 0.25) !important;
  color: #9a9aaa !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 12px 16px !important;
}

.bhost-panel-main table tbody td,
.bhost-panel-main .dataTable tbody td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 12px 16px !important;
  color: #e0e0ec !important;
  font-size: 0.9rem;
}

.bhost-panel-main table tbody tr:hover td,
.bhost-panel-main .dataTable tbody tr:hover td {
  background: rgba(108, 99, 255, 0.06) !important;
}

/* Copyable */
.bhost-copyable {
  background: none;
  border: none;
  padding: 2px 4px;
  margin: -2px -4px;
  color: #8b9cff !important;
  cursor: pointer;
  text-align: left;
  font: inherit;
  text-decoration: underline dotted !important;
  border-radius: 4px;
}

.bhost-copyable:hover {
  background: rgba(108, 99, 255, 0.12);
}

.bhost-copyable:hover,
.bhost-copyable--copied {
  color: #b8c2ff;
}

/* Dashboard */
.bhost-dashboard {
  max-width: none;
  margin: 0;
  padding: 8px 0 40px;
}

.bhost-welcome-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 28px;
  min-height: 120px;
}

.bhost-welcome-banner__title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.bhost-welcome-banner__text {
  margin: 0;
  max-width: 560px;
  color: #9a9aaa;
  line-height: 1.55;
  font-size: 0.95rem;
}

.bhost-dashboard-section {
  margin-bottom: 32px;
}

.bhost-dashboard-section__title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.bhost-server-grid,
.bhost-ticket-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.bhost-services-page .bhost-server-grid--services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: none;
}

@media (max-width: 1200px) {
  .bhost-services-page .bhost-server-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .bhost-services-page .bhost-server-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bhost-services-page .bhost-server-grid--services {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bhost-services-page .tariff-card.bhost-server-card {
  background: #1e2136;
  border-radius: 18px;
  padding: 20px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
}

.bhost-services-page .tariff-card.bhost-server-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(108, 99, 255, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 10%, rgba(74, 120, 255, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.bhost-services-page .tariff-card.bhost-server-card:hover {
  transform: translateY(-2px);
  background: #232742;
  border-color: rgba(108, 99, 255, 0.28);
}

.bhost-services-page .bhost-server-card .tariff-header {
  position: relative;
  margin-bottom: 14px;
  z-index: 1;
}

.bhost-services-page .bhost-server-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.bhost-services-page .bhost-server-card__header .tariff-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.bhost-services-page .bhost-server-card__flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  align-self: center;
}

.bhost-services-page .bhost-server-card__header .tariff-title h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #f4f4f8;
  line-height: 1.15;
  word-break: break-word;
  align-self: center;
}

.bhost-services-page .bhost-server-card__status {
  flex-shrink: 0;
  align-self: center;
}

.bhost-services-page .bhost-server-card .tariff-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

.bhost-services-page .bhost-server-card .feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 9px 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 9px;
  min-height: 36px;
  min-width: 0;
}

.bhost-services-page .bhost-server-card .feature-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.bhost-services-page .bhost-server-card .feature-value {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}

.bhost-services-page .bhost-server-card__details {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.bhost-services-page .bhost-server-card__details li {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}

.bhost-services-page .bhost-server-card__details li:last-child {
  border-bottom: none;
}

.bhost-services-page .bhost-server-card__details span {
  color: #7d7d92;
  line-height: 1.3;
}

.bhost-services-page .bhost-server-card__details strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  text-align: right;
  min-width: 0;
  max-width: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
}

.bhost-services-page .bhost-server-card .price-block {
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 2px;
  z-index: 1;
  position: relative;
}

.bhost-services-page .bhost-server-card .price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.bhost-services-page .bhost-server-card .price-period {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #7d7d92;
}

.bhost-services-page .bhost-server-card .bhost-server-card__actions {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.bhost-services-page .bhost-server-card .btn-tariff,
.bhost-services-page .bhost-server-card .bhost-server-card__action {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 11px 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.bhost-services-page .bhost-server-card .btn-tariff:hover {
  background: rgba(108, 99, 255, 0.14);
  border-color: rgba(108, 99, 255, 0.4);
  color: #fff;
}

.bhost-services-page .bhost-server-card .btn-tariff svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.bhost-services-page .bhost-server-card .btn-tariff span {
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bhost-services-page .bhost-server-card .tariff-features {
    grid-template-columns: 1fr;
  }
}

.bhost-server-settings-page .bhost-services-page__title {
  margin-top: 12px;
}

.bhost-server-service-head {
  margin-top: 14px;
}

.bhost-server-service-head__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bhost-server-service-head__flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.bhost-server-service-head__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.bhost-server-service-head__meta {
  margin: 8px 0 0 34px;
  color: #8a8a9a;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .bhost-server-service-head__meta {
    margin-left: 0;
  }
}

.bhost-server-settings__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8a8a9a;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.15s ease;
  font-family: inherit;
}

.bhost-server-settings__back:hover {
  color: #fff;
}

.bhost-server-settings-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.bhost-server-settings-stat {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 16px;
  background: #1e2136;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.bhost-server-settings-stat::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 72px;
  background: radial-gradient(ellipse 80% 100% at 20% 0%, rgba(108, 99, 255, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.bhost-server-settings-stat__label {
  position: relative;
  display: block;
  color: #7d7d92;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.bhost-server-settings-stat__value {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.bhost-server-settings-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bhost-server-settings-panel {
  height: 100%;
}

.bhost-server-settings-details {
  margin-bottom: 0;
}

.bhost-server-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhost-server-settings-page .bhost-server-settings-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
}

.bhost-server-settings-action-btn--warning {
  border-color: rgba(245, 158, 11, 0.35) !important;
  color: #fcd34d !important;
}

.bhost-server-settings-action-btn--warning:hover {
  background: rgba(245, 158, 11, 0.12) !important;
  border-color: rgba(245, 158, 11, 0.55) !important;
  color: #fff !important;
}

.bhost-server-settings-action-btn--danger {
  border-color: rgba(239, 68, 68, 0.35) !important;
  color: #fca5a5 !important;
}

.bhost-server-settings-action-btn--danger:hover {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.55) !important;
  color: #fff !important;
}

.bhost-server-settings-action-btn--danger-solid {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  border: none !important;
  color: #fff !important;
}

.bhost-server-settings-form {
  margin-top: 14px;
}

.bhost-server-settings-note {
  margin: 14px 0 0;
  color: #8a8a9a;
  font-size: 0.86rem;
  line-height: 1.5;
}

.bhost-server-settings-note--danger {
  color: #fca5a5;
}

@media (max-width: 992px) {
  .bhost-server-settings-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bhost-server-settings-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bhost-server-settings-stats {
    grid-template-columns: 1fr;
  }

  .bhost-server-settings-page .bhost-services-page__actions {
    width: 100%;
  }

  .bhost-server-settings-page .bhost-services-page__order-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .bhost-server-settings-page .bhost-services-page__order-btn {
    width: 100%;
    justify-content: center;
  }
}

.bhost-server-service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bhost-server-service-quick {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bhost-server-service-quick__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bhost-lease-widget {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex: 1 1 auto;
  min-width: min(100%, 260px);
  max-width: 400px;
}

.bhost-lease-widget__countdown {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
  min-width: 72px;
}

.bhost-lease-widget__number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #6c63ff 0%, #4a3fe0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bhost-lease-widget__unit {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #6c63ff;
  white-space: nowrap;
}

.bhost-lease-widget__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.bhost-lease-widget__caption {
  margin: 0;
  color: #9a9aaa;
  font-size: 0.88rem;
  line-height: 1.35;
}

.bhost-lease-widget__renew {
  padding: 0;
  border: 0;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  white-space: nowrap;
  background: linear-gradient(135deg, #6c63ff 0%, #4a3fe0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bhost-lease-widget__renew:hover {
  opacity: 0.85;
}

.bhost-server-card__actions--single .bhost-server-card__action {
  flex: 1 1 auto;
  width: 100%;
}

.bhost-renew-modal[hidden] {
  display: none !important;
}

.bhost-renew-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bhost-renew-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 16, 0.72);
  backdrop-filter: blur(4px);
}

.bhost-renew-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: #15182b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.bhost-renew-modal__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.bhost-renew-modal__subtitle {
  margin: 0 0 24px;
  color: #8a8a9a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.bhost-renew-modal__summary {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bhost-renew-modal__summary li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d8d8e8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bhost-renew-modal__summary svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.75;
}

.bhost-renew-modal__summary strong {
  color: #fff;
  font-weight: 700;
}

.bhost-renew-modal__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bhost-renew-modal__actions .bhost-btn {
  min-width: 0;
}

.bhost-renew-modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bhost-renew-modal__form .bhost-renew-modal__actions {
  margin-top: 0;
}

.bhost-upgrade-modal__form .bhost-checkout-field,
.bhost-core-modal__form .bhost-checkout-field {
  margin-bottom: 0;
}

.bhost-upgrade-modal__form .bhost-checkout-select,
.bhost-core-modal__form .bhost-checkout-select {
  min-height: 48px;
}

.bhost-upgrade-modal__note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.18);
  color: #d8d8e8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.bhost-upgrade-modal__note strong {
  color: #fbbf24;
}

body.bhost-renew-modal-open,
body.bhost-modal-open {
  overflow: hidden;
}

body.bhost-renew-modal-open > .footer,
body.bhost-modal-open > .footer {
  visibility: hidden;
  pointer-events: none;
}

.bhost-server-service-page .bhost-checkout-dropdown__menu {
  z-index: 90;
}

.bhost-core-modal__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.bhost-core-modal__form .bhost-checkout-dropdown__menu {
  z-index: 95;
}

@media (max-width: 520px) {
  .bhost-core-modal__fields {
    grid-template-columns: 1fr;
  }
}

.bhost-renew-modal__subtitle strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 640px) {
  .bhost-lease-widget {
    max-width: none;
    width: 100%;
  }

  .bhost-server-service-top {
    flex-direction: column;
    align-items: stretch;
  }

  .bhost-server-service-quick {
    width: 100%;
  }

  .bhost-server-service-quick__btn {
    width: 100%;
    justify-content: center;
  }
}

.bhost-server-card,
.bhost-ticket-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.bhost-server-card--detailed {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bhost-server-card__title,
.bhost-ticket-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.bhost-server-card__meta {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  flex: 1;
}

.bhost-server-card__meta div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bhost-server-card--detailed .bhost-server-card__meta {
  grid-template-columns: minmax(120px, 34%) 1fr;
  column-gap: 20px;
  row-gap: 0;
  align-items: center;
}

.bhost-server-card--detailed .bhost-server-card__meta > div {
  display: contents;
}

.bhost-server-card--detailed .bhost-server-card__meta dt {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #8a8a9a;
}

.bhost-server-card--detailed .bhost-server-card__meta dd {
  padding: 11px 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e8e8f0;
  text-align: left;
  word-break: break-word;
}

.bhost-server-card--detailed .bhost-server-card__meta > div:last-child dt,
.bhost-server-card--detailed .bhost-server-card__meta > div:last-child dd {
  border-bottom: none;
}

.bhost-server-card--detailed .bhost-server-card__plan {
  justify-content: flex-start;
}

.bhost-server-card__meta dt {
  color: #8a8a9a;
  flex-shrink: 0;
}

.bhost-server-card__meta dd {
  margin: 0;
  color: #e8e8f0;
  text-align: right;
  word-break: break-word;
}

.bhost-server-card__plan {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.bhost-server-card__muted {
  display: block;
  margin-top: 2px;
  color: #8a8a9a;
  font-size: 0.82rem;
}

.bhost-server-card__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #a0a0b0;
  cursor: help;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.bhost-server-card__info:hover {
  background: rgba(108, 99, 255, 0.2);
  color: #fff;
}

.bhost-server-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.bhost-server-card__action {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
}

.bhost-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.bhost-badge--success { background: rgba(16, 185, 129, 0.2); color: #6ee7b7; }
.bhost-badge--warning { background: rgba(245, 158, 11, 0.2); color: #fcd34d; }
.bhost-badge--danger { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }

.bhost-empty-card {
  padding: 28px 32px;
  border-radius: 20px;
  text-align: center;
  min-width: 0;
}

.bhost-empty-card h3 {
  margin: 0 0 8px;
  color: #fff;
}

.bhost-empty-card p {
  margin: 0 0 16px;
  color: #9a9aaa;
}

/* Profile */
.bhost-profile-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 40px;
}

.bhost-profile-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 28px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-profile-hero__user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bhost-profile-hero__avatar-wrap {
  cursor: pointer;
}

.bhost-profile-hero__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(108, 99, 255, 0.5);
}

.bhost-profile-hero__name {
  margin: 0 0 4px;
  font-size: 1.35rem;
  color: #fff;
}

.bhost-profile-hero__email {
  margin: 0;
  color: #9a9aaa;
}

.bhost-profile-hero__stats {
  text-align: right;
}

.bhost-profile-hero__balance {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.bhost-profile-hero__since {
  margin-top: 4px;
  color: #9a9aaa;
  font-size: 0.88rem;
}

.bhost-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bhost-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-card__title {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.bhost-info-list__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.bhost-info-list__row dt {
  color: #9a9aaa;
  flex-shrink: 0;
}

.bhost-info-list__row dd {
  margin: 0;
  color: #e8e8f0;
  text-align: right;
  word-break: break-all;
}

.bhost-form__field {
  display: block;
  margin-bottom: 16px;
}

.bhost-form__field span {
  display: block;
  margin-bottom: 8px;
  color: #9a9aaa;
  font-size: 0.85rem;
}

.bhost-form__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
}

.bhost-form__subtitle {
  margin: 20px 0 12px;
  font-size: 1rem;
  color: #fff;
}

.bhost-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.bhost-profile-discord {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bhost-profile-discord__linked {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bhost-profile-discord__linked img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.bhost-link {
  color: #8b9cff;
  text-decoration: none;
}

.bhost-link:hover {
  text-decoration: none;
}

/* Modal */
.bhost-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.bhost-modal-overlay[hidden] {
  display: none !important;
}

.bhost-modal {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 20px;
  background: #12121c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.bhost-modal__title {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.bhost-modal__input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bhost-modal__error {
  margin: 0 0 12px;
  color: #fca5a5;
  font-size: 0.85rem;
}

.bhost-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

/* Error page */
.bhost-error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 180px);
  padding: 40px 20px;
}

.bhost-error-card {
  width: 100%;
  max-width: 560px;
  padding: 36px 32px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.bhost-error-card__label {
  margin: 0 0 8px;
  color: #8a8a9a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bhost-error-card__code {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ff6b6b 0%, #c084fc 55%, #6c63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bhost-error-card__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 16px;
}

.bhost-error-card__message {
  margin: 0 0 12px;
  color: #e8e8f0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.bhost-error-card__hint {
  margin: 0 0 28px;
  color: #8a8a9a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bhost-error-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bhost-error-card__actions .bhost-btn {
  min-width: 160px;
  justify-content: center;
}

/* SweetAlert2 — dark BHost theme */
.custom-swal-popup.swal2-popup {
  background: #1a1d2e !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45) !important;
}

.custom-swal-popup .swal2-title {
  color: #fff !important;
}

.custom-swal-popup .swal2-html-container,
.custom-swal-popup .swal2-content {
  color: #c8c8d8 !important;
}

.custom-swal-popup .swal2-confirm {
  background: linear-gradient(135deg, #6c63ff, #4a3fe0) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.custom-swal-popup .swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.35) !important;
}

/* Unified panel shell — один фон как в центре */
.bhost-html--panel,
.bhost-body,
.bhost-body.bhost-body--panel {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%);
}

.bhost-body--panel .bhost-panel-viewport {
  width: 100%;
  max-width: var(--bhost-layout-max);
  margin: 0 auto;
  padding-left: var(--bhost-layout-gutter);
  padding-right: var(--bhost-layout-gutter);
  box-sizing: border-box;
}

.bhost-body--panel .bhost-panel-shell {
  background: transparent;
  align-items: flex-start;
}

.bhost-body--panel .bhost-panel-sidebar {
  background: transparent;
  border-right: none;
  padding: 0;
}

.bhost-body--panel .bhost-panel-main {
  background: transparent;
}

@media (max-width: 768px) {
  .bhost-body {
    --bhost-site-gutter: 16px;
    overflow-x: hidden;
  }

  .bhost-body--panel .header .inner.container,
  .bhost-body--panel .bhost-panel-viewport,
  .bhost-body--panel > .footer .container,
  .bhost-body--public .header .inner.container,
  .bhost-body--public > .bhost-main,
  .bhost-body--public > .footer .container {
    padding-left: var(--bhost-layout-gutter);
    padding-right: var(--bhost-layout-gutter);
  }

  .bhost-body--panel .bhost-panel-viewport,
  .bhost-body--panel .bhost-panel-shell,
  .bhost-body--panel .bhost-panel-main {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .bhost-body--panel .bhost-panel-main {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .bhost-admin-overview,
  .bhost-account-page,
  .bhost-account-grid,
  .bhost-account-bottom-row,
  .bhost-account-section,
  .bhost-account-form,
  .bhost-input-group,
  .bhost-input-group__field {
    min-width: 0;
    max-width: 100%;
  }

  .bhost-account-section {
    padding: 20px 16px 22px;
  }

  .bhost-account-info__row {
    flex-wrap: wrap;
    gap: 4px 10px;
  }

  .bhost-account-info__row dd {
    margin-left: auto;
    text-align: right;
    word-break: break-word;
  }

  .bhost-account-form__submit,
  .bhost-ticket-create-submit {
    width: 100%;
    align-self: stretch;
  }

  .bhost-ticket-page,
  .bhost-ticket-create-grid,
  .bhost-ticket-create-fields,
  .bhost-ticket-create-sidebar,
  .bhost-ticket-create-actions {
    min-width: 0;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .bhost-panel-sidebar {
    display: block !important;
  }

  .bhost-mobile-sidebar {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .bhost-mobile-sidebar-backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.bhost-mobile-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.55);
}

.bhost-mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 120;
  width: min(280px, 86vw);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1329 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.35);
  padding-top: calc(var(--bhost-header-h, 84px) + env(safe-area-inset-top, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bhost-mobile-sidebar__inner {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 12px 12px 24px;
}

body.bhost-panel-menu-open,
body.bhost-main--menu-open {
  overflow: hidden;
}

.bhost-panel-sidebar .py-4 {
  color: #a0a0b0 !important;
}

.bhost-panel-sidebar span.bg-primary-600,
.bhost-panel-sidebar .bg-primary-600 {
  background: #6c63ff !important;
}

.bhost-panel-sidebar span.border-white,
.bhost-panel-sidebar .border-white {
  border-color: #0a0e27 !important;
}

.bhost-panel-sidebar .bg-gray-50,
.bhost-panel-sidebar .dark\:bg-gray-900,
.bhost-panel-sidebar ul.shadow-inner {
  background: rgba(0, 0, 0, 0.28) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  color: #a0a0b0 !important;
}

.bhost-body--panel .user-profile-btn {
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.35);
  color: #fff;
  border-radius: 10px;
  padding: 6px 12px 6px 8px;
}

.bhost-body--panel .user-profile-btn:hover {
  background: rgba(108, 99, 255, 0.2);
  border-color: rgba(108, 99, 255, 0.55);
}

.bhost-panel-sidebar button.inline-flex,
.bhost-panel-sidebar button.inline-block {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bhost-panel-sidebar button.inline-flex {
  width: 100%;
  gap: 12px;
  align-items: center;
  overflow: visible;
}

.bhost-panel-sidebar a.inline-flex {
  align-items: center;
}

.bhost-panel-sidebar button.inline-flex svg,
.bhost-panel-sidebar a.inline-flex svg {
  flex-shrink: 0;
  margin-top: 0;
}

.bhost-panel-sidebar button.inline-flex span.ml-4,
.bhost-panel-sidebar a.inline-flex span.ml-4 {
  margin-left: 0 !important;
  white-space: normal;
  line-height: 1.35;
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

.bhost-panel-sidebar li.relative.px-6.py-3 button.inline-flex span.ml-4,
.bhost-panel-sidebar li.relative.px-6.py-3 a.inline-flex span.ml-4 {
  white-space: nowrap;
  line-height: 1.25;
  font-size: 0.8125rem;
  word-break: normal;
}

.bhost-panel-sidebar li.relative.bhost-sidebar-admin {
  padding: 4px 10px !important;
  margin-top: 10px;
}

.bhost-sidebar-admin__toggle {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 12px;
  background: transparent;
  color: #6c63ff !important;
  cursor: pointer;
  font: inherit;
}

.bhost-sidebar-admin__toggle:hover,
.bhost-sidebar-admin--open > .bhost-sidebar-admin__toggle {
  background: rgba(108, 99, 255, 0.16);
  border-color: rgba(108, 99, 255, 0.22);
  color: #fff !important;
}

.bhost-sidebar-admin-menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.bhost-sidebar-admin-menu > li.relative {
  margin: 2px 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bhost-sidebar-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  color: currentColor;
}

.bhost-text-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #6c63ff;
  text-decoration: none;
  cursor: pointer;
}

.bhost-text-link:hover {
  opacity: 0.85;
  text-decoration: none;
}

.bhost-body a:not(.bhost-copyable):not(.bhost-btn) {
  text-decoration: none;
}

.bhost-body a:not(.bhost-copyable):not(.bhost-btn):hover {
  text-decoration: none;
}

.custom-swal-popup .swal2-cancel {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
}

.custom-swal-popup .swal2-icon.swal2-error {
  border-color: #e91e63 !important;
  color: #e91e63 !important;
}

.custom-swal-popup .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  background-color: #e91e63 !important;
}

.bhost-account-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(108, 99, 255, 0.28);
  background: rgba(108, 99, 255, 0.08);
}

.bhost-account-notice--warning {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.bhost-account-notice--warning .bhost-account-notice__icon {
  color: #f59e0b;
}

.bhost-account-notice--discord {
  border-color: rgba(88, 101, 242, 0.35);
  background: rgba(88, 101, 242, 0.1);
}

.bhost-account-notice--discord .bhost-account-notice__icon {
  color: #5865f2;
}

.bhost-account-notice__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #6c63ff;
}

.bhost-account-notice__body {
  flex: 1;
  min-width: 0;
}

.bhost-account-notice__title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.bhost-account-notice__text {
  margin: 0;
  color: #a8a8b8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.bhost-account-notice__action {
  display: inline;
  margin-left: 4px;
  font-size: inherit;
}

/* Account settings */
.bhost-account-page {
  max-width: 1200px;
  margin: 0;
  padding: 8px 0 40px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.bhost-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.bhost-account-grid > .bhost-account-section {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bhost-account-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  grid-column: 1 / -1;
  align-items: stretch;
}

.bhost-account-bottom-row .bhost-account-section {
  margin-bottom: 0;
  height: 100%;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
}

.bhost-account-grid .bhost-account-section .bhost-account-form,
.bhost-account-grid .bhost-account-section .bhost-account-section__body,
.bhost-account-bottom-row .bhost-account-section .bhost-account-form,
.bhost-account-bottom-row .bhost-account-section .bhost-account-section__body {
  flex: 1;
  min-height: 0;
}

.bhost-account-section__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bhost-account-section__content {
  flex: 1;
  min-height: 0;
}

.bhost-account-grid .bhost-account-section--wide {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .bhost-account-grid {
    grid-template-columns: 1fr;
  }

  .bhost-account-grid .bhost-account-section--wide {
    grid-column: auto;
  }

  .bhost-account-bottom-row {
    grid-template-columns: 1fr;
  }

  .bhost-account-bottom-row .bhost-account-section {
    min-height: 0;
  }
}

.bhost-referral-page {
  max-width: none;
  margin: 0;
  padding: 8px 0 40px;
  width: 100%;
}

.bhost-account-page__header,
.bhost-referral-page__header {
  margin-bottom: 28px;
  text-align: left;
}

.bhost-referral-page__title,
.bhost-account-page__title {
  margin: 0 0 10px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.bhost-referral-page__subtitle,
.bhost-account-page__subtitle {
  margin: 0;
  color: #9a9aaa;
  line-height: 1.55;
  font-size: 0.95rem;
}

.bhost-account-info {
  margin: 0;
}

.bhost-account-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.bhost-account-info__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bhost-account-info__row:first-child {
  padding-top: 0;
}

.bhost-account-info__row dt {
  color: #9a9aaa;
  flex-shrink: 0;
}

.bhost-account-info__row dd {
  margin: 0;
  color: #fff;
  text-align: right;
  font-weight: 600;
}

.bhost-account-section {
  margin-bottom: 28px;
  padding: 28px 32px 32px;
  border-radius: 20px;
}

.bhost-account-section__title {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.bhost-account-section__title--split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 0 0 32px;
  padding: 4px 0 2px;
  line-height: 1;
}

.bhost-account-section__title-top {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9a9aaa;
  text-transform: uppercase;
}

.bhost-account-section__title-bottom {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #c8c2ff 55%, #6c63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bhost-account-section--actions .bhost-account-section__title-bottom {
  font-size: 1.45rem;
}

.bhost-account-section__title--gradient {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #c8c2ff 55%, #6c63ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bhost-account-form__submit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bhost-account-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bhost-account-form__submit {
  align-self: flex-start;
  margin-top: auto;
  gap: 10px;
}

.bhost-account-section a.bhost-account-form__submit {
  text-decoration: none;
  color: #fff;
}

.bhost-account-form .bhost-input-group__field {
  padding: 0 16px;
  min-height: 52px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.bhost-account-form .bhost-input-group__field:focus-within {
  outline: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.bhost-discord-linked {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}

.bhost-discord-linked__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bhost-discord-linked__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.bhost-discord-linked__info strong {
  color: #fff;
  font-size: 0.95rem;
}

.bhost-discord-linked__info span {
  color: #8a8a9a;
  font-size: 0.82rem;
}

.bhost-account-section .bhost-auth-actions__btn {
  max-width: 320px;
}

.bhost-input-group {
  display: block;
}

.bhost-input-group__label {
  display: block;
  margin-bottom: 8px;
  color: #9a9aaa;
  font-size: 0.85rem;
}

.bhost-input-group__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.15s ease;
}

.bhost-input-group__field:focus-within {
  outline: none;
  box-shadow: none;
  border-color: rgba(108, 99, 255, 0.32);
}

.bhost-input-group__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8a8a9a;
}

.bhost-input-group__input {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  outline: none !important;
  box-shadow: none !important;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.bhost-input-group__input:focus,
.bhost-input-group__input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.bhost-input-group__input::placeholder {
  color: #6a6a7a;
}

.bhost-input-group__input:-webkit-autofill,
.bhost-input-group__input:-webkit-autofill:hover,
.bhost-input-group__input:-webkit-autofill:focus,
.bhost-input-group__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset !important;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 99999s ease-out 0s;
}

.bhost-login__subtitle,
.bhost-login__hint {
  margin: -8px 0 20px;
  color: #9a9aaa;
  font-size: 0.88rem;
  line-height: 1.5;
}

.bhost-auth-discord-only {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bhost-auth-discord-only__text {
  margin: 0;
  color: #b8b8c8;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bhost-auth-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 540px) {
  .bhost-auth-form__row {
    grid-template-columns: 1fr;
  }
}

/* Referral page */
.bhost-referral-intro {
  margin-bottom: 20px;
}

.bhost-referral-intro p {
  margin: 0 0 12px;
  color: #b0b0c0;
  line-height: 1.6;
  font-size: 0.92rem;
}

.bhost-referral-intro p:last-child {
  margin-bottom: 0;
}

.bhost-referral-highlight {
  color: #6c63ff;
}

.bhost-referral-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.bhost-referral-stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-referral-stat h3 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #9a9aaa;
}

.bhost-referral-stat__count {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.bhost-referral-stat__earnings {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #6c63ff;
}

.bhost-referral-stat__hint {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #7a7a8a;
}

.bhost-referral-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.bhost-referral-code {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8e8f0;
  font-size: 0.85rem;
  word-break: break-all;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
}

.bhost-referral-code:hover {
  text-decoration: none !important;
}

.bhost-referral-percent {
  margin: 0 0 10px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6c63ff;
}

.bhost-referral-note {
  margin: 0;
  color: #9a9aaa;
  font-size: 0.88rem;
  line-height: 1.5;
}

.bhost-referral-totals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bhost-referral-totals__item {
  min-width: 0;
}

.bhost-referral-totals h3 {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: #9a9aaa;
  font-weight: 600;
}

.bhost-referral-totals__value {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.bhost-referral-totals__value--accent {
  color: #6c63ff;
}

.bhost-referral-totals span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #7a7a8a;
}

@media (max-width: 900px) {
  .bhost-referral-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bhost-referral-grid,
  .bhost-referral-totals {
    grid-template-columns: 1fr;
  }
}

/* Support tickets */
.bhost-ticket-page {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
}

.bhost-ticket-page__header {
  margin-bottom: 24px;
}

.bhost-ticket-page__title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  color: #fff;
}

.bhost-ticket-page__subtitle {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bhost-ticket-create-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
  grid-template-areas:
    "fields sidebar"
    "actions .";
  align-items: stretch;
}

.bhost-ticket-create-fields {
  grid-area: fields;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
}

.bhost-ticket-create-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bhost-checkout-field--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.bhost-checkout-field--grow .bhost-checkout-input--textarea {
  flex: 1;
  min-height: 160px;
  height: 100%;
}

.bhost-ticket-create-sidebar {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-ticket-create-main .bhost-checkout-field__label,
.bhost-ticket-create-fields .bhost-checkout-field__label,
.bhost-ticket-create-sidebar .bhost-checkout-field__label {
  margin-bottom: 10px;
}

.bhost-required {
  color: #ef4444;
}

.bhost-checkout-input--textarea {
  min-height: 220px;
  resize: vertical;
  border-radius: 14px;
}

.bhost-ticket-urgent-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bhost-ticket-urgent-banner:hover,
.bhost-ticket-urgent-banner.is-active {
  border-color: rgba(239, 68, 68, 0.65);
  background: rgba(239, 68, 68, 0.14);
}

.bhost-ticket-urgent-banner__icon {
  font-size: 1.2rem;
  color: #ef4444;
}

.bhost-ticket-urgent-banner__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bhost-ticket-urgent-banner__body strong {
  font-size: 0.95rem;
}

.bhost-ticket-urgent-banner__body span {
  color: #a8a8b8;
  font-size: 0.82rem;
}

.bhost-ticket-urgent-banner__price {
  font-weight: 700;
  color: #fff;
}

.bhost-ticket-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c3c3e5;
  font-size: 0.88rem;
  line-height: 1.55;
  cursor: pointer;
}

.bhost-ticket-consent .bhost-custom-checkbox__box {
  margin-top: 2px;
}

.bhost-ticket-consent__text {
  flex: 1;
  min-width: 0;
}

.bhost-ticket-consent__text .bhost-text-link {
  font-size: inherit;
  color: #c4bcff;
  vertical-align: baseline;
}

.bhost-ticket-priority-hint {
  margin: 8px 0 0;
  color: #8a8a9a;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bhost-ticket-create-submit {
  align-self: flex-start;
}

.bhost-urgent-modal__dialog {
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.bhost-urgent-modal__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.bhost-urgent-modal__icon {
  color: #ef4444;
  font-size: 1.2rem;
}

.bhost-urgent-modal__body p {
  margin: 0 0 12px;
  color: #c8c8d4;
  line-height: 1.55;
  font-size: 0.92rem;
}

.bhost-btn--danger {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
}

.bhost-btn--danger:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.bhost-ticket-filters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bhost-ticket-filters__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bhost-ticket-filters__row.is-hidden {
  display: none;
}

.bhost-ticket-filter-tab,
.bhost-ticket-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #c8c8d4;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bhost-ticket-filter-tab.is-active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.bhost-ticket-filter-chip {
  padding: 8px 14px;
  font-size: 0.82rem;
}

.bhost-ticket-filter-chip.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.bhost-ticket-filter-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bhost-ticket-grid--cards {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.bhost-dashboard .bhost-ticket-grid--cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .bhost-dashboard .bhost-ticket-grid--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .bhost-dashboard .bhost-ticket-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bhost-dashboard .bhost-ticket-grid--cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bhost-ticket-card-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1e2136;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bhost-ticket-card-v2:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 99, 255, 0.35);
}

.bhost-ticket-card-v2__bg {
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background:
    radial-gradient(ellipse 80% 100% at 20% 0%, rgba(108, 99, 255, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 85% 10%, rgba(74, 120, 255, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.bhost-ticket-card-v2__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  min-height: 100%;
}

.bhost-ticket-card-v2__title {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.bhost-ticket-card-v2__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhost-ticket-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  color: #d8d8e4;
}

.bhost-ticket-badge--priority-low {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.bhost-ticket-badge--priority-medium {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
}

.bhost-ticket-badge--priority-high,
.bhost-ticket-badge--urgent {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.bhost-ticket-badge--status-support {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
}

.bhost-ticket-badge--status-client {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.bhost-ticket-badge--status-resolved {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.bhost-ticket-badge--status-director {
  background: rgba(239, 68, 68, 0.16);
  color: #fca5a5;
}

.bhost-ticket-filter-chip--director.is-active {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.bhost-ticket-card-v2__meta {
  display: grid;
  gap: 10px;
  margin: 0;
}

.bhost-ticket-card-v2__meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9a9aaa;
  font-size: 0.82rem;
}

.bhost-ticket-card-v2__meta dt {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.bhost-ticket-card-v2__meta dt svg {
  width: 14px;
  height: 14px;
}

.bhost-ticket-card-v2__meta dd {
  margin: 0;
  color: #d8d8e4;
}

.bhost-ticket-card-v2__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.bhost-ticket-card-v2__open,
.bhost-ticket-card-v2__reopen {
  width: 100%;
  justify-content: center;
  padding-left: 18px;
  padding-right: 18px;
}

.bhost-ticket-card-v2__reopen-form {
  margin: 0;
  width: 100%;
}

.bhost-ticket-empty {
  padding: 48px 24px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bhost-ticket-empty__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: #666;
}

.bhost-ticket-empty__icon .bhost-ticket-filter-icon {
  width: 48px;
  height: 48px;
}

.bhost-ticket-empty__title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.bhost-ticket-empty__text {
  margin: 0;
  color: #8a8a9a;
}

.bhost-ticket-empty--full {
  grid-column: 1 / -1;
}

.bhost-ticket-empty--error {
  color: #f87171;
}

.bhost-ticket-show-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
  position: relative;
  isolation: isolate;
}

.bhost-ticket-show-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 16px;
  align-self: start;
  z-index: 2;
  min-width: 0;
}

.bhost-ticket-workflow {
  margin: 20px -20px 0;
  padding: 20px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.bhost-ticket-workflow__title {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8a8a9a;
  letter-spacing: 0.02em;
}

.bhost-ticket-workflow__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bhost-ticket-workflow__form {
  margin: 0;
}

.bhost-ticket-workflow__btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  line-height: 1.3;
  font-size: 0.88rem;
  border-radius: 12px;
}

.bhost-ticket-workflow__btn.is-active {
  font-weight: 600;
}

.bhost-ticket-workflow__btn--support.is-active {
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.12);
  color: #fdba74;
}

.bhost-ticket-workflow__btn--support.is-active:hover {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.16);
  color: #fdba74;
}

.bhost-ticket-workflow__btn--client.is-active {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
}

.bhost-ticket-workflow__btn--client.is-active:hover {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
}

.bhost-ticket-workflow__btn--director.is-active {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.bhost-ticket-workflow__btn--director.is-active:hover {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}

.bhost-ticket-thread,
.bhost-ticket-info-card,
.bhost-ticket-rating {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bhost-ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  max-height: min(680px, calc(100dvh - 240px));
  min-height: 280px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.bhost-ticket-thread__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(108, 99, 255, 0.45) transparent;
}

.bhost-ticket-thread__messages::-webkit-scrollbar {
  width: 6px;
}

.bhost-ticket-thread__messages::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.35);
}

.bhost-ticket-reply,
.bhost-ticket-thread > .bhost-ticket-closed {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.bhost-ticket-thread > .bhost-ticket-closed {
  margin: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.bhost-ticket-message {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bhost-ticket-message--staff {
  border-color: rgba(99, 102, 241, 0.25);
  background: rgba(99, 102, 241, 0.08);
}

.bhost-ticket-message__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.bhost-ticket-message__avatar {
  flex-shrink: 0;
}

.bhost-ticket-message__head strong {
  display: block;
  color: #fff;
}

.bhost-ticket-message__head time,
.bhost-ticket-message__role {
  display: inline-block;
  margin-right: 8px;
  color: #8a8a9a;
  font-size: 0.78rem;
}

.bhost-ticket-message__body {
  color: #e8e8f0;
  line-height: 1.55;
  white-space: pre-wrap;
}

.bhost-ticket-closed {
  padding: 28px 20px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.bhost-ticket-closed__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
}

.bhost-ticket-closed h2 {
  margin: 0 0 8px;
  color: #fff;
}

.bhost-ticket-closed p {
  margin: 0 0 16px;
  color: #8a8a9a;
}

.bhost-ticket-info-card,
.bhost-ticket-rating {
  padding: 20px;
}

.bhost-ticket-info-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
  gap: 0;
}

.bhost-ticket-info-card h2,
.bhost-ticket-rating h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
}

.bhost-ticket-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.bhost-ticket-info-card dl div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}

.bhost-ticket-info-card dt {
  flex: 0 0 auto;
  color: #8a8a9a;
}

.bhost-ticket-info-card dd {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
  text-align: right;
  word-break: break-word;
}

.bhost-ticket-rating__subtitle {
  margin: -8px 0 16px;
  color: #8a8a9a;
  font-size: 0.88rem;
}

.bhost-ticket-rating__stars {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.bhost-ticket-rating__stars span,
.bhost-ticket-rating__star {
  border: 0;
  background: transparent;
  color: #555;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  cursor: default;
  pointer-events: none;
}

.bhost-ticket-rating__stars span.is-filled,
.bhost-ticket-rating__star.is-filled {
  color: #facc15;
}

.bhost-ticket-rating__stars--interactive {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.bhost-ticket-rating__stars--interactive:not(:hover) .bhost-ticket-rating__star-label:has(.bhost-ticket-rating__radio:checked) .bhost-ticket-rating__star,
.bhost-ticket-rating__stars--interactive:not(:hover) .bhost-ticket-rating__star-label:has(.bhost-ticket-rating__radio:checked) ~ .bhost-ticket-rating__star-label .bhost-ticket-rating__star {
  color: #facc15;
}

.bhost-ticket-rating__star-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  pointer-events: auto;
}

.bhost-ticket-rating__radio {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.bhost-ticket-rating__stars--interactive .bhost-ticket-rating__star-label:hover .bhost-ticket-rating__star,
.bhost-ticket-rating__stars--interactive .bhost-ticket-rating__star-label:hover ~ .bhost-ticket-rating__star-label .bhost-ticket-rating__star,
.bhost-ticket-rating__stars--interactive .bhost-ticket-rating__star-label:focus-within .bhost-ticket-rating__star,
.bhost-ticket-rating__stars--interactive .bhost-ticket-rating__star-label:focus-within ~ .bhost-ticket-rating__star-label .bhost-ticket-rating__star {
  color: #fde047;
}

.bhost-ticket-rating-form,
.bhost-ticket-rating__submit {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.bhost-ticket-rating__comment {
  margin: 0 0 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8d8e4;
}

.bhost-ticket-rating__thanks {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.88rem;
}

.bhost-ticket-rating-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bhost-ticket-close-form {
  margin: 16px -20px 0;
  padding: 16px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.bhost-ticket-close-form__btn {
  width: 100%;
  justify-content: center;
}

.bhost-ticket-info-card__actions .bhost-btn--outline,
.bhost-ticket-info-card__actions .bhost-btn--outline:hover,
.bhost-ticket-info-card__actions .bhost-btn--outline:focus {
  color: #fff;
  text-decoration: none;
}

.bhost-ticket-edit-service-btn {
  width: 100%;
  justify-content: center;
}

.bhost-ticket-info-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px -20px 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.bhost-ticket-workflow + .bhost-ticket-info-card__actions {
  margin-top: 0;
}

.bhost-ticket-info-card__actions .bhost-btn,
.bhost-ticket-workflow__btn {
  border-radius: 12px;
  font-size: 0.88rem;
}

.bhost-ticket-close-modal__text {
  margin: 0 0 24px;
  color: #8a8a9a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bhost-ticket-staff-login-modal__text {
  margin: 0 0 20px;
  color: #8a8a9a;
  font-size: 0.92rem;
  line-height: 1.55;
}

.bhost-ticket-staff-login-modal__code-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bhost-ticket-staff-login-modal__code {
  flex: 1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
}

.bhost-ticket-staff-login-modal__meta {
  margin: 0 0 20px;
  color: #94a3b8;
  font-size: 0.85rem;
}

.bhost-ticket-staff-login-modal__copy.is-copied {
  border-color: #22c55e;
  color: #22c55e;
}

.bhost-ticket-service-modal .bhost-renew-modal__dialog {
  width: min(100%, 560px);
}

.bhost-ticket-info-card .bhost-btn + .bhost-btn {
  margin-top: 0;
}

.bhost-ticket-close-form--inline {
  margin: 0;
  padding: 0;
  border: 0;
}

.bhost-support-access-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c3c3e5;
  font-size: 0.88rem;
  line-height: 1.55;
  cursor: pointer;
}

.bhost-support-access-toggle .bhost-custom-checkbox__box {
  margin-top: 2px;
}

.bhost-account-form__support-access {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.bhost-account-form__hint {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.85rem;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .bhost-ticket-create-grid,
  .bhost-ticket-show-layout {
    grid-template-columns: 1fr;
  }

  .bhost-ticket-thread {
    max-height: min(560px, calc(100dvh - 280px));
  }

  .bhost-ticket-create-grid {
    grid-template-areas:
      "fields"
      "sidebar"
      "actions";
  }

  .bhost-checkout-field--grow .bhost-checkout-input--textarea {
    flex: none;
    min-height: 220px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .bhost-renew-modal {
    align-items: center;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .bhost-renew-modal__dialog {
    width: 100%;
    max-width: none;
    max-height: min(88dvh, calc(100dvh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
    padding: 20px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    border-radius: 18px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bhost-renew-modal__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .bhost-renew-modal__actions .bhost-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .bhost-urgent-modal__head {
    align-items: flex-start;
  }

  .bhost-urgent-modal__body p {
    font-size: 0.88rem;
  }

  .bhost-ticket-urgent-banner {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 14px;
  }

  .bhost-ticket-urgent-banner__body span {
    font-size: 0.8rem;
  }

  .bhost-ticket-urgent-banner__price {
    margin-left: auto;
  }

  .bhost-ticket-create-submit {
    width: 100%;
    align-self: stretch;
  }

  .bhost-ticket-create-sidebar {
    padding: 16px;
  }

  .bhost-ticket-page__header {
    margin-bottom: 18px;
  }
}

/* Ticket create custom selects */
.bhost-ticket-select {
  position: relative;
}

.bhost-ticket-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
}

.bhost-ticket-create-sidebar .bhost-checkout-dropdown {
  z-index: 1;
}

.bhost-ticket-create-sidebar .bhost-checkout-dropdown.is-open {
  z-index: 30;
}

.bhost-ticket-select.is-disabled .bhost-ticket-select__trigger,
.bhost-ticket-select__trigger:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.bhost-ticket-select__trigger-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.bhost-ticket-select__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c8c8d4;
  flex-shrink: 0;
}

.bhost-ticket-select__icon svg {
  width: 16px;
  height: 16px;
}

.bhost-ticket-select__trigger-content.is-tone-low .bhost-ticket-select__icon {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.bhost-ticket-select__trigger-content.is-tone-medium .bhost-ticket-select__icon {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
}

.bhost-ticket-select__trigger-content.is-tone-high .bhost-ticket-select__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.bhost-ticket-select__menu {
  padding: 10px;
  max-height: 320px;
}

.bhost-ticket-select__option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease;
}

.bhost-ticket-select__option:hover,
.bhost-ticket-select__option:focus,
.bhost-ticket-select__option.is-selected {
  outline: none;
  background: rgba(108, 99, 255, 0.12);
}

.bhost-ticket-select__option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bhost-ticket-select__option-body strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.bhost-ticket-select__option-body span {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #8a8a9a;
}

.bhost-ticket-select__option.is-tone-low .bhost-ticket-select__icon {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
}

.bhost-ticket-select__option.is-tone-medium .bhost-ticket-select__icon {
  background: rgba(234, 179, 8, 0.15);
  color: #fde047;
}

.bhost-ticket-select__option.is-tone-high .bhost-ticket-select__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

/* Finance page */
.bhost-finance-page {
  max-width: none;
  margin: 0;
  padding: 8px 0 40px;
  width: 100%;
}

.bhost-finance-page__header {
  margin-bottom: 28px;
}

.bhost-finance-page__title {
  margin: 0 0 10px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.bhost-finance-page__subtitle {
  margin: 0;
  color: #9a9aaa;
  line-height: 1.55;
  font-size: 0.95rem;
}

.bhost-finance-top {
  margin-bottom: 24px;
}

.bhost-finance-topup {
  margin: 0;
}

.bhost-finance-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bhost-finance-field {
  display: block;
}

.bhost-finance-field__label {
  display: block;
  margin-bottom: 8px;
  color: #9a9aaa;
  font-size: 0.85rem;
}

.bhost-finance-field__control {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.bhost-finance-field__control:focus-within {
  outline: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.08);
}

.bhost-panel-main .bhost-finance-page .bhost-finance-field__input,
.bhost-panel-main .bhost-finance-page .bhost-finance-field__input:hover,
.bhost-panel-main .bhost-finance-page .bhost-finance-field__input:focus,
.bhost-panel-main .bhost-finance-page .bhost-finance-field__input:focus-visible,
.bhost-panel-main .bhost-finance-page .bhost-finance-field__input:active {
  flex: 1;
  min-width: 0;
  background: transparent !important;
  border: 0 !important;
  border-width: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-shadow: 0 0 #0000 !important;
}

.bhost-finance-field__icon {
  flex-shrink: 0;
  color: #8a8a9a;
}

.bhost-finance-field__input {
  width: 100%;
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.bhost-finance-field__input:focus,
.bhost-finance-field__input:focus-visible,
.bhost-finance-page input[type='number']:focus,
.bhost-finance-page input[type='number']:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

.bhost-finance-field__input::-webkit-outer-spin-button,
.bhost-finance-field__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bhost-finance-field__hint {
  display: block;
  margin-top: 8px;
  color: #7a7a8a;
  font-size: 0.78rem;
}

.bhost-panel-main .bhost-account-page .bhost-input-group__input,
.bhost-panel-main .bhost-account-page .bhost-input-group__input:hover,
.bhost-panel-main .bhost-account-page .bhost-input-group__input:focus,
.bhost-panel-main .bhost-account-page .bhost-input-group__input:focus-visible,
.bhost-panel-main .bhost-account-page .bhost-input-group__input:active {
  flex: 1;
  min-width: 0;
  background: transparent !important;
  border: 0 !important;
  border-width: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-shadow: 0 0 #0000 !important;
}

.bhost-account-form .bhost-input-group__input:-webkit-autofill,
.bhost-account-form .bhost-input-group__input:-webkit-autofill:hover,
.bhost-account-form .bhost-input-group__input:-webkit-autofill:focus,
.bhost-account-form .bhost-input-group__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.04) inset !important;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.04) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.bhost-finance-method__picker {
  position: relative;
}

.bhost-finance-method__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.bhost-finance-method__trigger-icon {
  display: inline-flex;
  color: #8a8a9a;
}

.bhost-finance-method__trigger-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
}

.bhost-finance-method__chevron {
  flex-shrink: 0;
  color: #8a8a9a;
}

.bhost-finance-method__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 16px;
  background: #15182b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.bhost-finance-method__option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.bhost-finance-method__option:hover,
.bhost-finance-method__option.is-active {
  background: rgba(108, 99, 255, 0.14);
}

.bhost-finance-method__option-label {
  font-size: 0.92rem;
  font-weight: 600;
}

.bhost-finance-method__option-desc {
  font-size: 0.78rem;
  color: #8a8a9a;
}

.bhost-finance-form__actions {
  display: flex;
  justify-content: flex-end;
}

.bhost-finance-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bhost-finance-submit:hover {
  background: rgba(34, 197, 94, 0.22);
  transform: translateY(-1px);
}

.bhost-finance-note {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #9a9aaa;
  font-size: 0.85rem;
  line-height: 1.5;
}

.bhost-finance-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #7a7a8a;
}

.bhost-finance-note__muted {
  margin: 6px 0 0;
  color: #7a7a8a;
  font-size: 0.78rem;
}

.bhost-finance-history__empty {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.92rem;
}

.bhost-finance-history__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bhost-finance-history__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bhost-finance-history__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bhost-finance-history__main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.bhost-finance-history__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #9a9aaa;
  flex-shrink: 0;
}

.bhost-finance-history__title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
}

.bhost-finance-history__method {
  display: inline-block;
  margin-left: 8px;
  color: #8a8a9a;
  font-size: 0.78rem;
  font-weight: 500;
}

.bhost-finance-history__time {
  margin: 0;
  color: #7a7a8a;
  font-size: 0.78rem;
}

.bhost-finance-history__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.bhost-finance-history__amount {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.bhost-finance-history__status {
  color: #fde047;
  font-size: 0.75rem;
  font-weight: 600;
}

.bhost-finance-history__status--paid {
  color: #4ade80;
}

@media (max-width: 900px) {
  .bhost-finance-form__actions {
    justify-content: stretch;
  }

  .bhost-finance-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .bhost-finance-history__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .bhost-finance-history__meta {
    align-items: flex-start;
    padding-left: 48px;
  }
}

/* Admin overview */
.bhost-admin-overview {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px 0 40px;
  box-sizing: border-box;
}

.bhost-admin-overview__header {
  margin-bottom: 24px;
}

.bhost-admin-overview__title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.bhost-overview-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bhost-overview-grid {
  display: grid;
  gap: 20px;
}

.bhost-overview-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bhost-overview-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bhost-overview-card,
.bhost-overview-kpi {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(ellipse at 85% 50%, rgba(108, 99, 255, 0.22) 0%, transparent 62%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 28px;
  box-sizing: border-box;
}

.bhost-overview-kpi {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
}

.bhost-overview-kpi__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  flex-shrink: 0;
}

.bhost-overview-kpi__icon--orange {
  background: rgba(251, 146, 60, 0.16);
  color: #fb923c;
}

.bhost-overview-kpi__icon--teal {
  background: rgba(45, 212, 191, 0.16);
  color: #2dd4bf;
}

.bhost-overview-kpi__body {
  min-width: 0;
}

.bhost-overview-kpi__label {
  display: block;
  margin-bottom: 6px;
  color: #9a9aaa;
  font-size: 0.88rem;
}

.bhost-overview-kpi__value {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.bhost-overview-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.bhost-overview-card__title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.bhost-overview-card__subtitle {
  margin: 0;
  color: #9a9aaa;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bhost-overview-card__section-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.bhost-overview-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
}

.bhost-overview-badge--ok {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
}

.bhost-overview-badge--bad {
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.bhost-overview-badge--warn {
  background: rgba(234, 179, 8, 0.14);
  color: #fde047;
}

.bhost-overview-badge--muted {
  background: rgba(255, 255, 255, 0.06);
  color: #b8b8c8;
}

.bhost-overview-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.bhost-overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.bhost-overview-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8a9a;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-overview-table tbody td {
  padding: 12px 16px;
  color: #e4e4ef;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bhost-overview-table tbody tr:last-child td {
  border-bottom: 0;
}

.bhost-overview-table tfoot td {
  padding: 12px 16px;
  color: #9a9aaa;
  font-size: 0.88rem;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.bhost-overview-table th.col-status,
.bhost-overview-table td.col-status,
.bhost-overview-table th.col-auto,
.bhost-overview-table td.col-auto {
  width: 132px;
  white-space: nowrap;
}

.bhost-overview-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bhost-overview-stat {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bhost-overview-stat__label {
  margin: 0 0 8px;
  color: #8a8a9a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bhost-overview-stat__value {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.bhost-overview-stat__hint {
  margin: 6px 0 0;
  color: #8a8a9a;
  font-size: 0.78rem;
  line-height: 1.45;
}

.bhost-overview-note {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c8c8d4;
  font-size: 0.88rem;
  line-height: 1.55;
}

.bhost-overview-note__title {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 600;
}

.bhost-overview-empty {
  padding: 28px 20px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: #9a9aaa;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bhost-overview-metric {
  display: grid;
  gap: 8px;
}

.bhost-overview-metric + .bhost-overview-metric {
  margin-top: 18px;
}

.bhost-overview-metric__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.bhost-overview-metric__label {
  color: #e4e4ef;
  font-weight: 500;
}

.bhost-overview-metric__value {
  color: #9a9aaa;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bhost-overview-metric__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bhost-overview-metric__bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.bhost-overview-metric__bar > span.is-success { background: #22c55e; }
.bhost-overview-metric__bar > span.is-warning { background: #eab308; }
.bhost-overview-metric__bar > span.is-danger { background: #ef4444; }

.bhost-overview-metric__hint {
  margin: 0;
  color: #8a8a9a;
  font-size: 0.78rem;
}

.bhost-overview-alert {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.bhost-overview-alert--error {
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: rgba(239, 68, 68, 0.08);
  color: #fecaca;
}

.bhost-overview-alert--warning {
  border: 1px solid rgba(234, 179, 8, 0.28);
  background: rgba(234, 179, 8, 0.08);
  color: #fde68a;
}

.bhost-overview-alert__title {
  margin: 0 0 6px;
  color: #fff;
  font-weight: 600;
}

.bhost-overview-alert__hint {
  margin: 8px 0 0;
  color: #b8b8c8;
  font-size: 0.8rem;
}

.bhost-overview-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  color: #a5b4fc;
  text-decoration: none;
}

.bhost-overview-link:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.bhost-overview-link--sm {
  font-size: 0.78rem;
}

.bhost-overview-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

@media (max-width: 900px) {
  .bhost-overview-grid--2,
  .bhost-overview-split {
    grid-template-columns: 1fr;
  }

  .bhost-overview-card,
  .bhost-overview-kpi {
    padding: 20px 18px;
  }
}

@media (max-width: 640px) {
  .bhost-overview-stat-grid,
  .bhost-overview-grid--4 {
    grid-template-columns: 1fr;
  }

  .bhost-overview-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bhost-overview-metric__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bhost-overview-metric__value {
    text-align: left;
  }
}

