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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #fff;
      padding-top: 50px;
    }

    /* ========================================
       MINIMAL HEADER
       ======================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: white;
      border-bottom: 1px solid #e0e0e0;
      z-index: 1000;
      height: 50px;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
      padding: 0 20px;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-left a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
    }

    .site-icon {
      font-size: 24px;
      line-height: 1;
    }

    .site-name {
      font-size: 18px;
      font-weight: 700;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }

    .site-tagline {
      font-size: 11px;
      color: #666;
      font-weight: 500;
      line-height: 1.2;
    }

    .header-center {
      display: flex;
      gap: 20px;
      font-size: 13px;
      color: #000;
      align-items: center;
    }

    .header-stats {
      display: flex;
      align-items: center;
      gap: 16px;
      white-space: nowrap;
    }

    .stat {
      white-space: nowrap;
    }

    .stat-value {
      font-weight: 600;
      margin-left: 4px;
    }

    .stat-value.sold {
      color: #ef4444;
    }

    .stat-value.available {
      color: #10b981;
    }

    /* Header Controls */
    .header-controls {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .control-btn {
      padding: 6px 12px;
      background: #111;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s;
    }

    .control-btn:hover {
      background: #333;
    }

    .control-btn:active {
      transform: scale(0.98);
    }

    .line-input {
      padding: 6px 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 12px;
      width: 125px;
      transition: border 0.2s;
    }

    .line-input:focus {
      outline: none;
      border-color: #111;
    }

    .live-counter {
      font-size: 12px;
      color: #666;
      font-weight: 500;
    }

    .live-counter #liveCount {
      font-weight: 700;
      color: #10b981;
    }

    /* ========================================
       HAMBURGER MENU
       ======================================== */
    .hamburger {
      width: 24px;
      height: 20px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: #111;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .menu-dropdown {
      position: fixed;
      top: 50px;
      right: 0;
      width: 250px;
      background: white;
      border-left: 1px solid #e0e0e0;
      border-bottom: 1px solid #e0e0e0;
      box-shadow: -2px 2px 10px rgba(0,0,0,0.05);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 999;
    }

    .menu-dropdown.active {
      transform: translateX(0);
    }

    .menu-dropdown ul {
      list-style: none;
    }

    .menu-dropdown li {
      border-bottom: 1px solid #f5f5f5;
      transition: background 0.2s;
    }

    .menu-dropdown li a {
      display: block;
      padding: 16px 20px;
      text-decoration: none;
      color: #333;
      font-size: 14px;
    }

    .menu-dropdown li:hover {
      background: #f9f9f9;
    }

    .menu-dropdown li:last-child {
      border-bottom: none;
    }

    /* ========================================
       FULL SCREEN LINES
       ======================================== */
    .container {
      width: 100%;
      min-height: calc(100vh - 50px);
      overflow-x: hidden;
    }

    .line {
      height: 90px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      padding: 0 15px;
      font-size: 15px;
      letter-spacing: 0.3px;
      transition: all 0.2s;
      scroll-margin-top: 62px; /* Header (50px) + buffer (12px) */
    }

    .line.sold {
      gap: 0;
    }

    .line-no {
      /* max-width: 30px; */
      padding-right: 2px;
      margin-right: 10px;
      flex: 0 0 auto;
      font-weight: 700;
      opacity: 0.9;
    }

    .line-main {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
      flex: 1;
    }

    .line-title-row {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      font-size: 10px;
      line-height: 1.05;
    }

    .line-flag {
      font-size: 16px;
      line-height: 1;
      /* Support for flag-icons library */
      width: 1.33em;
      height: 1em;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      display: inline-block;
      vertical-align: middle;
    }

    .line-name {
      text-decoration: none;
      color: inherit;
      font-size: 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 600px;
    }

    .line-message {
      font-size: 13px;
      line-height: 1.2;
      opacity: 0.96;
      white-space: normal;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      overflow-wrap: anywhere;
      word-break: break-word;
      max-width: none;
      width: 100%;
      padding-right: 0;
    }

    .line-message a {
      color: inherit;
      text-decoration: none;
    }

    .line-message a:hover {
      text-decoration: underline;
    }

    .line-socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .line-social-link {
      font-size: 10px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.25);
      color: inherit;
      text-decoration: none;
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .blink-border {
      animation: blinkBorder 1.1s ease-in-out 0s 2;
      outline: 2px solid transparent;
      outline-offset: -2px;
    }

    .jump-highlight {
      z-index: 10;
      position: relative;
      box-shadow:
        inset 0 0 0 3px rgba(255, 215, 0, 0.95),
        0 10px 26px rgba(0, 0, 0, 0.22);
    }

    @keyframes blinkBorder {
      0% {
        outline-color: rgba(255, 255, 255, 0);
      }
      25% {
        outline-color: rgba(255, 255, 255, 0.95);
      }
      50% {
        outline-color: rgba(255, 255, 255, 0);
      }
      75% {
        outline-color: rgba(0, 0, 0, 0.35);
      }
      100% {
        outline-color: rgba(255, 255, 255, 0);
      }
    }

    .line:hover {
      box-shadow:
        inset 0 0 0 3px rgba(255, 215, 0, 0.95),
        0 10px 26px rgba(0, 0, 0, 0.18);
    }

    /* Only change background on hover for available lines,
       so sold lines keep their custom DB background_color. */
    .line.available:hover {
      background: #fafafa;
    }

    .sold {
      color: #111;
      font-weight: 500;
    }

    .available {
      color: #1d1b1b;
    }

    .line.available {
      cursor: pointer;
    }

    .line-add {
      margin-left: auto;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: #111;
      color: #fff;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      line-height: 1;
      font-weight: 700;
      opacity: 0;
      transform: scale(0.92);
      transition: opacity 0.15s ease, transform 0.15s ease, background 0.15s ease;
      flex: 0 0 auto;
    }

    .line.available:hover .line-add {
      opacity: 1;
      transform: scale(1);
    }

    .line-add:hover {
      background: #333;
    }

    /* Share button on sold lines */
    .line-share {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      opacity: 0.9;
      transform: scale(1);
      transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
      flex: 0 0 auto;
      margin-left: auto;
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .line.sold:hover .line-share {
      opacity: 1;
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    }

    .line-share:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(102, 126, 234, 0.6);
    }

    /* ========================================
       SHARE MODAL
       ======================================== */
    .share-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .share-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    .share-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .share-modal-dialog {
      position: relative;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
      width: 90%;
      max-width: 420px;
      transform: scale(0.95);
      transition: transform 0.2s ease;
    }

    .share-modal.is-open .share-modal-dialog {
      transform: scale(1);
    }

    .share-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #eee;
    }

    .share-modal-title {
      font-size: 16px;
      font-weight: 700;
      color: #111;
    }

    .share-modal-close {
      width: 28px;
      height: 28px;
      border: none;
      background: #f3f4f6;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      transition: background 0.15s;
    }

    .share-modal-close:hover {
      background: #e5e7eb;
    }

    .share-modal-body {
      padding: 20px;
    }

    .share-link-container {
      display: flex;
      gap: 8px;
    }

    .share-link-input {
      flex: 1;
      padding: 10px 14px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 13px;
      font-family: monospace;
      background: #f9fafb;
      color: #333;
    }

    .share-link-input:focus {
      outline: none;
      border-color: #667eea;
    }

    .share-copy-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .share-copy-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .copy-icon {
      font-size: 14px;
    }

    .share-copied-msg {
      margin-top: 12px;
      padding: 8px 12px;
      background: #d1fae5;
      color: #065f46;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      opacity: 0;
      transform: translateY(-5px);
      transition: opacity 0.2s, transform 0.2s;
    }

    .share-copied-msg[aria-hidden="false"] {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      text-align: center;
      padding: 60px 20px;
      color: #888;
      font-size: 14px;
      line-height: 1.8;
      background: #fafafa;
    }

    .footer p {
      margin: 8px 0;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 768px) {
      .header-center {
        gap: 15px;
        font-size: 12px;
      }

      .site-title {
        font-size: 14px;
      }

      .site-icon {
        font-size: 18px;
      }

      .menu-dropdown {
        width: 100%;
      }

      .line {
        padding: 0 20px;
        font-size: 14px;
        height: 55px;
      }

      .line-title-row {
        font-size: 10px;
      }

      .line-name {
        font-size: 9px;
      }

      .line-message {
        font-size: 13px;
        line-height: 1.15;
      }

      .line-social-link {
        font-size: 9px;
        padding: 3px 7px;
      }

      .content-page {
        padding: 25px;
      }

      .contact-methods {
        grid-template-columns: 1fr;
      }

      .social-links {
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .header-center span:not(.stat-value) {
        display: none;
      }

      .stat {
        font-size: 11px;
      }

      .content-page h1 {
        font-size: 24px;
      }
    }

    /* ========================================
       CONTENT PAGES STYLES
       ======================================== */
    .page-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px 80px;
      min-height: calc(100vh - 50px);
      background: #f5f5f5;
    }

    .content-page {
      background: white;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      color: #333;
    }

    .content-page h1 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #111;
      border-bottom: 3px solid #667eea;
      padding-bottom: 15px;
    }

    .content-page h2 {
      font-size: 24px;
      margin-top: 30px;
      margin-bottom: 15px;
      color: #333;
    }

    .content-page h3 {
      font-size: 18px;
      margin-top: 20px;
      margin-bottom: 10px;
      color: #444;
    }

    .content-page p {
      line-height: 1.8;
      color: #333;
      margin-bottom: 15px;
    }

    .content-page ul,
    .content-page ol {
      margin: 15px 0;
      padding-left: 30px;
      color: #333;
    }

    .content-page li {
      margin: 10px 0;
      line-height: 1.6;
      color: #333;
    }

    .content-page a {
      color: #5046e5;
      text-decoration: underline;
      font-weight: 500;
    }

    .content-page a:hover {
      color: #3730a3;
      text-decoration: underline;
    }

    .content-section {
      margin: 30px 0;
    }

    .last-updated {
      font-size: 13px;
      color: #999;
      margin-bottom: 30px;
      font-style: italic;
    }

    .cta-section {
      margin-top: 50px;
      text-align: center;
      padding: 30px;
      background: #f8f9ff;
      border-radius: 8px;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 32px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff !important;
      text-decoration: none !important;
      border-radius: 8px;
      font-weight: 700;
      font-size: 16px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
      color: #fff !important;
    }

    /* FAQ specific styles */
    .faq-item {
      margin: 25px 0;
      padding: 20px;
      background: #f8f9ff;
      border-radius: 6px;
      border-left: 4px solid #667eea;
    }

    .faq-item h3 {
      margin-top: 0;
      color: #667eea;
    }

    /* Contact page styles */
    .contact-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }

    .contact-card {
      padding: 25px;
      background: #f8f9ff;
      border-radius: 8px;
      text-align: center;
    }

    .contact-icon {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .contact-card h3 {
      margin: 10px 0;
      font-size: 16px;
      color: #333;
    }

    .contact-card p {
      font-size: 13px;
      color: #333;
      margin: 5px 0;
    }

    .contact-note {
      font-size: 12px;
      color: #666;
      font-style: italic;
    }

    .contact-form {
      margin: 30px 0;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #333;
      font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 14px;
      font-family: inherit;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #667eea;
    }

    .submit-button {
      padding: 12px 40px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin: 20px 0;
      padding: 20px;
      background: #f8f9ff;
      border-radius: 8px;
    }

    .social-link {
      padding: 10px 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 6px;
      color: #fff !important;
      text-decoration: none !important;
      font-weight: 600;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .social-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
      color: #fff !important;
    }

    .response-time {
      margin-top: 40px;
      padding: 20px;
      background: #fff9e6;
      border-radius: 6px;
      border-left: 4px solid #fbbf24;
    }

    .acceptance-note {
      margin-top: 40px;
      padding: 25px;
      background: #fff4e6;
      border-radius: 6px;
      border-left: 4px solid #f59e0b;
    }

    .acceptance-note p {
      color: #92400e;
      margin: 0;
    }

    /* Menu dropdown link styles */
    .menu-dropdown a {
      color: inherit;
      text-decoration: none;
      display: block;
    }

    /* ========================================
       SIMPLE MODAL (no dependencies)
       ======================================== */
    body.modal-open {
      overflow: hidden;
    }

    .bol-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      z-index: 99999;
    }

    .bol-modal.bol-modal-preview {
      z-index: 100100;
      background: rgba(0, 0, 0, 0.60);
    }

    .bol-modal.open {
      display: flex;
    }

    /* Claim modal as right-side pane (drawer) */
    #claimModal.bol-modal {
      display: flex;
      opacity: 0;
      pointer-events: none;
      align-items: stretch;
      justify-content: flex-end;
      padding: 0;
      transition: opacity 0.15s ease;
    }

    #claimModal.bol-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .bol-modal-dialog {
      width: 100%;
      max-width: 520px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      overflow: hidden;
      max-height: calc(100vh - 80px);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .bol-modal-loading {
      position: absolute;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(1px);
      z-index: 50;
    }

    #claimModal.is-saving .bol-modal-loading {
      display: flex;
    }

    .bol-modal-loading-inner {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(17, 17, 17, 0.90);
      color: #fff;
      font-weight: 800;
      font-size: 12px;
      box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    }

    .bol-modal-loading-spinner {
      width: 14px;
      height: 14px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: rgba(255, 255, 255, 0.95);
      border-radius: 999px;
      animation: bolSpin 0.8s linear infinite;
    }

    #claimModal .bol-modal-dialog {
      height: 100vh;
      max-height: 100vh;
      width: min(560px, 92vw);
      max-width: none;
      border-radius: 0;
      transform: translateX(100%);
      transition: transform 0.18s ease;
    }

    #claimModal.open .bol-modal-dialog {
      transform: translateX(0);
    }

    .bol-modal-preview .bol-modal-dialog {
      max-width: 560px;
    }

    .bol-modal-header {
      padding: 10px 12px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .bol-modal-title {
      font-weight: 800;
      font-size: 15px;
      color: #111;
    }

    .bol-modal-subtitle {
      font-size: 11px;
      color: #666;
      margin-top: 2px;
    }

    .bol-modal-close {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      border: 1px solid #eee;
      background: #fff;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      color: #333;
    }

    .bol-modal-close:hover {
      background: #fafafa;
    }

    .bol-modal-body {
      padding: 8px 10px 10px;
      overflow: auto;
    }

    #claimModal .bol-modal-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    #claimModal .bol-modal-scroll {
      flex: 1;
      overflow: auto;
      padding-right: 2px;
    }

    .bol-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 6px;
      align-items: center;
    }

    .bol-tab {
      flex: 1;
      border: 1px solid #e5e7eb;
      background: #f8fafc;
      color: #111;
      border-radius: 10px;
      padding: 7px 8px;
      font-weight: 700;
      font-size: 12px;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .bol-spinner {
      width: 12px;
      height: 12px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: rgba(255, 255, 255, 0.95);
      border-radius: 999px;
      display: none;
      animation: bolSpin 0.8s linear infinite;
    }

    .bol-btn.is-loading .bol-spinner {
      display: inline-block;
    }

    @keyframes bolSpin {
      to { transform: rotate(360deg); }
    }

    .bol-tab:hover {
      background: #eef2ff;
      border-color: #c7d2fe;
    }

    .bol-tab.active {
      background: #111;
      border-color: #111;
      color: #fff;
    }

    .bol-tab-panel {
      display: none;
    }

    .bol-tab-panel.active {
      display: block;
    }

    .bol-style-group {
      margin-top: 4px;
      margin-bottom: 6px;
      padding-top: 4px;
      border-top: 1px dashed #eee;
    }

    .bol-style-title {
      font-size: 10px;
      font-weight: 900;
      color: #111;
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

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

    .bol-style-option {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: 800;
      font-size: 11px;
      color: #111;
    }

    .bol-style-option:hover {
      border-color: #c7d2fe;
      background: #eef2ff;
    }

    .bol-style-option input {
      transform: scale(0.95);
    }

    .bol-format-bar {
      display: flex;
      gap: 8px;
      margin-top: 0;
    }

    .bol-format-btn {
      width: 26px;
      height: 22px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      background: #fff;
      cursor: pointer;
      font-weight: 900;
      color: #111;
      line-height: 1;
      user-select: none;
    }

    .bol-format-btn:hover {
      border-color: #c7d2fe;
      background: #eef2ff;
    }

    .bol-format-btn.active {
      background: #111;
      border-color: #111;
      color: #fff;
    }

    .bol-format-btn#claimItalicBtn {
      font-style: italic;
    }

    .bol-msg-bold .bol-preview-message,
    .bol-msg-bold .line-message {
      font-weight: 900;
    }

    .bol-msg-italic .bol-preview-message,
    .bol-msg-italic .line-message {
      font-style: italic;
    }

    @media (min-width: 520px) {
      .bol-style-grid {
          grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .bol-preview-hidden {
      display: none;
    }

    .bol-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 6px;
    }

    .bol-field label {
      font-size: 12px;
      font-weight: 700;
      color: #333;
    }

    /* Put format buttons + counter on one line (Message tab) */
    .bol-format-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 2px;
    }

    .bol-field input[type="text"],
    .bol-field input[type="url"],
    .bol-field select,
    .bol-field textarea {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 8px 10px;
      font-size: 12px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .bol-field textarea {
      resize: vertical;
      min-height: 34px;
    }

    .bol-field input[type="text"]:focus,
    .bol-field input[type="url"]:focus,
    .bol-field select:focus,
    .bol-field textarea:focus {
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    }

    .bol-help {
      margin-top: 0;
      font-size: 11px;
      color: #6b7280;
      text-align: right;
    }

    .bol-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .bol-row-3 {
      grid-template-columns: 1.6fr 1fr 1fr;
      align-items: end;
    }

    .bol-field input[type="color"] {
      width: 100%;
      height: 34px;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 4px;
      background: #fff;
      cursor: pointer;
    }

    .bol-modal-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 12px;
      padding-top: 16px;
      background: #fff;
      border-top: 1px solid #eee;
    }

    .bol-actions-error {
      font-size: 13px;
      font-weight: 600;
      color: #dc2626;
      display: none;
      text-align: center;
    }

    .bol-invalid {
      border-color: #dc2626 !important;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
    }

    .bol-actions-right {
      display: flex;
      gap: 6px;
      align-items: center;
      justify-content: flex-end;
    }

    .bol-actions-link {
      font-weight: 800;
      color: #111;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .bol-actions-link:hover {
      color: #667eea;
    }

    .bol-preview {
      margin-top: 6px;
      padding-top: 4px;
      border-top: 1px solid #f2f2f2;
    }

    #claimModal .bol-inline-preview {
      margin-bottom: 4px;
    }

    /* Preview line uses same classes as real lines but compact */
    .bol-inline-preview .line.preview-line {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      height: auto !important;
      min-height: 70px;
      border-radius: 10px;
      padding: 10px 12px !important;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border: 1px solid #eee;
    }

    .bol-inline-preview .line.preview-line .line-no {
      font-size: 12px;
      padding-right: 8px;
    }

    .bol-inline-preview .line.preview-line .line-main {
      gap: 4px;
    }

    .bol-inline-preview .line.preview-line .line-title-row {
      gap: 6px;
    }

    .bol-inline-preview .line.preview-line .line-flag {
      font-size: 14px;
    }

    .bol-inline-preview .line.preview-line .line-name {
      font-size: 13px;
    }

    .bol-inline-preview .line.preview-line .line-message {
      font-size: 12px;
      line-height: 1.3;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }

    .bol-inline-preview .line.preview-line .line-socials {
      gap: 6px;
      margin-top: 4px;
    }

    .bol-inline-preview .line.preview-line .line-social-link {
      font-size: 10px;
      padding: 3px 8px;
    }

    .bol-inline-preview .line.preview-line .line-social-link.disabled {
      opacity: 0.5;
      pointer-events: none;
    }

    /* PPT style override for compact preview */
    .bol-inline-preview .line.preview-line.ppt-style {
      max-width: none !important;
      margin: 0 !important;
      padding: 12px 14px !important;
      min-height: auto !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-no {
      font-size: 12px !important;
      padding: 4px 10px !important;
      margin-bottom: 0 !important;
      margin-right: 10px !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-title-row {
      margin-bottom: 6px !important;
      gap: 8px !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-flag {
      font-size: 18px !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-name {
      font-size: 14px !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-message {
      padding: 10px 12px !important;
      font-size: 12px !important;
      margin: 8px 0 !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-socials {
      margin-top: 8px !important;
      gap: 6px !important;
    }

    .bol-inline-preview .line.preview-line.ppt-style .line-social-link {
      padding: 6px 12px !important;
      font-size: 10px !important;
    }

    .bol-preview-label {
      font-size: 12px;
      font-weight: 800;
      color: #666;
      margin-bottom: 10px;
      letter-spacing: 0.4px;
      text-transform: uppercase;
    }

    .bol-btn {
      border: none;
      border-radius: 10px;
      padding: 11px 14px;
      font-weight: 800;
      cursor: pointer;
      font-size: 14px;
    }

    .bol-btn-ghost {
      background: #f3f4f6;
      color: #111;
    }

    .bol-btn-ghost:hover {
      background: #e9eaee;
    }

    .bol-btn-primary {
      background: #111;
      color: #fff;
    }

    .bol-btn-primary:hover {
      background: #333;
    }

    .bol-btn-checkout {
      width: 100%;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: 700;
      border-radius: 10px;
      transition: transform 0.15s, box-shadow 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .bol-btn-checkout:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .bol-btn-checkout:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .bol-btn-checkout.is-loading .bol-btn-text {
      opacity: 0;
    }

    .bol-btn-checkout.is-loading .bol-spinner {
      display: block;
      position: absolute;
    }

    .bol-btn-checkout {
      position: relative;
    }

    @media (max-width: 520px) {
      .bol-row {
        grid-template-columns: 1fr;
      }
    }