/* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      background: #3d0f2b;
      color: #fff;
    }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; }
    a { text-decoration: none; color: inherit; }

    /* ===== DIN FONT ===== */
    
    .din-bold { font-family: 'din-bold', Arial, sans-serif; }

    /* ===== PAGE TRANSITIONS ===== */
    .page-enter { animation: pageIn 0.3s ease forwards; }
    @keyframes pageIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== BRAND LOGO ===== */
    .brand-logo { display: flex; align-items: center; gap: 8px; }
    .brand-logo-icon {
      filter: drop-shadow(0 2px 6px rgba(255,92,158,.45));
      flex-shrink: 0;
    }
    .brand-logo-text { font-weight: 800; color: #fff; letter-spacing: -0.4px; white-space: nowrap; }
    .brand-logo-highlight {
      background: linear-gradient(90deg, #ff5c9e, #d6409f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-left: 1px;
    }

    /* ===== LANGUAGE SELECTOR ===== */
    .language-selector-wrapper { position: relative; display: inline-block; }
    .language-selector-btn {
      display: inline-flex; align-items: center; gap: 5px;
      padding: 6px 10px; border-radius: 8px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.85);
      font-weight: 500; font-size: 13px; cursor: pointer;
      transition: background .18s, border-color .18s; outline: none; white-space: nowrap;
    }
    .language-selector-btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); }
    .lang-icon { width: 15px; height: 15px; flex-shrink: 0; opacity: .9; }
    .lang-text { max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
    .lang-chevron {
      width: 9px; height: 9px; flex-shrink: 0; opacity: .6; transition: transform .18s;
    }
    .lang-chevron.open { transform: rotate(180deg); }
    .language-dropdown {
      position: fixed; background: #000; border-radius: 6px; z-index: 10000;
      min-width: 200px; max-width: 320px; overflow: auto;
    }
    .language-option {
      padding: 10px 14px; color: #fff; cursor: pointer;
      border-bottom: 1px solid rgba(255,0,255,.06); font-size: 13px;
    }
    .language-option.selected { background: rgba(48,203,123,.2); color: #30cb7b; }
    .language-option:last-child { border-bottom: none; }

    /* ===== LOAD PAGE ===== */
    .load-page { position: relative; min-height: 100vh; background: #3d0f2b; overflow: hidden; }
    .load-bg {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .load-scrim {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(180deg, rgba(61,15,43,.25), rgba(61,15,43,.45));
    }

    /* ===== SLIDE VERIFY ===== */
    .sv-overlay {
      position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999;
      background: rgba(0,0,0,.15);
      backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px);
      display: flex; align-items: center; justify-content: center; padding: 20px;
    }
    .sv-box {
      width: 100%; max-width: 300px;
      background: linear-gradient(160deg, #4a1435, #3d0f2b);
      border: 1px solid rgba(255,92,158,.2);
      border-radius: 20px; padding: 22px 20px 20px;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,.56), 0 0 40px rgba(255,92,158,.08);
    }
    .sv-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
    .sv-title { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
    .sv-desc { font-size: 12px; color: rgba(255,255,255,.55); text-align: center; line-height: 1.5; }
    .sv-instruction { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); margin-top: 8px; }
    .sv-track {
      position: relative; width: 100%; height: 44px;
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.12);
      border-radius: 22px; margin-top: 2px;
      touch-action: none; user-select: none; -webkit-user-select: none; overflow: hidden;
    }
    .sv-track-fill {
      position: absolute; left: 0; top: 0; height: 100%; border-radius: 26px;
      background: linear-gradient(90deg, rgba(255,92,158,.15), rgba(214,64,159,.2));
      transition: width .05s;
    }
    .sv-track-text {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,.35);
      pointer-events: none; letter-spacing: .3px;
    }
    .sv-thumb {
      position: absolute; left: 2px; top: 2px; width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff5c9e, #d6409f);
      display: flex; align-items: center; justify-content: center;
      cursor: grab; transition: transform .1s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(255,92,158,.4);
    }
    .sv-thumb--dragging {
      cursor: grabbing; box-shadow: 0 4px 24px rgba(255,92,158,.6);
    }
    .sv-note { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 8px; }

    /* Verified state */
    .sv-verified-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, #4ade80, #16a34a);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 24px; font-weight: 700; color: #fff;
      box-shadow: 0 4px 20px rgba(74,222,128,.4);
    }
    .sv-countdown-ring { position: relative; width: 80px; height: 80px; margin: 8px 0; }
    .sv-ring-svg { width: 100%; height: 100%; }
    .sv-countdown-num {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; font-weight: 800; color: #fff;
    }
    .sv-countdown-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.55); }

    /* ===== HOME PAGE ===== */
    .page-home {
      min-height: 100vh; background: #3d0f2b;
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, sans-serif;
      color: #fff; display: flex; flex-direction: column;
      padding-bottom: 72px;
    }
    .nav-home {
      width: 100%; height: 44px; padding: 0 20px;
      display: flex; align-items: center;
      position: sticky; top: 0; z-index: 100;
      background: rgba(61,15,43,.92);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-inner { width: 100%; max-width: 900px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .nav-right { display: flex; align-items: center; }
    .nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }

    /* Hero */
    .hero {
      position: relative; overflow: hidden;
      height: 62vh; min-height: 380px; max-height: 560px;
      display: flex; align-items: flex-end;
    }
    .hero-bg {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      width: 100%; height: 100%; object-fit: cover;
    }
    .hero-scrim {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(to top, #3d0f2b 0%, rgba(61,15,43,.75) 28%, rgba(61,15,43,.15) 62%, transparent 100%);
    }
    .hero-content {
      position: relative; width: 100%; max-width: 480px;
      margin: 0 auto; padding: 0 20px 28px; text-align: center;
    }

    /* LIVE Badge */
    .live-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,59,59,.12);
      border: 1px solid rgba(255,59,59,.4);
      border-radius: 20px; padding: 6px 14px;
      font-size: 13px; font-weight: 600; color: #ff3b3b;
      margin-bottom: 12px;
      animation: badgeGlow 2s ease-in-out infinite;
    }
    @keyframes badgeGlow {
      0%, 100% { box-shadow: 0 0 8px rgba(255,59,59,.2); }
      50% { box-shadow: 0 0 18px rgba(255,59,59,.5); }
    }
    .live-dot-wrap { position: relative; width: 10px; height: 10px; }
    .live-dot {
      position: absolute; top: 1px; right: 1px; bottom: 1px; left: 1px;
      background: #ff3b3b; border-radius: 50%;
      animation: dotPulse 1.2s infinite;
    }
    .live-dot-ring {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      border: 1.5px solid #ff3b3b; border-radius: 50%;
      animation: ringExpand 1.8s ease-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(.8); }
    }
    @keyframes ringExpand {
      0% { transform: scale(1); opacity: .8; }
      100% { transform: scale(2.5); opacity: 0; }
    }
    .live-label-text {
      font-weight: 800; letter-spacing: 1px;
      animation: textFlicker 3s ease-in-out infinite;
    }
    @keyframes textFlicker {
      0%, 100% { opacity: 1; }
      50% { opacity: .75; }
    }
    .live-count { color: rgba(255,255,255,.65); font-weight: 400; }

    /* Hero title */
    .hero-title {
      font-size: clamp(22px, 6vw, 32px); font-weight: 800;
      line-height: 1.15; margin: 0 0 10px;
    }
    .highlight {
      background: linear-gradient(90deg, #ff5c9e, #d6409f);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 13px; color: rgba(255,255,255,.65);
      margin: 0 0 16px; line-height: 1.5;
    }

    /* CTA Button */
    .cta-btn {
      display: inline-flex; align-items: center; justify-content: center;
      height: 44px; padding: 0 24px;
      background: linear-gradient(135deg, #ff5c9e, #d6409f);
      border: none; border-radius: 12px;
      color: #fff; font-size: 16px; font-weight: 700;
      cursor: pointer; transition: opacity .2s, transform .15s;
      letter-spacing: .2px;
    }
    .cta-btn:hover { opacity: .9; transform: translateY(-1px); }
    .cta-btn:active { transform: scale(.97); }

    /* Streamers */
    .streamers-section { padding: 20px 16px; max-width: 900px; margin: 0 auto; width: 100%; }
    .section-title { font-size: 20px; font-weight: 700; margin: 0 0 20px 4px; color: #fff; }
    .streamers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .streamer-card {
      position: relative; border-radius: 14px; overflow: hidden;
      cursor: pointer; aspect-ratio: 3/4;
      transition: transform .25s, box-shadow .25s;
      animation: cardFadeIn .5s ease both;
    }
    .streamer-card:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,.5); }
    @keyframes cardFadeIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .streamer-img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .streamer-overlay {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
      display: flex; flex-direction: column; justify-content: space-between; padding: 10px;
    }
    .live-tag {
      align-self: flex-start; display: inline-flex; align-items: center; gap: 5px;
      background: #ff3b3b; color: #fff; font-size: 11px; font-weight: 800;
      padding: 3px 8px; border-radius: 4px; letter-spacing: 1px;
      box-shadow: 0 0 10px rgba(255,59,59,.6);
      animation: liveTagGlow 2s ease-in-out infinite;
    }
    @keyframes liveTagGlow {
      0%, 100% { box-shadow: 0 0 8px rgba(255,59,59,.5); }
      50% { box-shadow: 0 0 18px rgba(255,59,59,.9), 0 0 6px rgba(255,59,59,.6); }
    }
    .live-tag-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: dotPulse 1.2s infinite; }
    .viewer-count { align-self: flex-end; font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500; }

    /* Features */
    .features-section { padding: 32px 16px; max-width: 480px; margin: 0 auto; width: 100%; }
    .features-grid { display: flex; gap: 10px; }
    .feature-card {
      flex: 1; background: #5c1a41;
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 12px; padding: 18px 10px; text-align: center;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .feature-icon { font-size: 26px; }
    .feature-label { font-size: 13px; font-weight: 600; color: #fff; }

    /* Final CTA */
    .final-cta { padding: 40px 16px; max-width: 480px; margin: 0 auto; width: 100%; }
    .final-cta-card {
      background: linear-gradient(135deg, #5c1a41, #3d0f2b);
      border: 1px solid rgba(255,92,158,.2);
      border-radius: 20px; padding: 40px 24px; text-align: center;
    }
    .final-cta-title { font-size: clamp(20px, 5vw, 26px); font-weight: 800; margin: 0 0 10px; }
    .final-cta-sub { font-size: 14px; color: rgba(255,255,255,.65); margin: 0 0 24px; line-height: 1.5; }

    /* Footer */
    .page-footer {
      padding: 16px 20px; text-align: center;
      font-size: 11px; color: rgba(255,255,255,.25);
      border-top: 1px solid rgba(255,255,255,.04);
    }

    /* Sticky bar */
    .sticky-bar {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: #4a1435; border-top: 1px solid rgba(255,255,255,.08);
      padding: 12px 16px; z-index: 200;
    }
    .sticky-bar-inner { max-width: 480px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    .sticky-left { display: flex; align-items: center; gap: 8px; }
    .sticky-dot {
      width: 8px; height: 8px; background: #ff3b3b; border-radius: 50%;
      animation: stickyPulse 1.5s infinite;
    }
    @keyframes stickyPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: .4; }
    }
    .sticky-text { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
    .sticky-btn {
      height: 36px; padding: 0 20px;
      background: linear-gradient(135deg, #ff5c9e, #d6409f);
      border: none; border-radius: 8px;
      color: #fff; font-size: 13px; font-weight: 700;
      cursor: pointer; transition: opacity .2s;
    }
    .sticky-btn:hover { opacity: .88; }

    /* ===== INVITE PAGE ===== */
    .invite-container {
      display: flex; flex-direction: column; width: 100%;
      min-height: 100vh; box-sizing: border-box; position: relative;
      background-color: #05956b;
      background-image:
        linear-gradient(to bottom, #05956b, #05956b 20%, rgba(5,149,107,.85) 25%, rgba(5,149,107,.45), rgba(5,149,107,0) 30%),
        url("assets/bg-DYTiQzsj.png");
      background-position: center center, center bottom;
      background-size: 100% 100%, auto;
      background-repeat: no-repeat, repeat-x;
      margin: 0 auto;
      font-family: 'Poppins', 'Arial Black', Arial, Helvetica, 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    }
    .invite-container::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0;
      height: 30%;
      background-image: url("assets/tp-PWjviYxw.png");
      background-repeat: no-repeat; background-position: center top; background-size: cover;
      pointer-events: none; z-index: 0;
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    }
    @media (max-width: 899px) {
      .invite-container::before {
        background-image: url("assets/tp2-B7iXbV2P.png");
        background-size: cover;
      }
    }
    .invite-container > * { position: relative; z-index: 1; }

    .invite-top-bar {
      width: 100%; padding: 16px 16px 8px;
      box-sizing: border-box; display: flex;
      justify-content: space-between; align-items: center;
      position: relative; z-index: 6000;
    }
    .back-btn {
      display: inline-flex; align-items: center; justify-content: center;
      background: transparent; border: none; cursor: pointer; padding: 4px;
    }
    .back-btn svg { width: 18px; height: 16px; display: block; }

    .moneyleft { position: absolute; left: 0; top: 35%; width: 150px; height: auto; z-index: 2; }
    .moneyright { position: absolute; right: 0; top: 25%; width: 70px; height: auto; z-index: 2; }
    .money-bottom {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 0;
      display: block; width: 100%; height: auto; max-height: 300px;
      object-fit: contain; max-width: 100%; pointer-events: none;
    }

    .title-wrapper {
      display: flex; flex-direction: column; align-items: center;
      position: relative; z-index: 3; padding-top: 32px;
    }
    .title1 {
      margin-top: 20px; text-align: center;
      font-size: clamp(28px, 10vw, 70px); font-weight: 900;
      background: linear-gradient(90deg, #fbfbc8, #fbeb8e);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      padding: 0 20px;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
    }
    .title2 {
      margin-top: 20px; padding: 0 40px;
      font-weight: 800;
      background: linear-gradient(90deg, #fbfbc8, #fbeb8e);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      font-size: clamp(16px, 5vw, 32px); font-style: italic;
      margin-bottom: 0; text-align: center;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
    }
    .yellow-span { font-weight: 900; font-size: clamp(20px, 6vw, 40px); }

    .invite-slots {
      display: flex; flex-wrap: wrap; gap: 20px 60px;
      justify-content: center; margin: 90px 12px 0;
    }
    .invite-slot {
      box-sizing: border-box; border: 2px dashed #000;
      border-radius: 10px; background: #30cb7b;
      display: flex; align-items: center; justify-content: center;
      width: 70px; height: 70px; position: relative; cursor: pointer;
    }
    .invite-slot::before, .invite-slot::after { content: ''; position: absolute; }
    .invite-slot::before { width: 50%; height: 2px; left: 50%; top: 50%; transform: translate(-50%,-50%); background-color: #000; }
    .invite-slot::after { height: 50%; width: 2px; left: 50%; top: 50%; transform: translate(-50%,-50%); background-color: #000; }
    .line-break { flex-basis: 100%; height: 0; }
    @media (min-width: 900px) {
      .invite-slots { gap: 50px; flex-wrap: nowrap; margin-top: 150px; }
      .line-break { display: none; }
      .invite-slot { width: 100px; height: 100px; }
    }

    /* Share button */
    .share-btn-wrap { text-align: center; margin-top: 20px; }
    .share-btn {
      background: linear-gradient(to bottom, #ffeed3, #ffc363) padding-box,
                  linear-gradient(to bottom, #fff8d5, #fce17a, #fff8d5) border-box;
      border: 5px solid transparent;
      background-origin: padding-box, border-box;
      background-clip: padding-box, border-box;
      color: #2d5527; padding: 20px 0; border-radius: 60px;
      min-width: 300px; width: 60%; font-size: 24px; font-weight: 700;
      cursor: pointer; margin: 30px auto 40px; display: inline-block;
      letter-spacing: 2px; transition: all .3s ease;
      box-shadow: inset 0 3px 6px rgba(255,153,49,.95), inset 0 6px 12px rgba(255,170,80,.75),
                  inset 0 12px 20px rgba(255,210,140,.45), 0 6px 15px rgba(0,0,0,.25), 0 0 9px rgba(255,248,213,.12);
      text-align: center;
    }
    @media (max-width: 899px) {
      .share-btn { position: relative; left: auto; transform: none; bottom: auto; z-index: 10; }
    }

    /* Share popup */
    .share-popup-root {
      position: fixed; left: 0; right: 0; top: 0; bottom: 0;
      z-index: 1200; display: none; align-items: flex-end;
    }
    .share-popup-root.active { display: flex; }
    .share-popup-backdrop {
      position: absolute; left: 0; right: 0; top: 0; bottom: 0;
      background: rgba(0,0,0,.35);
    }
    .share-popup {
      position: relative; width: 100%; min-height: 334px; max-height: 400px;
      background: #fff; border-top-left-radius: 12px; border-top-right-radius: 12px;
      padding: 25px 25px 40px; box-sizing: border-box;
      display: flex; flex-direction: column; align-items: center;
      animation: slideUp .36s cubic-bezier(.22,.9,.37,1);
    }
    @keyframes slideUp {
      from { transform: translateY(120%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .share-popup-title { font-size: 20px; color: #000; text-align: center; font-weight: 600; margin-top: 14px; }
    .share-handle { width: 40px; height: 4px; border-radius: 2px; background: #e0e0e0; margin: 0 auto 12px; }
    .share-icons { display: flex; gap: 24px; justify-content: center; align-items: flex-start; width: 100%; }
    .share-item { display: flex; flex-direction: column; align-items: center; width: 25%; box-sizing: border-box; cursor: pointer; }
    .share-item:active { transform: scale(.98); }
    .share-item img { width: 64px; height: 64px; object-fit: contain; }
    .share-label { margin-top: 10px; font-size: 13px; color: #333; text-align: center; }
    .share-cancel {
      margin-top: auto; width: 100%; height: 50px;
      background: #efefef; border: none; padding: 12px 16px;
      border-radius: 25px; font-size: 16px; cursor: pointer;
      font-family: 'PingFang SC', sans-serif; font-weight: 700;
    }

    .share-main { padding: 28px; text-align: center; color: #fff; }
    .share-note { font-size: 18px; }

    /* ===== LOGIN PAGE ===== */
    .page-login {
      min-height: 100vh; background: #3d0f2b;
      display: flex; flex-direction: column; align-items: center;
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, sans-serif;
    }
    .login-nav {
      width: 100%; max-width: 480px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px;
    }
    .login-nav-back {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08); border: none; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px; transition: background .15s;
    }
    .login-form-wrap {
      width: 100%; max-width: 480px; padding: 40px 16px 48px; flex: 1;
    }
    .login-card {
      background: #fff; border-radius: 16px; padding: 28px 24px;
      box-shadow: 0 4px 32px rgba(0,0,0,.3);
      display: flex; flex-direction: column; gap: 20px;
    }
    .login-card h2 { color: #111827; font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 8px; }
    .field-group { display: flex; flex-direction: column; gap: 6px; }
    .field-label { font-size: 13px; font-weight: 600; color: #374151; }
    .field-input {
      height: 48px; border: 1.5px solid #e2e8f0; border-radius: 10px;
      padding: 0 14px; font-size: 15px;
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, sans-serif;
      color: #111827; outline: none; transition: border-color .2s;
    }
    .field-input::placeholder { color: #9ca3af; }
    .field-input:focus { border-color: #ff5c9e; }
    .submit-btn {
      height: 48px; border: none; border-radius: 12px;
      background: linear-gradient(135deg, #ff5c9e, #d6409f);
      color: #fff; font-size: 16px; font-weight: 700;
      cursor: pointer; transition: opacity .2s, transform .15s;
    }
    .submit-btn:hover { opacity: .9; }
    .submit-btn:active { transform: scale(.97); }
    .login-links { display: flex; justify-content: space-between; margin-top: 4px; }
    .login-links a { font-size: 13px; color: #ff5c9e; cursor: pointer; }

    /* ===== REGISTER PAGE ===== */
    .page-register {
      min-height: 100vh; background: #3d0f2b;
      display: flex; flex-direction: column; align-items: center;
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, sans-serif;
    }
    .reg-nav {
      width: 100%; max-width: 480px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px;
    }
    .reg-nav-back {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08); border: none; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px; transition: background .15s;
    }
    .reg-hero {
      width: 100%; max-width: 480px; text-align: center;
      padding: 20px 20px 28px; position: relative; overflow: hidden;
    }
    .reg-hero-glow {
      position: absolute; top: -80%; left: 50%; transform: translateX(-50%);
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(255,92,158,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .reg-badge {
      display: inline-block; background: rgba(255,92,158,.12);
      border: 1px solid rgba(255,92,158,.3); color: #ff5c9e;
      font-size: 12px; font-weight: 600; padding: 5px 14px;
      border-radius: 20px; margin-bottom: 14px;
    }
    .reg-title { font-size: clamp(22px, 6vw, 30px); font-weight: 800; color: #fff; margin: 0 0 10px; line-height: 1.2; }
    .reg-sub { font-size: 13px; color: rgba(255,255,255,.65); margin: 0; line-height: 1.6; }

    .form-wrap { width: 100%; max-width: 480px; padding: 0 16px 48px; flex: 1; }
    .form-card {
      background: #fff; border-radius: 16px; padding: 28px 24px;
      box-shadow: 0 4px 32px rgba(0,0,0,.3);
      display: flex; flex-direction: column; gap: 20px;
    }
    .field-note { font-size: 11px; color: #9ca3af; text-align: center; line-height: 1.5; margin-top: 4px; }

    /* Phone field */
    .phone-row { display: flex; gap: 8px; }
    .phone-row .select-wrap { flex: 0 0 auto; width: 120px; }
    .phone-row .field-input { flex: 1; }
    .select-wrap { position: relative; }
    .field-select {
      width: 100%; height: 48px;
      border: 1.5px solid #e2e8f0; border-radius: 10px;
      padding: 0 36px 0 14px; font-size: 14px;
      font-family: 'Poppins', Inter, 'Segoe UI', Arial, sans-serif;
      color: #111827; background: #fff; outline: none;
      appearance: none; -webkit-appearance: none; cursor: pointer;
    }
    .select-wrap::after {
      content: '▾'; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
      pointer-events: none; color: #9ca3af; font-size: 12px;
    }

    /* Dialog overlay */
    .dialog-overlay {
      position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,.4); z-index: 9999;
      display: none; align-items: center; justify-content: center;
    }
    .dialog-overlay.active { display: flex; }
    .dialog-box {
      background: #fff; border-radius: 16px; padding: 28px 24px;
      max-width: 300px; width: 90%; text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }
    .dialog-box h3 { color: #111827; font-size: 18px; margin-bottom: 12px; }
    .dialog-box p { color: #6b7280; font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
    .dialog-btn {
      height: 40px; padding: 0 24px;
      background: linear-gradient(135deg, #ff5c9e, #d6409f);
      border: none; border-radius: 10px;
      color: #fff; font-size: 14px; font-weight: 700;
      cursor: pointer;
    }

    /* ===== 404 PAGE ===== */
    .notfound-container {
      display: flex; flex-direction: column; width: 100%;
      min-height: 100vh; box-sizing: border-box; position: relative;
      background-color: #05956b;
      background-image:
        linear-gradient(to bottom, #05956b, #05956b 20%, rgba(5,149,107,.85) 25%, rgba(5,149,107,.45), rgba(5,149,107,0) 30%),
        url("assets/bg-DYTiQzsj.png");
      background-position: center center, center bottom;
      background-size: 100% 100%, auto;
      background-repeat: no-repeat, repeat-x;
      margin: 0 auto;
    }
    .notfound-container::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0;
      height: 30%;
      background-image: url("assets/tp-PWjviYxw.png");
      background-repeat: no-repeat; background-position: center top; background-size: cover;
      pointer-events: none; z-index: 0;
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 0%, black 85%, transparent 100%);
    }
    @media (max-width: 899px) {
      .notfound-container::before {
        background-image: url("assets/tp2-B7iXbV2P.png");
        background-size: cover;
      }
    }
    .notfound-content {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      text-align: center; color: #fff; z-index: 22;
    }
    .notfound-code { font-size: 140px; font-weight: 900; letter-spacing: 6px; color: #fff; }
    .notfound-text { margin-top: 12px; font-size: 20px; color: #fff; }
    @media (max-width: 600px) {
      .notfound-code { font-size: 84px; }
      .notfound-text { font-size: 16px; }
    }

    /* ===== RESPONSIVE ===== */
    @media (min-width: 780px) {
      .streamers-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
      .hero { max-height: 640px; }
      .sticky-bar-inner, .features-section { max-width: 900px; }
      .features-grid { max-width: 480px; margin: 0 auto; }
    }