
  /* Root container with modern gradient background */
  .container.svelte-1m5kl47 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
    min-height: 100vh;
    color: white;
  }

  /* Header section with enhanced typography */
  .title.svelte-1m5kl47 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--main) 0%, var(--main-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .sub_title.svelte-1m5kl47 {
    font-size: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 600;
  }

  .sub_title2.svelte-1m5kl47 {
    font-size: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    font-weight: 400;
  }

  /* Hero text styling */
  .hero-text.svelte-1m5kl47 {
    text-align: center;
    margin-bottom: 32px;
  }

  /* (unused) .hero-text-left {
    text-align: left;
    margin-bottom: 32px;
  }*/

  .hero-title.svelte-1m5kl47 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 24px;
  }

  .hero-text.svelte-1m5kl47 p:where(.svelte-1m5kl47) /* (unused) .hero-text-left p*/ {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0;
    line-height: 1.6;
    padding-left: 0 !important;
    border-left: none !important;
  }

  /* Modern stats dashboard */
  .stats.svelte-1m5kl47 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 60px auto;
    max-width: 800px;
  }

  .stats_sub.svelte-1m5kl47 {
    background: rgba(40, 40, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(60, 60, 60, 0.5);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .stats_sub.svelte-1m5kl47::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--main) 0%, var(--main-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .stats_sub.svelte-1m5kl47:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31, 223, 159, 0.15);
    border-color: var(--main);
  }

  .stats_sub.svelte-1m5kl47:hover::before {
    opacity: 1;
  }

  .stats_sub.svelte-1m5kl47 img:where(.svelte-1m5kl47) {
    height: 48px;
    width: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(31, 223, 159, 0.3));
  }

  .stats_sub.svelte-1m5kl47 p:where(.svelte-1m5kl47) {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .stats_sub.svelte-1m5kl47 b:where(.svelte-1m5kl47) {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main);
    display: block;
    margin-top: 8px;
  }

  /* Enhanced section styling */
  .section.svelte-1m5kl47 {
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(60, 60, 60, 0.3);
    border-radius: 24px;
    padding: 48px 40px;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
  }

  .section.svelte-1m5kl47::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(31, 223, 159, 0.05) 0%,
      rgba(34, 240, 171, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .section.svelte-1m5kl47:hover::before {
    opacity: 1;
  }

  .s_title.svelte-1m5kl47 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: white;
    position: relative;
  }

  .s_title.svelte-1m5kl47::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main) 0%, var(--main-light) 100%);
    border-radius: 2px;
  }

  .s_sub.svelte-1m5kl47 {
    font-size: 1.125rem !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 32px !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    border-left: none !important;
  }

  /* Step styling */
  .step.svelte-1m5kl47 {
    margin: 32px 0;
    padding: 24px 0;
    border-bottom: 1px solid rgba(60, 60, 60, 0.3);
  }

  .step.svelte-1m5kl47:last-child {
    border-bottom: none;
  }

  .step-title.svelte-1m5kl47 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 16px;
  }

  .step-content.svelte-1m5kl47 p:where(.svelte-1m5kl47) {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 12px 0;
    font-size: 1rem;
  }

  .step-content.svelte-1m5kl47 strong:where(.svelte-1m5kl47) {
    color: var(--main);
    font-weight: 600;
  }

  /* Enhanced text content */
  .section.svelte-1m5kl47 p:where(.svelte-1m5kl47) {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 16px 0;
    font-size: 1rem;
  }

  .section.svelte-1m5kl47 div:where(.svelte-1m5kl47) {
    margin: 24px 0;
  }

  .section.svelte-1m5kl47 strong:where(.svelte-1m5kl47) {
    color: var(--main);
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 8px;
  }

  .section.svelte-1m5kl47 div:where(.svelte-1m5kl47) p:where(.svelte-1m5kl47) {
    margin-top: 8px;
    padding-left: 16px;
    border-left: 2px solid var(--main);
  }

  /* Modern button styling */
  .button.svelte-1m5kl47 {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-light) 100%);
    color: var(--main-text);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(31, 223, 159, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    position: relative;
    overflow: hidden;
  }

  .button.secondary.svelte-1m5kl47 {
    background: rgba(40, 40, 40, 0.8);
    color: white;
    border: 1px solid rgba(60, 60, 60, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    font-size: 0.875rem;
    padding: 12px 24px;
  }

  .button.svelte-1m5kl47::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s;
  }

  .button.svelte-1m5kl47:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(31, 223, 159, 0.4);
  }

  .button.secondary.svelte-1m5kl47:hover {
    background: rgba(60, 60, 60, 0.8);
    border-color: var(--main);
    box-shadow: 0 8px 24px rgba(31, 223, 159, 0.2);
  }

  .button.svelte-1m5kl47:hover::before {
    left: 100%;
  }

  .button.svelte-1m5kl47:active {
    transform: translateY(0);
  }

  /* Modern table design */
  .payout-table.svelte-1m5kl47 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    background: rgba(30, 30, 30, 0.98);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
  }

  .payout-table.svelte-1m5kl47 th:where(.svelte-1m5kl47) {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-light) 100%);
    color: var(--main-text);
    padding: 20px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
  }

  .payout-table.svelte-1m5kl47 th:where(.svelte-1m5kl47):first-child {
    border-top-left-radius: 16px;
  }

  .payout-table.svelte-1m5kl47 th:where(.svelte-1m5kl47):last-child {
    border-top-right-radius: 16px;
  }

  .payout-table.svelte-1m5kl47 td:where(.svelte-1m5kl47) {
    padding: 20px 24px;
    text-align: center;
    color: #e2e8f0;
    font-weight: 500;
    border-bottom: 1px solid rgba(60, 60, 60, 0.3);
    transition: all 0.2s ease;
  }

  .payout-table.svelte-1m5kl47 tbody:where(.svelte-1m5kl47) tr:where(.svelte-1m5kl47) {
    transition: all 0.3s ease;
  }

  .payout-table.svelte-1m5kl47 tbody:where(.svelte-1m5kl47) tr:where(.svelte-1m5kl47):hover {
    background: linear-gradient(
      135deg,
      rgba(31, 223, 159, 0.08) 0%,
      rgba(34, 240, 171, 0.04) 100%
    );
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(31, 223, 159, 0.15);
  }

  .payout-table.svelte-1m5kl47 tbody:where(.svelte-1m5kl47) tr:where(.svelte-1m5kl47):nth-child(even) {
    background: rgba(40, 40, 40, 0.5);
  }

  .payout-table.svelte-1m5kl47 td:where(.svelte-1m5kl47):first-child {
    font-weight: 700;
    color: #f7fafc;
  }

  /* Highlighted earnings */
  .hl.svelte-1m5kl47 {
    background: linear-gradient(
      135deg,
      rgba(31, 223, 159, 0.15) 0%,
      rgba(34, 240, 171, 0.1) 100%
    );
    color: var(--main-dark);
    font-weight: 800;
    font-size: 1.125rem;
    padding: 12px 16px !important;
    border-left: 4px solid var(--main);
    border-radius: 0 8px 8px 0;
    position: relative;
  }

  .hl.svelte-1m5kl47::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--main);
    border-radius: 50%;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .container.svelte-1m5kl47 {
      padding: 20px 16px;
    }

    .title.svelte-1m5kl47 {
      font-size: 2.5rem;
    }

    .stats.svelte-1m5kl47 {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .section.svelte-1m5kl47 {
      padding: 32px 24px;
      margin: 32px 0;
    }

    .s_title.svelte-1m5kl47 {
      font-size: 1.5rem;
    }

    .payout-table.svelte-1m5kl47 {
      font-size: 0.875rem;
    }

    .payout-table.svelte-1m5kl47 th:where(.svelte-1m5kl47),
    .payout-table.svelte-1m5kl47 td:where(.svelte-1m5kl47) {
      padding: 12px 16px;
    }

    .hl.svelte-1m5kl47 {
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    .stats.svelte-1m5kl47 {
      grid-template-columns: 1fr;
    }

    .title.svelte-1m5kl47 {
      font-size: 2rem;
    }

    .section.svelte-1m5kl47 {
      padding: 24px 20px;
    }

    .payout-table.svelte-1m5kl47 th:where(.svelte-1m5kl47),
    .payout-table.svelte-1m5kl47 td:where(.svelte-1m5kl47) {
      padding: 10px 12px;
      font-size: 0.8rem;
    }

    .stats_sub.svelte-1m5kl47 {
      padding: 24px 20px;
    }

    .stats_sub.svelte-1m5kl47 b:where(.svelte-1m5kl47) {
      font-size: 1.5rem;
    }
  }

  /* Animations */
  @keyframes svelte-1m5kl47-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .section.svelte-1m5kl47 {
    animation: svelte-1m5kl47-fadeInUp 0.6s ease-out;
  }

  .stats_sub.svelte-1m5kl47 {
    animation: svelte-1m5kl47-fadeInUp 0.6s ease-out;
  }

  .stats_sub.svelte-1m5kl47:nth-child(2) {
    animation-delay: 0.1s;
  }
  .stats_sub.svelte-1m5kl47:nth-child(3) {
    animation-delay: 0.2s;
  }
  .stats_sub.svelte-1m5kl47:nth-child(4) {
    animation-delay: 0.3s;
  }
