  @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

  body {
    font-family: "Metropolis", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  html {
    overflow-x: hidden;
    width: 100%;
  }

  .container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
  }

  .header {
    background: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo {
    color: #dc3545;
    font-weight: bold;
    font-size: 18px;
    max-width: 160px;
    height: auto;
  }

  .user-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.08);
    transition: background 0.2s;
  }

  .user-icon svg {
    display: block;
    color: #fff;
  }

  @media (max-width: 600px) {
    .header {
      align-items: flex-start;
      padding: 10px 8px;
    }

    .logo {
      max-width: 120px;
      font-size: 16px;
    }

    .user-icon {
      width: 38px;
      height: 38px;
      margin-top: 8px;
    }
  }

  .banner {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    background-image: url("images/mbWojB3REAtt.jpg");
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .banner-content {
    position: relative;
    z-index: 1;
    padding: 20px;
  }

  .attention-section {
    text-align: center;
    padding: 5px;
  }

  .attention-title {
    color: #dc3545;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .progress-bar {
    background: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
  }

  .warning-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
  }

  .highlight {
    font-weight: bold;
  }

  .warning-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .pay-button {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
  }

  .pay-button:hover {
    background: #c82333;
    transform: translateY(-2px);
  }

  .tax-note {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    margin: 20px;
    font-size: 16px;
  }

  .pending-message {
    text-align: center;
    color: #6c757d;
    margin: 30px 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .faq-section {
    margin-top: 50px;
    padding: 20px;
  }

  .faq-title {
    color: #dc3545;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-question {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .faq-answer {
    color: #333;
    line-height: 1.5;
    padding-left: 20px;
  }

  .payment-interface {
    display: none;
    padding: 20px;
    margin: 0;
  }

  .price {
    font-size: 32px;
    font-weight: bold;
    color: #374151;
    text-align: center;
    margin: 20px 0;
  }

  .pix-code-container {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    margin: 20px 0;
    font-family: monospace;
    font-size: 14px;
    color: #6b7280;
    word-break: break-all;
  }

  .copy-button {
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 10px 0;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .copy-button:hover {
    background: #2563eb;
  }

  .timer-section {
    background: #f3f4f6;
    padding: 15px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    border-radius: 8px;
    margin: 20px 0;
  }

  .status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    color: #6b7280;
    font-size: 14px;
  }

  .loading-dots {
    display: inline-flex;
    gap: 2px;
  }

  .loading-dots span {
    width: 4px;
    height: 4px;
    background: #6b7280;
    border-radius: 50%;
    animation: loading 1.4s infinite ease-in-out;
  }

  .loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
  }

  .loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
  }

  @keyframes loading {

    0%,
    80%,
    100% {
      transform: scale(0);
    }

    40% {
      transform: scale(1);
    }
  }

  .instructions {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
  }

  .instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #374151;
  }

  .instruction-number {
    background: #374151;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
  }

  .verify-button {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .verify-button:hover {
    background: #059669;
  }

  .notification-popup {
    position: fixed;
    top: 20px;
    right: -300px;
    background-color: #168821;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .notification-popup.show {
    right: 20px;
  }

  .fade-in {
    animation: fadeIn 0.5s ease-in;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .hidden {
    display: none !important;
  }

  #loadingPage.hidden,
  #customLoading.hidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .progress-bar-animated {
    margin-bottom: 20px;
  }

  .progress-bar-track {
    background: #f3f4f6;
    border-radius: 20px;
    width: 100%;
    height: 22px;
    position: relative;
    overflow: hidden;
  }

  .progress-bar-fill {
    background: #dc3545;
    height: 100%;
    width: 0;
    border-radius: 20px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .progress-bar-label {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    color: #333;
    font-weight: bold;
    font-size: 14px;
    line-height: 22px;
    z-index: 2;
    pointer-events: none;
  }

  #loadingPage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .loading-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
  }

  .price-cross {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .textd {
    font-size: 18px;
    line-height: 1.6;
    color: black;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 400;
  }

  .container2 {
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 28%);
    margin-top: 40px;
  }

  .express-tag {
    background-color: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 5px;
  }

  .withdraw-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
  }

  .modal-content {
    background-color: #fff;
    width: 90%;
    padding: 5px;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }