.free-page { padding-bottom: 48px; max-width: 760px; margin: 0 auto; }

    .wheel-promo {
      position: relative;
      margin-bottom: 20px;
      border-radius: calc(var(--radius) + 4px);
      padding: 2px;
      background: linear-gradient(135deg, rgba(255, 201, 54, 0.55) 0%, rgba(2, 183, 87, 0.45) 50%, rgba(255, 201, 54, 0.35) 100%);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 48px rgba(255, 201, 54, 0.08);
      overflow: hidden;
    }

    .wheel-promo__glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255, 201, 54, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(2, 183, 87, 0.18) 0%, transparent 40%);
      pointer-events: none;
      z-index: 0;
    }

    .wheel-promo__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
      gap: 20px;
      align-items: center;
      padding: 22px 22px 20px;
      border-radius: var(--radius);
      background: linear-gradient(145deg, #2a325a 0%, var(--panel-dark) 52%, #1a2038 100%);
    }

    .wheel-promo__visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

    .wheel-promo__disc {
      position: relative;
      width: 168px;
      height: 168px;
      border-radius: 50%;
      background:
        conic-gradient(
          #02b757 0deg 45deg,
          #232845 45deg 90deg,
          #ffc936 90deg 135deg,
          #232845 135deg 180deg,
          #02b757 180deg 225deg,
          #232845 225deg 270deg,
          #ffc936 270deg 315deg,
          #232845 315deg 360deg
        );
      box-shadow:
        inset 0 0 0 10px rgba(18, 22, 43, 0.95),
        inset 0 0 0 14px rgba(255, 201, 54, 0.25),
        0 10px 28px rgba(0, 0, 0, 0.45);
      animation: wheelPromoSpin 18s linear infinite;
    }

    .wheel-promo__disc::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 52px;
      height: 52px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: linear-gradient(180deg, #3a4268 0%, #232845 100%);
      border: 3px solid rgba(255, 201, 54, 0.45);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    }

    .wheel-promo__pointer {
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 11px solid transparent;
      border-right: 11px solid transparent;
      border-bottom: 22px solid var(--gold);
      filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.45));
      z-index: 2;
    }

    .wheel-promo__coin {
      position: absolute;
      width: 34px;
      height: 34px;
      animation: wheelPromoFloat 3s ease-in-out infinite;
    }

    .wheel-promo__coin--1 { top: 6%; right: 4%; animation-delay: 0s; }
    .wheel-promo__coin--2 { bottom: 10%; left: 0; width: 28px; height: 28px; animation-delay: -1.2s; }

    @keyframes wheelPromoSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @keyframes wheelPromoFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .wheel-promo__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      margin-bottom: 10px;
      border-radius: 999px;
      background: rgba(2, 183, 87, 0.15);
      border: 1px solid rgba(2, 183, 87, 0.35);
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6ee7a8;
    }

    .wheel-promo__badge::before {
      content: '✓';
      font-size: 0.68rem;
    }

    .wheel-promo__title {
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(1.25rem, 4vw, 1.55rem);
      font-weight: 700;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 8px;
    }

    .wheel-promo__title span { color: var(--gold); }

    .wheel-promo__lead {
      font-size: 0.88rem;
      color: rgba(238, 241, 255, 0.72);
      line-height: 1.45;
      margin-bottom: 14px;
      max-width: 420px;
    }

    .wheel-promo__ways {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 16px;
      list-style: none;
    }

    .wheel-promo__way {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 10px 10px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 0.78rem;
      line-height: 1.35;
      color: rgba(238, 241, 255, 0.85);
    }

    .wheel-promo__way-icon {
      flex-shrink: 0;
      font-size: 1rem;
      line-height: 1;
    }

    .wheel-promo__way strong {
      display: block;
      color: #fff;
      font-size: 0.8rem;
      margin-bottom: 2px;
    }

    .wheel-promo__way-status {
      display: block;
      margin-top: 3px;
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--gold);
    }

    .wheel-promo__way-status.ready { color: #6ee7a8; }

    .wheel-promo__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .wheel-promo__spins {
      font-size: 0.82rem;
      color: rgba(238, 241, 255, 0.65);
    }

    .wheel-promo__spins strong {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.35rem;
      color: var(--gold);
      margin-right: 4px;
    }

    .wheel-promo__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 22px;
      border: none;
      border-bottom: 4px solid #016b38;
      border-radius: 14px;
      background: linear-gradient(180deg, #03d46a 0%, var(--green) 55%, #019648 100%);
      color: #fff;
      font-family: 'Fredoka', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(2, 183, 87, 0.4);
      transition: transform 0.12s;
    }

    .wheel-promo__btn:hover { transform: translateY(-2px); }

    .wheel-promo__btn--disabled {
      opacity: 0.55;
      pointer-events: none;
    }

    .wheel-promo__btn img {
      height: 18px;
      width: auto;
    }

    @media (max-width: 640px) {
      .wheel-promo__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 16px 18px;
      }

      .wheel-promo__visual { min-height: 150px; }

      .wheel-promo__disc { width: 140px; height: 140px; }

      .wheel-promo__lead { margin-left: auto; margin-right: auto; }

      .wheel-promo__ways { grid-template-columns: 1fr; text-align: left; }

      .wheel-promo__footer {
        flex-direction: column;
        align-items: stretch;
      }

      .wheel-promo__btn { width: 100%; }
    }

    .free-balance {
      background: linear-gradient(145deg, #2a325a 0%, var(--panel-dark) 55%, #1e2444 100%);
      border: 2px solid rgba(255, 201, 54, 0.25);
      border-radius: var(--radius);
      padding: 24px 22px;
      margin-bottom: 20px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .free-balance::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -20px;
      width: 140px;
      height: 140px;
      background: radial-gradient(circle, rgba(255, 201, 54, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .free-balance__label {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(238, 241, 255, 0.55);
      margin-bottom: 6px;
    }

    .free-balance__hint {
      font-size: 0.88rem;
      color: rgba(238, 241, 255, 0.65);
      margin-bottom: 18px;
      max-width: 420px;
      line-height: 1.45;
    }

    .free-balance__row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .free-balance__amount-wrap { min-width: 0; }

    .free-balance__sub {
      font-size: 0.82rem;
      color: rgba(238, 241, 255, 0.5);
      margin-bottom: 4px;
    }

    .free-balance__amount {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Fredoka', sans-serif;
      font-size: clamp(2rem, 7vw, 2.75rem);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .free-balance__amount img {
      height: clamp(32px, 8vw, 42px);
      width: auto;
      filter: drop-shadow(0 3px 6px rgba(180, 130, 0, 0.45));
    }

    .btn-withdraw {
      flex-shrink: 0;
      padding: 12px 22px;
      border: none;
      border-bottom: 4px solid #016b38;
      border-radius: 12px;
      background: linear-gradient(180deg, #03d46a 0%, var(--green) 55%, #019648 100%);
      color: #fff;
      font-family: 'Fredoka', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(2, 183, 87, 0.35);
      transition: transform 0.12s;
    }

    .btn-withdraw:hover { transform: translateY(-1px); }
    .btn-withdraw:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
    }

    .free-section {
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 22px 20px;
      margin-bottom: 16px;
      box-shadow: var(--shadow-md);
    }

    .free-section h2 {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .free-section__sub {
      font-size: 0.85rem;
      color: rgba(238, 241, 255, 0.55);
      margin-bottom: 16px;
    }

    .task-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .task-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 14px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .task-item.done {
      opacity: 0.72;
      border-color: rgba(2, 183, 87, 0.25);
      background: rgba(2, 183, 87, 0.08);
    }

    .task-item__icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      background: transparent;
    }

    .task-item__icon img {
      width: 40px;
      height: 40px;
      display: block;
      border-radius: 10px;
    }

    .task-item__icon--emoji {
      font-size: 1.1rem;
      background: rgba(255, 255, 255, 0.06);
    }

    .task-item__body { flex: 1; min-width: 0; }

    .task-item__title {
      font-size: 0.92rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .task-item__reward {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--gold);
    }

    .task-item__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 6px;
      flex-shrink: 0;
    }

    .task-link {
      font-size: 0.75rem;
      font-weight: 600;
      color: rgba(238, 241, 255, 0.55);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .task-link:hover { color: var(--gold); }

    .btn-task {
      padding: 8px 14px;
      border-radius: 8px;
      border: none;
      background: rgba(255, 201, 54, 0.15);
      border: 1px solid rgba(255, 201, 54, 0.35);
      color: var(--gold);
      font-family: inherit;
      font-size: 0.78rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.15s;
    }

    .btn-task:hover { background: rgba(255, 201, 54, 0.25); }

    .btn-task.done {
      background: rgba(2, 183, 87, 0.15);
      border-color: rgba(2, 183, 87, 0.35);
      color: #6ee7a8;
      cursor: default;
    }

    .invite-rewards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 16px;
    }

    .invite-reward {
      padding: 14px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }

    .invite-reward__label {
      font-size: 0.75rem;
      color: rgba(238, 241, 255, 0.5);
      margin-bottom: 6px;
    }

    .invite-reward__value {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--gold);
    }

    .promo-block {
      margin-bottom: 12px;
    }

    .promo-block__label {
      font-size: 0.78rem;
      font-weight: 700;
      color: rgba(238, 241, 255, 0.55);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .promo-row {
      display: flex;
      gap: 8px;
    }

    .promo-code {
      flex: 1;
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.25);
      border: 1px dashed rgba(255, 201, 54, 0.4);
      font-family: 'Fredoka', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-align: center;
    }

    .btn-copy, .btn-share {
      padding: 12px 16px;
      border-radius: 10px;
      border: none;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-copy {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .btn-share {
      width: 100%;
      margin-top: 8px;
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: #1a1200;
      border-bottom: 3px solid #c99200;
    }

    .free-note {
      font-size: 0.72rem;
      color: rgba(238, 241, 255, 0.4);
      line-height: 1.45;
      margin-top: 10px;
    }

    .free-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .stat-card {
      padding: 16px;
      border-radius: var(--radius);
      background: var(--panel-dark);
      border: 2px solid rgba(255, 255, 255, 0.08);
      text-align: center;
    }

    .stat-card__value {
      font-family: 'Fredoka', sans-serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .stat-card__value.gold { color: var(--gold); }

    .stat-card__label {
      font-size: 0.75rem;
      color: rgba(238, 241, 255, 0.5);
    }

    .free-toast {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(80px);
      z-index: 300;
      padding: 12px 20px;
      border-radius: 10px;
      background: var(--panel-dark);
      border: 1px solid rgba(255, 201, 54, 0.35);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: var(--shadow-md);
      opacity: 0;
      transition: transform 0.25s, opacity 0.25s;
      pointer-events: none;
    }

    .free-toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    @media (max-width: 520px) {
      .invite-rewards { grid-template-columns: 1fr; }
      .promo-row { flex-direction: column; }
      .free-balance__row { flex-direction: column; align-items: stretch; }
      .btn-withdraw { width: 100%; }
    }

.game-decor { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
    .game-block { position: absolute; border-radius: 6px; opacity: 0.12; animation: floatBlock 8s ease-in-out infinite; }
    .game-block.b1 { width: 56px; height: 56px; background: var(--gold); top: 12%; left: 4%; transform: rotate(18deg); }
    .game-block.b2 { width: 40px; height: 40px; background: var(--green); top: 28%; right: 6%; transform: rotate(-12deg); animation-delay: -2s; }
    .game-block.b3 { width: 32px; height: 32px; background: #5b8def; bottom: 22%; left: 8%; animation-delay: -4s; }
    .game-block.b4 { width: 48px; height: 48px; background: #e2231a; bottom: 14%; right: 10%; animation-delay: -1s; }
    @keyframes floatBlock {
      0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
      50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
    }