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

    body {
      font-family: 'Geist', sans-serif;
      color: #19423C;
      background: #fff;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .hero {
      min-height: 100vh;
      background: linear-gradient(180deg, rgba(252, 201, 52, 0.2) 0%, rgba(0, 0, 0, 0) 100%), url("background.png") no-repeat center center;
      background-size: cover;
      color: #fff;
      padding: 40px 20px 160px; 
      text-align: center;
    }

    .hero nav {
      display: flex;
      align-items: center;
      padding: 20px 40px;
    }

    .hero nav .nav-left {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .hero nav .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 30px;
      font-weight: 700;
      color: #19423C;
    }

    .hero nav .links {
      display: flex;
      gap: 25px;
    }

    .hero nav .links a {
      text-decoration: none;
      font-weight: 700;
      font-size: 20px;
      color: #19423C;
      transition: transform 0.3s ease;
    }

    .hero nav .links a:hover {
      transform: translateY(-5px);
    }

    .hero nav .socials {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-left: auto;
    }

    .hero nav .socials img {
      display: block;
    }

    .hero h1 {
      font-size: 120px;
      font-weight: 700;
      margin-top: 120px; 
      color: #19423C;
    }

    .hero p {
      font-size: 28px;
      font-weight: 600;
      margin-top: 75px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: #19423C;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      color: #19423C;
      text-decoration: none;
      transition: opacity 0.3s;
      padding-top: 80px;
    }

    .scroll-indicator:hover {
      opacity: 0.7;
    }

    .scroll-indicator p {
      margin: 12px 0 0 0;
      font-size: 18px;
      font-weight: 600;
    }

    .scroll-arrow {
      position: absolute;
      top: 0;
      left: 50%;
      width: 36px;
      height: 36px;
      margin-left: -18px;
      border-left: 3px solid #19423C;
      border-bottom: 3px solid #19423C;
      transform: rotate(-45deg);
      animation: scrollArrow 2s infinite;
      box-sizing: border-box;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-10px);
      }
      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }

    @keyframes scrollArrow {
      0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
      }
      50% {
        opacity: 1;
      }
      100% {
        transform: rotate(-45deg) translate(-10px, 10px);
        opacity: 0;
      }
    }

    section {
      padding: 100px 0;
    }

    #distribution {
      background: url("bg2.png") no-repeat center center;
      background-size: 100% 100%;
      background-position: center;
      background-attachment: fixed;
    }

    #distribution .card {
      background: #67C18D;
    }

    #tokenomics {
      background: url("bg3.png") no-repeat center center;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    #ponzinomics {
      background: url("bg4.png") no-repeat center center;
      background-size: cover;
      background-attachment: fixed;
    }

    section .section-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
    }

    section:nth-child(even) .section-inner {
      flex-direction: row-reverse;
    }

    section .text {
      max-width: 600px;
    }

    section .text h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    section .text p {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
    }

    section .image {
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: #FCC934;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    section .image img {
      max-width: 70%;
    }

    .grid {
      display: flex;
      gap: 40px;
      justify-content: center;
      align-items: flex-start;
      padding: 10px 0;
    }

    .card {
      flex: 1;
      background: #67C18D;
      border-radius: 20px;
      padding: 40px;
      min-height: 400px;
      position: relative;
    }

    .card h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .card .placeholder {
      width: 100%;
      height: 80px;
      background: rgba(0,0,0,0.1);
      border-radius: 20px;
      display: flex;
      align-items: center;
      padding-left: 20px;
      color: rgba(255,255,255,0.5);
      font-size: 25px;
      font-weight: 600;
    }

    .token-input-container {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      align-items: center;
    }

    .token-input-container input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 8px;
      background: rgba(0,0,0,0.1);
      color: #fff;
      font-size: 14px;
      font-family: monospace;
    }

    .token-input-container input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .token-input-container input:focus {
      outline: none;
      border-color: #FCC934;
    }

    .set-token-button {
      background: #FCC934;
      color: #19423C;
      border: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .set-token-button:hover {
      background: #e6b52d;
      transform: translateY(-1px);
    }

    .leaderboard-container {
      width: 100%;
      height: 300px;
      background: rgba(0,0,0,0.1);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .leaderboard-container::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 20px;
      background: linear-gradient(transparent, rgba(0,0,0,0.1));
      pointer-events: none;
    }

    .leaderboard-header {
      display: grid;
      grid-template-columns: 60px 1fr 80px;
      gap: 10px;
      padding: 15px 20px;
      background: rgba(0,0,0,0.2);
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      border-bottom: 2px solid rgba(255,255,255,0.1);
    }

    .leaderboard-list {
      flex: 1;
      overflow-y: auto;
      max-height: 250px;
      scrollbar-width: thin;
      scrollbar-color: #FCC934 #67C18D;
    }

    .leaderboard-list::-webkit-scrollbar {
      width: 8px;
    }

    .leaderboard-list::-webkit-scrollbar-track {
      background: rgba(0,0,0,0.1);
      border-radius: 4px;
    }

    .leaderboard-list::-webkit-scrollbar-thumb {
      background: #FCC934;
      border-radius: 4px;
      transition: background 0.3s ease;
    }

    .leaderboard-list::-webkit-scrollbar-thumb:hover {
      background: #e6b52d;
    }

    .leaderboard-list::-webkit-scrollbar-corner {
      background: transparent;
    }

    .leaderboard-item {
      display: grid;
      grid-template-columns: 60px 1fr 80px;
      gap: 10px;
      padding: 12px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 14px;
      color: #fff;
      transition: background-color 0.2s ease;
    }

    .leaderboard-item:hover {
      background: rgba(255,255,255,0.1);
    }

    .leaderboard-item.rank-1 {
      background: linear-gradient(90deg, rgba(255,215,0,0.2), transparent);
    }

    .leaderboard-item.rank-2 {
      background: linear-gradient(90deg, rgba(192,192,192,0.2), transparent);
    }

    .leaderboard-item.rank-3 {
      background: linear-gradient(90deg, rgba(205,127,50,0.2), transparent);
    }

    .leaderboard-item.highlighted,
    .leaderboard-item.race-animation.highlighted {
      background: linear-gradient(135deg, #4CAF50, #45a049) !important;
      border-left: 4px solid #2E7D32 !important;
      box-shadow: 0 0 20px rgba(76, 175, 80, 0.5) !important;
      animation: highlightPulse 2s ease-in-out infinite !important;
      opacity: 1 !important;
      transform: translateX(0) !important;
      visibility: visible !important;
    }

    .distribution-item.highlighted,
    .distribution-item.race-animation.highlighted {
      background: linear-gradient(135deg, #4CAF50, #45a049) !important;
      border-left: 4px solid #2E7D32 !important;
      box-shadow: 0 0 20px rgba(76, 175, 80, 0.5) !important;
      animation: highlightPulse 2s ease-in-out infinite !important;
      opacity: 1 !important;
      transform: translateX(0) !important;
      visibility: visible !important;
    }

    @keyframes highlightPulse {
      0%, 100% { box-shadow: 0 0 20px rgba(76, 175, 80, 0.5); }
      50% { box-shadow: 0 0 30px rgba(76, 175, 80, 0.8); }
    }

    .wallet-address {
      font-family: monospace;
      font-size: 14px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .percentage {
      text-align: right;
      font-weight: 600;
      color: #FCC934;
    }

    .loading {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      color: rgba(255,255,255,0.7);
      font-size: 18px;
      font-weight: 600;
    }

    .error {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      color: #ff6b6b;
      font-size: 16px;
      font-weight: 600;
      text-align: center;
      padding: 20px;
    }

    .distribution-container {
      width: 100%;
      height: 300px;
      background: rgba(0,0,0,0.1);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .distribution-header {
      display: grid;
      grid-template-columns: 1fr 100px 80px auto;
      gap: 10px;
      padding: 15px 20px;
      background: rgba(0,0,0,0.2);
      font-weight: 700;
      font-size: 16px;
      color: #fff;
      border-bottom: 2px solid rgba(255,255,255,0.1);
      align-items: center;
    }

    .action-buttons {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .claim-button {
      background: #4CAF50;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .claim-button:hover:not(:disabled) {
      background: #45a049;
      transform: translateY(-1px);
    }

    .claim-button:disabled {
      background: #666;
      color: #999;
      cursor: not-allowed;
      transform: none;
    }

    .trigger-button {
      background: #FCC934;
      color: #19423C;
      border: none;
      padding: 8px 16px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }

    .trigger-button:hover:not(:disabled) {
      background: #e6b52d;
      transform: translateY(-1px);
    }

    .trigger-button:disabled {
      background: #666;
      color: #999;
      cursor: not-allowed;
      transform: none;
    }


    .distribution-list {
      flex: 1;
      overflow-y: auto;
      max-height: 280px;
      padding: 20px;
      scrollbar-width: thin;
      scrollbar-color: #FCC934 #67C18D;
    }

    .distribution-list::-webkit-scrollbar {
      width: 8px;
    }

    .distribution-list::-webkit-scrollbar-track {
      background: rgba(0,0,0,0.1);
      border-radius: 4px;
    }

    .distribution-list::-webkit-scrollbar-thumb {
      background: #FCC934;
      border-radius: 4px;
      transition: background 0.3s ease;
    }

    .distribution-list::-webkit-scrollbar-thumb:hover {
      background: #e6b52d;
    }

    .distribution-list::-webkit-scrollbar-corner {
      background: transparent;
    }

    .distribution-item {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 14px;
      color: #fff;
      transition: background-color 0.2s ease;
      border-radius: 8px;
      margin-bottom: 8px;
      padding: 12px 16px;
    }

    .distribution-item:hover {
      background: rgba(255,255,255,0.1);
    }

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

    .wallet-link {
      color: #FCC934;
      text-decoration: none;
      font-family: monospace;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .wallet-link:hover {
      color: #fff;
      text-decoration: underline;
    }

    .transaction-link {
      color: #00ff88;
      text-decoration: none;
      font-weight: 600;
      font-family: monospace;
      font-size: 12px;
      transition: color 0.2s ease;
      margin-left: 8px;
    }

    .transaction-link:hover {
      color: #00cc6a;
      text-decoration: underline;
    }

    .amount-link {
      color: #FCC934;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease;
    }

    .amount-link:hover {
      color: #FCC934;
      text-decoration: underline;
    }

    .timeframe {
      color: rgba(255,255,255,0.7);
      font-size: 12px;
      font-style: italic;
    }

    .simulation-badge {
      background: #FCC934;
      color: #19423C;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      margin-right: 8px;
      text-transform: uppercase;
    }

    .rank-info {
      color: #FCC934;
      font-weight: 600;
      font-size: 12px;
      margin-right: 4px;
    }

    .weight-info {
      color: rgba(255,255,255,0.6);
      font-size: 11px;
      font-family: monospace;
      margin-right: 4px;
    }

    .share-info {
      color: #FCC934;
      font-weight: 600;
      font-size: 12px;
      margin-right: 4px;
    }

    .race-animation {
      opacity: 0;
      transform: translateX(-20px);
      animation: raceIn 0.6s ease-out forwards;
    }

    @keyframes raceIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .leaderboard-item.race-animation {
      animation-delay: calc(var(--index, 0) * 0.05s);
    }

    .distribution-item.race-animation {
      animation-delay: calc(var(--index, 0) * 0.03s);
    }

    .card .side-labels {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 20px;
      font-weight: 600;
      color: #000;
    }

    footer {
      background: #19423C;
      color: #fff;
      padding: 60px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 30px;
      font-weight: 700;
    }

    footer .socials {
      display: flex;
      align-items: center;
      gap: 12px; 
    }

    footer .socials img {
      display: block;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    .weight-distribution-container {
      max-height: 400px;
      overflow-y: auto;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.2);
    }

    .weight-distribution-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 12px 20px;
      background: linear-gradient(135deg, #0f3460, #16537e);
      border-radius: 10px 10px 0 0;
      font-weight: bold;
      color: #00ff88;
      text-align: center;
      font-size: 14px;
    }

    .weight-distribution-list {
      max-height: 300px;
      overflow-y: auto;
    }

    .weight-distribution-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 8px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      text-align: center;
      font-size: 13px;
      min-height: 35px;
      align-items: center;
    }

    .weight-distribution-item:hover {
      background: rgba(0, 255, 136, 0.1);
      transform: translateX(5px);
    }

    .weight-distribution-item.rank-1 {
      background: linear-gradient(135deg, #ffd700, #ffed4e);
      color: #000;
      font-weight: bold;
    }

    .weight-distribution-item.rank-2 {
      background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
      color: #000;
      font-weight: bold;
    }

    .weight-distribution-item.rank-3 {
      background: linear-gradient(135deg, #cd7f32, #daa520);
      color: #000;
      font-weight: bold;
    }

    .wallet-link {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .wallet-link:hover {
      color: #00ff88;
      text-decoration: underline;
    }

    .wallet-link:visited {
      color: inherit;
    }

    .fees-display {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 12px;
      background: linear-gradient(135deg, #0f3460, #16537e);
      border-radius: 6px;
      margin: 3px 0;
    }

    .fees-label {
      font-size: 14px;
      font-weight: 600;
      color: #ffffff;
    }

    .fees-amount {
      font-size: 16px;
      font-weight: bold;
      color: #fff;
    }

    .timer-display {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 6px 12px;
      background: linear-gradient(135deg, #0f3460, #16537e);
      border-radius: 6px;
      margin: 3px 0;
    }

    .timer-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2px 0;
    }

    .timer-label {
      font-size: 13px;
      font-weight: 600;
      color: #ffffff;
    }

    .timer-value {
      font-size: 14px;
      font-weight: bold;
      color: #fff;
    }

    html {
      scroll-behavior: smooth;
    }

    #available-fees-card, #timer-card {
      padding: 8px;
      margin: 5px 0;
      min-height: 40px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

