html, body { max-width: 100vw; overflow-x: hidden; }

  .lm-tournaments {
    --accent-1: var(--color-3);
    --accent-2: var(--color-5);
    color: var(--color-6);
    font-family: var(--font-1);
    padding: var(--space-5) 0;
    position: relative;
  }

  .lm-hero {
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-4) 100%);
    border-radius: var(--radius-3);
    box-shadow: var(--shadow-2);
    color: #fff;
    margin-bottom: var(--space-5);
    overflow: hidden;
    padding: var(--space-5) var(--space-4);
    position: relative;
  }

  .lm-hero::after {
    background: radial-gradient(circle, var(--color-3) 0%, transparent 70%);
    border-radius: 50%;
    content: "";
    height: 400px;
    opacity: 0.35;
    pointer-events: none;
    position: absolute;
    right: -5%;
    top: -5%;
    width: 400px;
  }

  .lm-hero-content { position: relative; z-index: 2; }

  .lm-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-3);
  }

  .lm-hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: var(--space-4);
    max-width: 720px;
    opacity: 0.95;
  }

  .lm-hero-stats {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-bottom: var(--space-4);
  }

  .lm-stat {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2);
    padding: var(--space-3);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .lm-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
  }

  .lm-stat-value {
    color: var(--color-3);
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
  }

  .lm-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
    text-transform: uppercase;
  }

  .lm-trust-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-3);
  }

  .lm-live-indicator {
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 8px;
    padding: 8px 16px;
  }

  .lm-live-dot {
    animation: lmpulse 1.5s ease-in-out infinite;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 12px #2ecc71;
    height: 10px;
    width: 10px;
  }

  @keyframes lmpulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  .lm-cta {
    background: linear-gradient(135deg, var(--color-3) 0%, var(--color-5) 100%);
    border: none;
    border-radius: var(--radius-2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 38px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .lm-cta:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    color: #fff;
    transform: translateY(-3px);
  }

  .lm-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: var(--space-2);
    position: relative;
  }

  .lm-section-title::after {
    background: linear-gradient(90deg, var(--color-3), var(--color-5));
    border-radius: 4px;
    content: "";
    display: block;
    height: 4px;
    margin-top: 10px;
    width: 70px;
  }

  .lm-section-intro {
    color: var(--color-8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
  }

  .lm-block { margin-bottom: var(--space-5); }

  .lm-how-card {
    background: var(--color-9, #fff);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    padding: var(--space-4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .lm-how-card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-6px);
  }

  .lm-how-step {
    background: linear-gradient(135deg, var(--color-3), var(--color-5));
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    height: 48px;
    margin-bottom: var(--space-2);
    width: 48px;
  }

  .lm-how-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .lm-draws-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .lm-draw-card {
    background: linear-gradient(160deg, var(--color-2) 0%, var(--color-4) 100%);
    border-radius: var(--radius-3);
    box-shadow: var(--shadow-1);
    color: #fff;
    overflow: hidden;
    padding: var(--space-4);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .lm-draw-card:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-8px) scale(1.02);
  }

  .lm-draw-card::before {
    background: var(--color-3);
    border-radius: 50%;
    content: "";
    filter: blur(60px);
    height: 150px;
    opacity: 0.4;
    position: absolute;
    right: -30px;
    top: -30px;
    width: 150px;
  }

  .lm-draw-badge {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
    padding: 6px 14px;
    position: relative;
    text-transform: uppercase;
    z-index: 2;
  }

  .lm-draw-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }

  .lm-draw-pool {
    color: var(--color-3);
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin: var(--space-2) 0;
    position: relative;
    z-index: 2;
  }

  .lm-draw-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.92;
    position: relative;
    z-index: 2;
  }

  .lm-table-wrap {
    background: var(--color-9, #fff);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    overflow: hidden;
  }

  .lm-table {
    border-collapse: collapse;
    width: 100%;
  }

  .lm-table thead {
    background: linear-gradient(135deg, var(--color-2), var(--color-4));
    color: #fff;
  }

  .lm-table th {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 18px 16px;
    text-align: left;
    text-transform: uppercase;
  }

  .lm-table td {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    vertical-align: middle;
  }

  .lm-table tbody tr {
    transition: background 0.2s ease;
  }

  .lm-table tbody tr:hover { background: rgba(255, 255, 255, 0.06); }

  .lm-leaderboard-card {
    background: linear-gradient(135deg, #1a1d2e 0%, #2d1b3d 100%);
    border-radius: var(--radius-3);
    box-shadow: var(--shadow-2);
    color: #fff;
    overflow: hidden;
    padding: var(--space-5) var(--space-4);
    position: relative;
  }

  .lm-leaderboard-card::after {
    background: radial-gradient(circle, var(--color-3), transparent 70%);
    border-radius: 50%;
    content: "";
    height: 300px;
    left: -5%;
    opacity: 0.25;
    position: absolute;
    top: -5%;
    width: 300px;
  }

  .lm-prize-headline {
    color: var(--color-3);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin: var(--space-2) 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }

  .lm-prize-sub {
    font-size: 1.1rem;
    margin-bottom: var(--space-3);
    opacity: 0.9;
    position: relative;
    z-index: 2;
  }

  .lm-steps-list {
    list-style: none;
    margin: var(--space-3) 0 0;
    padding: 0;
    position: relative;
    z-index: 2;
  }

  .lm-steps-list li {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--color-3);
    border-radius: var(--radius-1);
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    padding: 14px 18px;
  }

  .lm-steps-list li::before {
    color: var(--color-3);
    content: "▸";
    font-weight: 900;
  }

  .lm-faq-item {
    background: var(--color-9, #fff);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    margin-bottom: var(--space-2);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .lm-faq-item:hover { box-shadow: var(--shadow-2); }

  .lm-faq-item summary {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
    padding: var(--space-3) var(--space-4);
    position: relative;
    transition: color 0.2s ease;
  }

  .lm-faq-item summary::-webkit-details-marker { display: none; }

  .lm-faq-item summary::after {
    content: "+";
    color: var(--color-3);
    font-size: 1.8rem;
    font-weight: 300;
    position: absolute;
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .lm-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

  .lm-faq-body {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-8);
    line-height: 1.65;
    padding: var(--space-3) var(--space-4);
  }

  .lm-final-cta {
    background: linear-gradient(135deg, var(--color-3) 0%, var(--color-5) 100%);
    border-radius: var(--radius-3);
    box-shadow: var(--shadow-2);
    color: #fff;
    margin-top: var(--space-5);
    padding: var(--space-5) var(--space-4);
    text-align: center;
  }

  .lm-final-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--space-2);
  }

  .lm-final-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--space-3);
    opacity: 0.95;
  }

  .lm-final-cta .lm-cta {
    background: #fff;
    color: var(--color-2);
  }

  @media (max-width: 768px) {
    .lm-tournaments { padding: var(--space-3) 0; }
    .lm-hero, .lm-leaderboard-card, .lm-final-cta { padding: var(--space-4) var(--space-3); }
  }