:root {
    --gradient-start: #5271ff;
    --gradient-end: #738cff;
    --primary-blue: #2d4feb;
    --card-bg: #f3f4ff;
    --field-bg: rgb(244, 244, 237);
    --text-dark: #1f2433;
    --text-muted: #7c8092;
    --shell-bg: #f5f6fb;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Work Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--shell-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
  }

  img {
    max-width: 100%;
    display: block;
  }

  main {
    width: 100%;
  }

  .app-shell {
    width: 100%;
    max-width: 425px;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(31, 36, 51, 0.15);
    display: flex;
    flex-direction: column;
  }

  .hero {
    position: relative;
    padding: 32px 32px 24px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hero__logo {
    width: 28px;
    height: 28px;
  }

  .hero__text h1 {
    margin: 8px 0 0;
    font-size: 34px;
    line-height: 1.2;
  }

  .hero__meta {
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }

  .hero__illustration {
    margin-top: 8px;
  }

  .auth {
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .auth__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .input-field {
    background: var(--field-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .input-field input {
    border: none;
    background: transparent;
    font: inherit;
    color: var(--text-dark);
    width: 100%;
  }

  .input-field input::placeholder {
    color: rgba(31, 36, 51, 0.55);
  }

  .input-field input:focus {
    outline: none;
  }

  .input-field__icon svg,
  .input-field__toggle svg {
    width: 22px;
    height: 22px;
    fill: var(--text-dark);
    opacity: 0.75;
  }

  .input-field__toggle {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .input-field__toggle.is-active svg {
    opacity: 1;
    fill: var(--gradient-start);
  }

  .checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
  }

  .checkbox input {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(31, 36, 51, 0.25);
    accent-color: var(--gradient-end);
  }

  .btn-primary {
    border: none;
    border-radius: 18px;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(120deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 15px 30px rgba(82, 113, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(82, 113, 255, 0.35);
  }

  .auth__note {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
  }

  .auth__cta {
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    color: var(--gradient-end);
  }

  .page-register .auth {
    margin-top: 16px;
  }

  .skew-panel {
    flex: 1;
    min-height: 140px;
    background: var(--gradient-start);
    clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
  }

  .page-dashboard {
    background: var(--shell-bg);
  }

  .dashboard-shell {
    width: 100%;
    max-width: 425px;
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--gradient-start), #b6c3ff);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(31, 36, 51, 0.35);
    padding-bottom: 40px;
  }

  .dashboard-hero {
    color: #fff;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dash-user {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .dash-user img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
  }

  .dash-user__welcome {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
  }

  .dash-user__name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #c1ff72;
  }

  .dash-refresh {
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
  }

  .dash-refresh img {
    width: 20px;
    height: 20px;
  }

  .dash-profit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .dash-profit p {
    margin: 0;
    font-size: 15px;
    opacity: 0.85;
  }

  .dash-profit h2 {
    margin: 4px 0 0;
    font-size: 42px;
    color: #c1ff72;
    font-weight: 400;
  }

  .btn-outline {
    border: none;
    border-radius: 28px;
    background: #fff;
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }

  .btn-outline img {
    width: 20px;
    height: 20px;
  }

  .dash-tabs {
    background: #fff;
    padding: 10px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    box-shadow: 0 15px 35px rgba(19, 33, 68, 0.15);
  }

  .dash-tab {
    border: none;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
  }

  .dash-tab + .dash-tab {
    border-left: 1px solid #000;
  }

  .dash-tab img {
    width: auto;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(32%) sepia(90%) saturate(1865%)
      hue-rotate(219deg) brightness(94%) contrast(96%);
  }


  .dash-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 15px;
    background: #2d4feb;
    margin: 0 25px;
    border-radius: 10px;
  }

  .metric-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .metric-card img {
    width: 32px;
    height: 32px;
  }

  .metric-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
  }

  .metric-card strong {
    display: block;
    font-size: 18px;
    margin-top: 4px;
  }

  .metric-card--calendar img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(94%) saturate(1890%)
      hue-rotate(214deg) brightness(96%) contrast(99%);
  }

  .dash-feed {
    padding: 16px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dash-feed header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dash-feed h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }

  .dash-feed a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
  }

  .feed-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .feed-card img {
    width: 48px;
    height: 48px;
    border-radius: 30px;
    object-fit: cover;
  }

  .feed-card__body {
    flex: 1;
  }

  .feed-card__title {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
  }

  .feed-card__title span {
    display: block;
    font-weight: 500;
    color: var(--gradient-end);
    margin-top: 4px;
  }

  .feed-card__meta {
    margin: 6px 0 0;
    color: var(--text-muted);
    font-size: 13px;
  }

  .feed-card--info img {
    padding: 0;
    border-radius: 18px;
  }

  .chip {
    border: none;
    border-radius: 999px;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: capitalize;
  }

  .chip--alert {
    background: #ff6b6b;
    color: #fff;
  }

  .bottom-nav {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    width: auto;
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 12px 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    max-width: 380px;
    margin: auto;
    z-index: 9;
  }

  .nav-item {
    text-align: center;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .nav-item img {
    width: auto;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  .nav-item.is-current {
    color: #fff;
    font-weight: 600;
  }

  .nav-floating {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    border: 4px solid #fff;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    margin-top: -40px;
  }

  .nav-floating img {
    filter: brightness(0) invert(1);
    width: 22px;
    height: 22px;
  }

  .dashboard-footer {
    text-align: center;
    color: #b9c1ff;
    letter-spacing: 0.8em;
    font-size: 14px;
    margin-top: 24px;
  }

  .active-plans-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .active-plans-heading {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(45, 79, 235, 0.15);
    align-self: flex-start;
  }

  .active-plans-heading img {
    width: 24px;
    height: 24px;
  }

  .plans-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .plan-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .plan-card__body {
    flex: 1;
  }

  .plan-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
  }

  .plan-card__meta {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--text-muted);
  }

  .plan-card__date {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--text-muted);
  }

  .chip--team {
    background: #ff6b6b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    white-space: nowrap;
  }

  .chip--team img {
    width: 16px;
    height: 16px;
  }

  .team-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .team-card {
    background: #fff;
    border-radius: 22px;
    padding: 10px 16px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .team-card img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
  }

  .team-card p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
  }

  .team-card span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--text-muted);
  }

  .team-chip {
    margin-left: auto;
    background: #fff3e0;
    color: #ff9800;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }

  .team-chip img {
    width: 18px;
    height: 18px;
  }


  .plan-link-wrap {
      background: #ddd;
      width: 100%;
      padding: 4px;
      border-radius: 20px;
      display: flex;
      justify-content: space-between;
  }
  .plan-link-wrap button {
      border-radius: 20px;
      border: none;
      background: transparent;
      color: #2d4feb;
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      padding: 4px 5px;
      cursor: pointer;
  }
  .plan-link-wrap .plan-link-active {
      background: #61a30d;
      color: #fff;
  }


  .level-strip {
    display: flex;
  }

  .level-strip__check {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
  }

  .level-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, #0f9d58, #5bd470);
    border-radius: 30px;
    padding: 5px;
  }

  .level-pill__info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .level-pill__info img {
    width: auto;
    height: 22px;
    filter: brightness(0) invert(1);
  }

  .level-pill__count {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: #22a652;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .level-pill.is-current .level-pill__count {
    background: #fff;
    color: #0f9d58;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .team-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .team-row {
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .team-row__index {
    width: 32px;
    height: 32px;
    border-radius: 30px;
    background: var(--primary-blue);
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .team-row__body {
    flex: 1;
  }

  .team-row__body h4 {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
  }

  .team-row__meta,
  .team-row__date {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--text-muted);
  }

  .team-row__badge {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .team-row__badge img {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .team-row__badge::after {
    content: attr(data-count);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
  }

  .team-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
  }

  .payment-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .payment-heading {
    background: #fff;
    border-radius: 20px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 12px 30px rgba(45, 79, 235, 0.15);
    align-self: flex-start;
  }

  .payment-heading img {
    width: 24px;
    height: 24px;
  }

  .payment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .payment-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: flex-start;
  }

  .payment-card__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .payment-card__col--number {
    align-items: center;
    justify-content: flex-start;
  }

  .payment-card__col--content {
    flex: 1;
  }

  .payment-card__col--actions {
    align-items: center;
    gap: 12px;
  }

  .payment-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
  }

  .payment-card__info {
    width: 100%;
  }

  .payment-card__info h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
  }

  .payment-card__meta,
  .payment-card__channel,
  .payment-card__date {
    margin: 6px 0 0;
    font-size: 13px;
    color: var(--text-muted);
  }

  .payment-card__trx {
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
  }

  .trx-status {
    width: 18px;
    height: 18px;
  }

  .trx-status--error {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 16px;
  }


  .btn-view-screenshot {
    border: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
    white-space: nowrap;
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .payment-card__buttons {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
  }

  .btn-payment {
    border: none;
    border-radius: 30px;
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: center;
  }

  .btn-confirm {
    background: var(--primary-blue);
  }

  .btn-not-received {
    background: #ff9800;
  }

  .btn-fake {
    background: #ff6b6b;
  }

  .payment-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
  }

  .plans-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .plans-heading {
    background: #fff;
    border-radius: 20px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 12px 30px rgba(45, 79, 235, 0.15);
    align-self: flex-start;
  }

  .plans-heading img {
    width: 24px;
    height: 24px;
  }

  .plans-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .plan-item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .plan-banner {
    border-radius: 15px;
    padding: 10px;
    color: #fff;
    text-align: center;
  }

  .plan-banner--silver {
    background: #9e9e9e;
  }

  .plan-banner--gold {
    background: #d19732;
  }

  .plan-banner--platinum {
    background: #cb6ce6;
  }

  .plan-banner__profit {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .plan-banner__invest {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: 0.9;
  }

  .plan-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .plan-card--coming-soon {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }

  .plan-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .plan-card__body {
    flex: 1;
  }

  .plan-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
  }

  .plan-card__detail {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--primary-blue);
  }

  .btn-buy-now {
    border: none;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  .coming-soon-badge {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }

  .coming-soon-icon {
    width: 48px;
    height: 48px;
    display: block;
  }

  .plans-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
  }

  .order-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .order-plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .order-plan-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .order-plan-body {
    flex: 1;
  }

  .order-plan-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
  }

  .order-plan-detail {
    margin: 8px 0 0;
    font-size: 11px;
    color: var(--primary-blue);
  }

  .leader-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }

  .leader-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .order-input-field {
    background: var(--field-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }

  .order-input-field input {
    border: none;
    background: transparent;
    font: inherit;
    color: var(--text-dark);
    width: 100%;
    font-size: 15px;
  }

  .order-input-field input::placeholder {
    color: rgba(31, 36, 51, 0.55);
  }

  .order-input-field input:focus {
    outline: none;
  }

  .leader-notice {
    margin: 0;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    text-align: justify;
  }

  .btn-verify {
    border: none;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(45, 79, 235, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-verify:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(45, 79, 235, 0.35);
  }

  .order-footer {
    text-align: left;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    margin-left: 24px;
    font-weight: 600;
    font-size: 14px;
  }

  .leader-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .leader-detail-item {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
  }

  .order-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
  }

  .btn-confirm-order {
    border: none;
    background: #4caf50;
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-confirm-order:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(76, 175, 80, 0.35);
  }

  .btn-cancel-order {
    border: none;
    background: #ff6b6b;
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .btn-cancel-order:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(255, 107, 107, 0.35);
  }

  .payment-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .payment-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .payment-sponsor {
    margin: 0;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
  }

  .payment-method-field {
    background: var(--field-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .payment-method-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
  }

  .payment-method-select {
    border: none;
    background: transparent;
    font: inherit;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    text-align: right;
  }

  .payment-method-select:focus {
    outline: none;
  }

  .account-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .account-detail-item {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
  }

  .details-title {
    margin: 8px 0 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }

  .file-upload-field {
    display: flex;
    gap: 12px;
    align-items: stretch;
  }

  .btn-browse {
    border: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 16px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
  }

  .file-display {
    flex: 1;
    background: var(--field-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }

  .file-status {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 600;
  }

  .important-notice {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .notice-header {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .warning-icon {
    font-size: 20px;
    color: #ffd700;
  }

  .notice-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
  }

  .notice-text {
    margin: 0;
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
  }

  .btn-submit-order {
    border: none;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(45, 79, 235, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
  }

  .btn-submit-order:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(45, 79, 235, 0.35);
  }

  .approval-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .approval-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .approval-heading-btn {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(45, 79, 235, 0.15);
  }

  .approval-heading-btn img {
    width: 20px;
    height: 20px;
  }

  .approval-case {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }

  .approval-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .approval-plan-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .approval-card__body {
    flex: 1;
  }

  .approval-plan-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
  }

  .approval-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .approval-detail-item {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .approval-status {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 600;
  }

  .approval-status--review {
    color: #ff6b6b;
  }

  .approval-status--active {
    color: var(--text-dark);
  }

  .approval-status--not-verified {
    color: #ff6b6b;
  }

  .status-active {
    color: var(--primary-blue);
  }

  .status-allot {
    color: #ff6b6b;
  }

  .approval-rewards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    min-width: 140px;
  }

  .approval-reward-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .approval-reward-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: right;
    letter-spacing: 0.02em;
  }

  .approval-reward-status {
    font-size: 13px;
    font-weight: 600;
  }

  .approval-reward-status--approved {
    color: #4caf50;
  }

  .approval-reward-status--review {
    color: #ff6b6b;
  }

  .approval-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
  }

  .developer-notes {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .developer-notes__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }

  .developer-notes__text {
    margin: 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
  }

  .approval-card .chip--team {
    align-self: flex-start;
    margin-top: 8px;
  }

  .approval-rewards--with-upload {
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }

  .approval-reward-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .approval-reward-labels .approval-reward-label {
    color: var(--primary-blue);
    font-size: 11px;
  }

  .btn-upload {
    border: none;
    background: #ff6b6b;
    color: #fff;
    border-radius: 12px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  }

  .btn-upload:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.25);
  }

  .profile-section {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .profile-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .profile-input-field {
    background: var(--field-bg);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
  }

  .profile-input-field input {
    border: none;
    background: transparent;
    font: inherit;
    color: var(--text-dark);
    width: 100%;
    font-size: 15px;
  }

  .profile-input-field input::placeholder {
    color: rgba(31, 36, 51, 0.55);
  }

  .profile-input-field input:focus {
    outline: none;
  }

  .payment-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
  }

  .payment-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
  }

  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    border-radius: 28px;
  }

  .toggle-slider:before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 50%;
  }

  .toggle-switch input:checked + .toggle-slider {
    background-color: var(--primary-blue);
  }

  .toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
  }

  .payment-fields {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }

  .toggle-switch input:checked ~ .payment-fields,
  .toggle-switch:has(input:checked) ~ .payment-fields {
    display: flex;
  }

  .payment-section-toggle:has(input:checked) ~ .payment-fields {
    display: flex;
  }

  .btn-update-profile {
    border: none;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(45, 79, 235, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
  }

  .btn-update-profile:active {
    transform: translateY(2px);
    box-shadow: 0 8px 18px rgba(45, 79, 235, 0.35);
  }

  .profile-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
  }

  .settings-header,
  .edit-profile-header {
    padding: 20px 24px 24px;
  }

  .settings-nav,
  .edit-profile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }

  .back-button,
  .refresh-button {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .back-button svg,
  .refresh-button svg {
    width: 24px;
    height: 24px;
  }

  .settings-title,
  .edit-profile-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    flex: 1;
  }

  .settings-user,
  .edit-profile-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .settings-avatar,
  .edit-profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
  }

  .settings-name,
  .edit-profile-name {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
  }

  .settings-username,
  .edit-profile-username {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }

  .settings-menu {
    padding: 0 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .settings-menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .settings-menu-item:last-child {
    border-bottom: none;
  }

  .settings-menu-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .settings-menu-item__icon svg {
    width: 20px;
    height: 20px;
  }

  .settings-menu-item__icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }

  .settings-menu-item__text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
  }

  .settings-menu-item__arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .settings-section-title {
    margin: 24px 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .terms-header {
    padding: 20px 24px 24px;
  }

  .terms-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .terms-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    flex: 1;
  }

  .terms-content {
    padding: 0 24px 120px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .terms-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
  }

  .terms-section {
    margin-bottom: 24px;
  }

  .terms-section:last-child {
    margin-bottom: 0;
  }

  .terms-section-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }

  .terms-list {
    margin: 0 0 16px;
    padding-left: 20px;
    list-style-type: decimal;
  }

  .terms-list li {
    margin-bottom: 8px;
    padding-left: 8px;
  }

  .terms-list li:last-child {
    margin-bottom: 0;
  }

  .terms-sublist {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style-type: disc;
  }

  .terms-sublist li {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .terms-subtitle {
    margin: 16px 0 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
  }

  .terms-notice {
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #ffd700;
  }

  .terms-notice-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #ffd700;
  }

  .terms-notice .terms-list {
    margin-bottom: 0;
  }

  .terms-text p {
    margin: 0 0 12px;
  }

  .terms-text p:last-child {
    margin-bottom: 0;
  }

  .terms-text strong {
    font-weight: 700;
    color: #fff;
  }

  .terms-footer {
    text-align: center;
    color: #6e7dff;
    letter-spacing: 0.4em;
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 20px;
  }

  /* Withdrawal Request Styles */
  .withdraw-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }

  .withdraw-banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .withdraw-banner {
    background: #fff;
    border-radius: 28px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.15);
    align-self: flex-start;
  }

  .withdraw-banner img {
    width: 28px;
    height: 28px;
  }

  .withdraw-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.85;
    color: #fff;
    padding-left: 4px;
  }

  .available-balance {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .available-balance span {
    font-size: 13px;
    opacity: 0.85;
    color: #fff;
    font-weight: 500;
  }

  .balance-amount {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .balance-amount strong {
    font-size: 36px;
    font-weight: 600;
    color: #c1ff72;
    line-height: 1;
  }

  .balance-amount svg {
    width: 18px;
    height: 18px;
    color: #c1ff72;
  }

  .withdraw-content {
    padding: 24px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .withdraw-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .withdraw-label {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }

  .withdraw-input {
    background: var(--field-bg);
    border: none;
    border-radius: 18px;
    padding: 16px 20px;
    font-size: 15px;
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .withdraw-input::placeholder {
    color: var(--text-muted);
  }

  .withdraw-input:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(45, 79, 235, 0.2);
  }

  .withdraw-method {
    background: var(--field-bg);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .method-label {
    font-size: 15px;
    color: var(--text-muted);
  }

  .withdraw-select {
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
  }

  .transaction-summary {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .summary-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
  }

  .summary-value {
    font-weight: 600;
    color: var(--text-dark);
  }

  .you-will-get {
    background: var(--field-bg);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .you-will-get span {
    font-size: 15px;
    color: var(--text-muted);
  }

  .you-will-get strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .btn-withdraw-request {
    background: var(--primary-blue);
    border: none;
    border-radius: 28px;
    padding: 16px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(45, 79, 235, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-withdraw-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(45, 79, 235, 0.35);
  }

  .btn-withdraw-request:active {
    transform: translateY(0);
  }

  .btn-withdraw-request img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  @media (min-height: 760px) {
    .hero {
      padding-bottom: 40px;
    }

    .hero__illustration {
      margin-top: 24px;
    }
  }

