﻿    /* â”€â”€â”€ CSS Variables (match App.vue exactly) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    :root {
      --bg-dark:      #070707;
      --bg-darker:    #030303;
      --bg-nav:       rgba(7,7,7,0.6);
      --red-primary:  #B22222;
      --red-glow:     rgba(220,20,60,0.6);
      --red-bright:   #dc143c;
      --gold-primary: #D4AF37;
      --gold-light:   #F3E5AB;
      --text-light:   #E0E0E0;
      --glass-bg:     rgba(15,15,15,0.45);
      --glass-border: rgba(212,175,55,0.15);
      --hud-border:   rgba(212,175,55,0.3);
      --hud-bg:       rgba(15,15,15,0.9);
      --accent-dim:   rgba(180,0,30,0.18);
      --accent-mid:   rgba(220,20,60,0.32);
      --accent-strong:rgba(220,20,60,0.45);
      --accent-glow:  rgba(220,20,60,0.35);
      --text-muted:   rgba(224,224,224,0.5);
      --transition:   0.2s ease;
    }

    /* â”€â”€â”€ Reset & Base (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-dark); color: var(--text-light); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
    h1, h2, h3, h4, .cinematic-font { font-family: 'Cinzel', serif; text-transform: uppercase; }

    /* â”€â”€â”€ Keyframe Animations (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
    @keyframes fadeIntro { to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse-btn { 0%, 100% { box-shadow: 0 0 15px var(--red-glow); } 50% { box-shadow: 0 0 30px rgba(220,20,60,0.8); } }
    @keyframes glitch { 0%, 100% { transform: translate(0) } 20% { transform: translate(-2px, 2px) } 40% { transform: translate(-2px, -2px) } 60% { transform: translate(2px, 2px) } 80% { transform: translate(2px, -2px) } }
    @keyframes pulse-green { 0% { opacity: 1;} 50% {opacity: 0.4;} 100% {opacity: 1;} }
    @keyframes ppFloat { 0% { opacity:1; transform:translateY(0) scale(1); } 80% { opacity:1; } 100% { opacity:0; transform:translateY(-70px) scale(1.4); } }
    @keyframes rankBadgePop { 0%{transform:scale(0) rotate(-20deg);opacity:0;} 60%{transform:scale(1.2) rotate(5deg);} 100%{transform:scale(1) rotate(0);opacity:1;} }
    @keyframes rankGlow { 0%,100%{box-shadow:0 0 20px var(--gold-primary);} 50%{box-shadow:0 0 60px var(--gold-primary), 0 0 100px rgba(212,175,55,0.4);} }
    @keyframes flame { 0%,100%{transform:scale(1)} 50%{transform:scale(1.25)} }
    @keyframes pulse-text { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
    @keyframes fadeUp      { from { opacity:0; transform:translateY(12px) } to { opacity:1; transform:translateY(0) } }
    @keyframes cardSlideIn { from { opacity:0; transform:translateY(18px) } to { opacity:1; transform:translateY(0) } }
    @keyframes toastIn     { from { opacity:0; transform:translateX(110%) } to { opacity:1; transform:translateX(0) } }
    @keyframes toastOut    { from { opacity:1; transform:translateX(0) } to { opacity:0; transform:translateX(110%) } }
    @keyframes badgePop    { 0%{transform:scale(0)} 65%{transform:scale(1.4)} 100%{transform:scale(1)} }
    @keyframes msgSlideIn  { from { opacity:0; transform:translateX(-6px) } to { opacity:1; transform:translateX(0) } }
    @keyframes shimmerMove { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
    @keyframes spin        { to { transform:rotate(360deg) } }
    @keyframes notifIn     { from { opacity:0; transform:translateX(14px) } to { opacity:1; transform:translateX(0) } }

    /* Page content entrance */
    #player-content > div:not(#toast-container) { animation: fadeUp 0.26s ease both; }

    /* Loading state / Spinner */
    .loading-state { display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1rem; min-height:220px; padding:3rem; }
    .spinner { width:38px; height:38px; border:3px solid rgba(212,175,55,0.12); border-top-color:var(--gold-primary); border-radius:50%; animation:spin 0.75s linear infinite; }

    /* Toast notifications */
    #toast-container { position:fixed; bottom:1.6rem; right:1.6rem; z-index:99999; display:flex; flex-direction:column; gap:8px; pointer-events:none; }
    .toast { padding:0.65rem 1.1rem; border-radius:6px; font-size:0.82rem; font-weight:600; font-family:'Montserrat',sans-serif; color:#e0e0e0; background:rgba(10,10,10,0.96); border-left:3px solid var(--gold-primary); box-shadow:0 4px 24px rgba(0,0,0,0.7),0 0 0 1px rgba(255,255,255,0.04); backdrop-filter:blur(12px); animation:toastIn 0.32s cubic-bezier(0.34,1.56,0.64,1) both; pointer-events:auto; max-width:300px; }
    .toast-success { border-left-color:#00aa44; }
    .toast-error   { border-left-color:var(--red-bright); }
    .toast-info    { border-left-color:var(--gold-primary); }
    .toast.removing { animation:toastOut 0.22s ease forwards; }

    /* Button press feedback */
    .btn:active:not(:disabled) { transform:scale(0.95) !important; transition:transform 0.08s ease !important; }

    /* Bell badge pop */
    .hdr-bell-badge.pop { animation:badgePop 0.38s cubic-bezier(0.175,0.885,0.32,1.275) both; }

    /* Notification item stagger */
    .notif-item { animation:notifIn 0.22s ease both; }
    .notif-item:nth-child(1){animation-delay:0.00s} .notif-item:nth-child(2){animation-delay:0.04s}
    .notif-item:nth-child(3){animation-delay:0.08s} .notif-item:nth-child(4){animation-delay:0.12s}
    .notif-item:nth-child(5){animation-delay:0.16s} .notif-item:nth-child(6){animation-delay:0.20s}
    .notif-item:nth-child(7){animation-delay:0.24s} .notif-item:nth-child(8){animation-delay:0.28s}

    /* Chat message entrance */
    .chat-msg { animation:msgSlideIn 0.15s ease both; }

    /* Rank badge shimmer */
    .rank-badge { position:relative; overflow:hidden; display:inline-flex; align-items:center; }
    .rank-badge::after { content:''; position:absolute; top:0; left:-100%; width:55%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.18),transparent); animation:shimmerMove 2.8s ease-in-out infinite; }

    /* Stat card stagger */
    .stat-card { animation:cardSlideIn 0.3s ease both; }
    .stat-card:nth-child(2){animation-delay:0.06s} .stat-card:nth-child(3){animation-delay:0.12s} .stat-card:nth-child(4){animation-delay:0.18s}

    /* Home action button hover */
    .home-action { transition:transform 0.18s ease,box-shadow 0.18s ease !important; }
    .home-action:hover { transform:translateY(-3px) scale(1.04) !important; }
    .home-action:active { transform:scale(0.96) !important; }


    /* â”€â”€â”€ Utility Classes (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); will-change: transform, opacity; }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .floating { animation: floating 3s ease-in-out infinite; }
    .text-center { text-align: center; }
    .gold-text { color: var(--gold-primary); }
    .red-text { color: var(--red-primary); }

    /* â”€â”€â”€ Scrollbars (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    ::-webkit-scrollbar { width: 3px; height: 3px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }
    * { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.07) transparent; }

    /* â”€â”€â”€ Buttons (matches App.vue exactly) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.7rem 1.2rem; font-family: 'Cinzel', serif; font-weight: 800; font-size: 0.82rem; text-decoration: none; text-transform: uppercase; border-radius: 4px; transition: all 0.3s ease; cursor: pointer; border: none; }
    .btn:disabled { opacity: 0.4; cursor: not-allowed; animation: none; filter: grayscale(100%); pointer-events: none; }
    .btn-primary { background: linear-gradient(45deg, #8B0000, #ff0000); color: #fff; border: 1px solid #ff4d4d; animation: pulse-btn 2.5s infinite; position: relative; overflow: hidden; min-height: 44px; }
    .btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); transition: 0.5s; }
    .btn-primary:hover:not(:disabled)::before { left: 150%; }
    .btn-primary:hover:not(:disabled) { transform: scale(1.03) translateY(-2px); box-shadow: 0 0 30px rgba(255,0,0,0.8); }
    .btn-secondary { background: rgba(5,5,5,0.8); color: var(--gold-primary); border: 2px solid var(--gold-primary); backdrop-filter: blur(5px); min-height: 44px; }
    .btn-secondary:hover { background: var(--gold-primary); color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }

    /* â”€â”€â”€ Glass Panel (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .glass-panel { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 8px; padding: 2rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
    .glass-panel::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); transform: skewX(-20deg); transition: 0.5s; }
    .glass-panel:hover::after { left: 150%; }
    .glass-panel:hover { border-color: var(--red-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px var(--red-glow); transform: translateY(-5px); }

    /* â”€â”€â”€ PP Float (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .pp-float { position:fixed; font-family:'Cinzel',serif; font-weight:900; font-size:1.3rem; color:#FFD700; pointer-events:none; z-index:999999; animation:ppFloat 1.6s ease forwards; text-shadow:0 0 12px #FFD700, 0 0 30px rgba(255,215,0,0.5); }

    /* â”€â”€â”€ Streak badge (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .streak-badge { display:flex; align-items:center; gap:4px; background:rgba(255,90,0,0.1); border:1px solid rgba(255,90,0,0.3); border-radius:20px; padding:3px 10px; cursor:default; }
    .streak-fire { font-size:0.9rem; color:#555; }
    .streak-fire.burning { color:#ff6600; animation: flame 0.7s ease-in-out infinite; }
    .streak-count { font-weight:800; font-size:0.9rem; color:#fff; }
    .streak-label { font-size:0.65rem; color:#888; font-weight:600; }
    .pp-header-display { display:flex; align-items:center; gap:4px; }
    .pp-header-val { font-weight:800; font-size:0.95rem; color:var(--gold-primary); transition:color 0.3s; }
    .gold-header-val { font-weight:800; font-size:0.95rem; color:#FFD700; }

    /* â”€â”€â”€ DashHeader scoped (matches DashHeader.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .header-mobile-stats {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 800;
      color: var(--gold-primary);
      margin-right: 4px;
    }
    .header-m-divider { color: #444; font-size: 0.8rem; margin: 0 2px; }

    /* â”€â”€â”€ DashSidebar scoped (matches DashSidebar.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .nav-locked { opacity: 0.55; }
    .nav-locked:hover { opacity: 0.75; }
    .nav-lock-tag {
      margin-left: auto;
      display: flex; align-items: center; gap: 3px;
      font-size: 0.6rem; color: #2a2a2a;
      background: #111; border: 1px solid #1a1a1a;
      border-radius: 3px; padding: 1px 5px;
      font-weight: 700; letter-spacing: 0.5px; flex-shrink: 0;
    }
    .nav-lock-tag--live {
      background: rgba(0,0,0,0.3) !important;
      border-color: rgba(255,255,255,0.1) !important;
      color: rgba(255,255,255,0.5) !important;
    }
    .sidebar-close-btn {
      position: absolute; top: 14px; right: 0.75rem;
      background: none; border: none; color: #555;
      font-size: 1.2rem; cursor: pointer;
      transition: color 0.2s; padding: 8px; z-index: 10; line-height: 1;
      min-width: 36px; min-height: 36px;
      align-items: center; justify-content: center;
      display: flex;
    }
    .sidebar-close-btn:hover { color: #fff; }

    /* â”€â”€â”€ Player Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .player-wrap { display: flex; min-height: 100vh; }

    /* â”€â”€â”€ Topbar / Header (matches .dash-header from App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .dash-header {
      position: fixed; top: 0; left: 0; right: 0;
      height: 56px; z-index: 9999;
      background: rgba(0,0,0,0.95);
      border-bottom: 1px solid #222;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0 0.75rem;
    }
    .hamburger-btn {
      background: none; border: none; color: var(--text-light);
      font-size: 1rem; cursor: pointer; padding: 5px 7px;
      border-radius: 4px; transition: color 0.2s; display: flex; flex-shrink: 0;
    }
    .hamburger-btn:hover { color: var(--gold-primary); }
    .header-logo { flex: 0 1 auto; min-width: 0; display: flex; align-items: center; gap: 5px; }
    .header-logo img { height: 24px; max-width: 88px; object-fit: contain; }
    .beta-badge {
      font-family: 'Cinzel', serif; font-size: 0.5rem; font-weight: 700;
      letter-spacing: 0.5px; color: #000; background: var(--gold-primary);
      padding: 2px 5px; border-radius: 4px; text-transform: uppercase;
      line-height: 1; white-space: nowrap; flex-shrink: 0;
    }
    .header-stats { flex: 1; display: none; justify-content: center; gap: 3rem; align-items: center; }
    .stat-item { display: flex; flex-direction: column; align-items: center; }
    .stat-label { font-size: 0.7rem; color: #888; font-weight: 600; letter-spacing: 1px; }
    .stat-value { font-weight: bold; font-size: 1.1rem; color: #fff; display: flex; align-items: center; gap: 4px; }
    .pp-header-val  { font-weight: 800; font-size: 0.95rem; color: var(--gold-primary); }
    .gold-header-val{ font-weight: 800; font-size: 0.95rem; color: #FFD700; }
    .streak-badge   { display: flex; align-items: center; gap: 4px; }
    .streak-fire    { color: #555; font-size: 1rem; }
    .streak-fire.burning { color: #ff6600; }
    .streak-count   { font-weight: 800; font-size: 0.95rem; color: #ff6600; }
    .streak-label   { font-size: 0.6rem; color: #888; font-weight: 700; letter-spacing: 0.5px; }
    .header-profile { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 7px; min-width: 0; }
    .hdr-guest-login-btn {
      display: none; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap;
      background: linear-gradient(135deg, var(--gold-primary), #b8960c);
      color: #000; border: none; border-radius: 6px;
      font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.8rem;
      padding: 0.55rem 1.2rem; cursor: pointer;
    }
    .hdr-guest-login-btn:hover { filter: brightness(1.1); }
    .saldo-item     { display: flex; flex-direction: row; align-items: center; gap: 5px; border-right: 1px solid #222; padding-right: 7px; }
    .saldo-text     { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; min-width: 54px; }
    .saldo-text .stat-label { display: none; }
    .betou-balance-value { font-size: 0.72rem; font-family: 'Montserrat', sans-serif; white-space: nowrap; margin-top: 0; max-width: 74px; overflow: hidden; text-overflow: ellipsis; }
    .balance-deposit-btn {
      width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(34,197,94,0.35);
      background: #22c55e; color: #020403; display: inline-flex; align-items: center; justify-content: center;
      font-size: 0.78rem; cursor: pointer; box-shadow: 0 0 14px rgba(34,197,94,0.22);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }
    .balance-deposit-btn:hover { background: #2cf070; transform: translateY(-1px); box-shadow: 0 0 20px rgba(34,197,94,0.34); }
    .balance-deposit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
    .deposit-action-mini { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; }
    .deposit-mini-label { font-size: 0.52rem; color: #777; font-weight: 700; letter-spacing: 0.02em; line-height: 1; }
    .balance-updated { animation: balancePulse 0.55s ease-out; }
    @keyframes balancePulse {
      0% { transform: scale(1); color: #fff; }
      45% { transform: scale(1.08); color: #22c55e; }
      100% { transform: scale(1); color: #fff; }
    }
    .profile-btn    { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 3px 0; border-radius: 6px; transition: background 0.2s; min-width: 72px; }
    .saldo-item { order: 1; }
    .header-bell-btn { order: 3; }
    .profile-btn { order: 2; }
    .profile-btn:hover { background: rgba(255,255,255,0.05); }
    .profile-info   { display: flex; flex-direction: column; text-align: right; min-width: 54px; max-width: 82px; }
    .profile-name   { font-weight: bold; font-size: 0.9rem; color: #fff; white-space: nowrap; display: none; }
    .profile-rank   { font-size: 0.62rem; color: var(--gold-primary); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .mini-progress-bar { width: 100%; height: 4px; background: #222; border-radius: 2px; margin-top: 4px; overflow: hidden; }
    .mini-fill      { height: 100%; background: linear-gradient(90deg, var(--red-primary), var(--gold-primary)); transition: width 0.4s ease; }
    .profile-avatar { width: 35px; height: 35px; border-radius: 50%; border: 1px solid var(--red-bright); background: #222; display: none; align-items: center; justify-content: center; flex-shrink: 0; }
    .avatar-img     { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    /* â”€â”€â”€ Sidebar (matches .sidebar from App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .player-sidebar {
      width: min(280px, 88vw);
      background: #050505;
      border-right: 1px solid #222;
      padding: 2rem 0;
      position: fixed; left: 0; top: 0;
      height: 100vh; padding-top: 56px;
      overflow-y: auto; z-index: 9998;
      display: flex; flex-direction: column;
      transform: translateX(-110%);
      transition: transform 0.28s ease;
    }
    /* Nota: .player-sidebar.open fica sem condicional (aplica em qualquer tier).
       No tier desktop o .player-sidebar volta a transform:none (sempre visivel),
       e translateX(0) do .open e visualmente equivalente (identidade), entao nao
       ha necessidade de neutralizar .open especificamente no desktop. */
    .player-sidebar.open {
      transform: translateX(0);
      box-shadow: 8px 0 40px rgba(0,0,0,0.95);
    }
    .sidebar-nav { display: flex; flex-direction: column; flex: 1; }
    .sidebar-user-card {
      display: flex; align-items: center; gap: 10px;
      margin: 8px 10px 6px; padding: 0.75rem;
      border: 1px solid rgba(212,175,55,0.14); border-radius: 8px;
      background: rgba(255,255,255,0.025);
    }
    .sidebar-user-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: #151515; border: 1px solid var(--red-bright); color: #aaa;
      flex-shrink: 0;
    }
    .sidebar-user-meta { min-width: 0; flex: 1; display: flex; flex-direction: column; line-height: 1.1; }
    .sidebar-user-name { color: #fff; font-size: 0.82rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sidebar-user-rank { font-size: 0.66rem; font-weight: 700; margin-top: 3px; }
    .sidebar-progress-bar { width: 100%; height: 3px; background: #1d1d1d; border-radius: 999px; margin-top: 6px; overflow: hidden; }
    .sidebar-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red-primary), var(--gold-primary)); transition: width 0.4s ease; }
    .nav-item-dash {
      padding: 1rem 2rem;
      display: flex; align-items: center; gap: 15px;
      color: #888; text-decoration: none;
      font-size: 0.9rem; font-weight: 500;
      transition: 0.3s; border-left: 3px solid transparent;
      cursor: pointer; background: none; border-top: none; border-right: none; border-bottom: none;
      font-family: 'Montserrat', sans-serif; width: 100%; text-align: left;
      min-height: 48px;
    }
    .nav-item-dash i { width: 20px; text-align: center; flex-shrink: 0; }
    .nav-item-dash:hover,
    .nav-item-dash.active {
      color: #fff;
      background: rgba(255,255,255,0.02);
      border-left-color: var(--red-bright);
    }
    .menu-divider {
      padding: 1.5rem 2rem 0.5rem;
      font-size: 0.7rem; color: #555;
      font-weight: 700; letter-spacing: 1px;
    }
    /* Special "Quartel ao Vivo" button */
    .nav-live-btn {
      background: var(--accent-dim) !important;
      border: 1px solid var(--accent-strong) !important;
      color: #fff !important;
      border-radius: 6px;
      margin: 8px 8px 4px !important;
      padding-left: 14px !important;
      width: auto !important;
    }
    .nav-live-btn:hover {
      background: var(--accent-mid) !important;
      border-color: var(--red-bright) !important;
    }
    .nav-live-btn.active {
      background: var(--accent-mid) !important;
      border-color: var(--red-bright) !important;
    }
    .nav-live-btn.is-live {
      border-color: var(--red-bright) !important;
      animation: live-pulse 2s ease-in-out infinite;
    }
    @keyframes live-pulse { 0%,100%{box-shadow:0 0 0 0 transparent;} 50%{box-shadow:0 0 14px 4px var(--accent-glow);} }
    .live-badge {
      margin-left: auto; background: var(--red-bright); color: #fff;
      font-size: 0.5rem; font-weight: 900; padding: 2px 6px;
      border-radius: 3px; letter-spacing: 1.5px; font-family: 'Cinzel', serif;
      animation: live-blink 1s ease-in-out infinite; flex-shrink: 0;
    }
    @keyframes live-blink { 0%,100%{opacity:1;} 50%{opacity:0.45;} }
    .sidebar-backdrop {
      position: fixed; inset: 0; background: rgba(0,0,0,0.5);
      z-index: 9997; display: none;
    }
    .sidebar-backdrop.show { display: block; }

    /* â”€â”€â”€ Main Content (matches .main-content) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .player-content {
      margin-left: 0;
      padding: 64px 0.875rem 4.5rem;
      flex: 1;
      overflow-y: auto;
      min-height: 100vh;
    }

    /* Mobile Responsive: overrides tablet/desktop consolidados no fim do arquivo */

    /* â”€â”€â”€ panel-box (matches .panel-box) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .panel-box {
      background: var(--hud-bg);
      border: 1px solid var(--hud-border);
      border-radius: 8px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
    }

    /* â”€â”€â”€ box-title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .box-title {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      color: var(--gold-primary);
      margin-bottom: 1rem;
      border-bottom: 1px solid #222;
      padding-bottom: 0.5rem;
      font-weight: 800;
      display: flex; align-items: center; gap: 8px;
    }

    /* â”€â”€â”€ Stat Grid (Home) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px; margin-bottom: 20px;
    }
    .stat-card {
      background: var(--hud-bg);
      border: 1px solid var(--hud-border);
      border-radius: 8px; padding: 14px; text-align: center;
    }
    .stat-num {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem; font-weight: 900; color: var(--gold-primary);
    }
    .stat-label { font-size: 11px; color: #888; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

    .progress-bar-wrap { width: 100%; height: 6px; background: #1a1a1a; border-radius: 3px; overflow: hidden; }
    .progress-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-primary) 0%, var(--red-bright) 100%); border-radius: 3px; transition: width 0.4s ease; }

    /* â”€â”€â”€ Feed items â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .feed-item {
      display: flex; gap: 10px; align-items: flex-start;
      padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .feed-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }

    /* â”€â”€â”€ Live View â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    /* ─── Live layout (3 colunas) ─────────────────────────────────────────────── */
    #view-live {
      display: flex; flex-direction: row; gap: 8px;
      height: calc(100vh - 122px);
      margin-top: 10px;
      overflow: hidden; padding: 0;
    }

    /* Coluna esquerda: join card + chat */
    .live-left-col {
      width: 268px; min-width: 220px; flex-shrink: 0;
      display: flex; flex-direction: column; gap: 8px; overflow: hidden;
    }
    .live-ltop {
      background: #0a0a0a; border: 1px solid #1a1a1a;
      border-radius: 8px; overflow: hidden; flex-shrink: 0;
    }
    .lleft-join, .lleft-offline {
      padding: 1.4rem 1rem;
      min-height: 220px;
      display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    }
    .lleft-jitsi {
      position: relative; height: 240px;
    }
    .live-chat-col {
      flex: 1; min-height: 0;
      display: flex; flex-direction: column;
      background: #0a0a0a; border: 1px solid #1a1a1a;
      border-radius: 8px; overflow: hidden;
    }

    /* Centro: Jogo Aviator */
    .live-game-center {
      flex: 1; min-width: 0;
      background: #050505; border-radius: 8px; overflow: hidden;
    }
    .live-betou-container { width: 100%; height: 100%; border-radius: 8px; }

    /* Coluna direita: info da sala */
    .live-right-col {
      width: 190px; min-width: 160px; flex-shrink: 0;
      display: flex; flex-direction: column; overflow-y: auto;
      gap: 0;
    }

    /* Status indicator + dot */
    .live-status-indicator {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 1.5px; font-family: 'Cinzel', serif;
    }
    .live-status-indicator.live    { color: var(--red-bright); }
    .live-status-indicator.offline { color: #2a2a2a; }
    .live-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
    .live-status-indicator.live .live-dot    { background: var(--red-bright); animation: pulse 1.5s ease-in-out infinite; }
    .live-status-indicator.offline .live-dot { background: #2a2a2a; }
    @keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }
    @keyframes pulse     { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }

    /* Chat */
    .chat-panel-hdr {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.6rem 0.8rem; border-bottom: 1px solid #111; flex-shrink: 0;
    }
    .chat-close-x {
      background: none; border: none; color: #2a2a2a;
      cursor: pointer; font-size: 0.85rem;
      padding: 2px 5px; line-height: 1; transition: color 0.2s;
    }
    .chat-close-x:hover { color: #666; }
    .chat-msgs {
      flex: 1; overflow-y: auto; padding: 0.5rem 0.7rem;
      display: flex; flex-direction: column; gap: 1px;
    }
    .chat-empty {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0.6rem; padding: 2rem 1rem;
    }
    .chat-empty p { color: #1a1a1a; font-size: 0.72rem; text-align: center; line-height: 1.5; margin: 0; }
    .chat-msg { padding: 4px 5px; border-radius: 4px; }
    .chat-msg:hover { background: rgba(255,255,255,0.02); }
    .chat-msg.own   { background: rgba(139,0,0,0.05); }
    .msg-meta { display: flex; align-items: center; gap: 4px; margin-bottom: 1px; flex-wrap: wrap; }
    .admin-crown  { font-size: 0.68rem; color: var(--gold-primary); }
    .msg-username { font-size: 0.73rem; font-weight: 700; }
    .msg-time     { font-size: 0.62rem; color: #2a2a2a; margin-left: auto; }
    .msg-text     { font-size: 0.78rem; color: #777; line-height: 1.4; word-break: break-word; }
    .chat-input-row {
      display: flex; gap: 5px; padding: 0.5rem;
      border-top: 1px solid #0d0d0d; flex-shrink: 0;
    }
    .chat-input {
      flex: 1; min-width: 0; background: #0a0a0a;
      border: 1px solid #1a1a1a; border-radius: 4px;
      color: #ccc; font-size: 0.78rem;
      padding: 0.4rem 0.65rem; outline: none;
      font-family: 'Montserrat', sans-serif;
    }
    .chat-input:focus { border-color: var(--red-bright); }
    .chat-input::placeholder { color: #2a2a2a; }
    .chat-send-btn {
      background: rgba(139,0,0,0.18); border: 1px solid rgba(139,0,0,0.3);
      border-radius: 4px; color: var(--red-bright);
      padding: 0.4rem 0.65rem; cursor: pointer;
      font-size: 0.78rem; transition: background 0.2s; flex-shrink: 0;
    }
    .chat-send-btn:hover:not(:disabled) { background: rgba(139,0,0,0.32); }
    .chat-send-btn:disabled { opacity: 0.25; cursor: default; }

    /* Sidebar compartilhada */
    .next-session-card {
      display: flex; align-items: flex-start; gap: 8px;
      background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.08);
      border-radius: 6px; padding: 0.7rem 0.9rem; margin-bottom: 0.5rem;
    }
    .sidebar-info-row {
      background: #080808; border: 1px solid #1a1a1a;
      border-radius: 4px; padding: 0.45rem 0.65rem; margin-bottom: 0.45rem;
    }
    .schedule-item {
      display: flex; justify-content: space-between;
      align-items: flex-start; padding: 0.38rem 0;
      border-bottom: 1px solid #0d0d0d; gap: 4px;
    }
    .schedule-item.is-now { background: rgba(0,170,68,0.04); border-radius: 4px; padding-left: 4px; }
    .now-badge {
      font-size: 0.55rem; font-weight: 700; color: #00aa44;
      background: rgba(0,170,68,0.1); border: 1px solid rgba(0,170,68,0.2);
      border-radius: 3px; padding: 1px 4px; display: inline-block; margin-bottom: 2px;
    }

    /* â”€â”€â”€ Store â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .store-header {
      display: flex; align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem; padding-bottom: 1rem;
      border-bottom: 1px solid #1a1a1a;
    }
    .store-balance {
      display: flex; align-items: center; gap: 8px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.25);
      padding: 0.5rem 1.2rem; border-radius: 6px;
      font-family: 'Cinzel', serif; font-size: 1.1rem;
      font-weight: 700; color: var(--gold-primary);
    }
    .store-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .store-tab {
      background: #0d0d0d; border: 1px solid #222; color: #555;
      padding: 0.4rem 0.9rem; border-radius: 4px;
      font-size: 0.78rem; font-weight: 600; cursor: pointer;
      transition: all 0.2s; font-family: 'Cinzel', serif; letter-spacing: 0.5px;
    }
    .store-tab:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
    .store-tab.active { background: rgba(212,175,55,0.1); border-color: var(--gold-primary); color: var(--gold-primary); }
    /* â”€â”€â”€ Challenges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-challenges { padding: 1.5rem; }
    .challenges-header {
      display: flex; align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.5rem; padding-bottom: 1rem;
      border-bottom: 1px solid #1a1a1a; gap: 1rem;
    }
    .ch-countdown {
      display: flex; align-items: center; gap: 5px;
      font-size: 0.78rem; color: #555;
      background: var(--hud-bg); border: 1px solid var(--hud-border);
      border-radius: 6px; padding: 0.5rem 1rem;
      white-space: nowrap; flex-shrink: 0;
    }
    .ch-countdown strong { color: var(--gold-primary); font-family: 'Cinzel', serif; font-size: 0.85rem; }
    .ch-list { display: flex; flex-direction: column; gap: 1rem; }
    .challenge-card, .ch-card {
      background: var(--hud-bg); border: 1px solid var(--hud-border);
      border-radius: 8px; padding: 1.2rem;
      display: flex; flex-direction: column; gap: 0.8rem;
      transition: border-color 0.2s;
    }
    .challenge-card.completed, .ch-card.ch-completed { border-left: 3px solid #4caf50; opacity: 0.85; }
    .ch-top { display: flex; align-items: flex-start; gap: 0.8rem; }
    .ch-icon {
      width: 40px; height: 40px; border-radius: 8px;
      background: rgba(220,20,60,0.1); color: var(--red-bright);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .ch-icon.done { background: rgba(76,175,80,0.1); color: #4caf50; }
    .ch-info { flex: 1; min-width: 0; }
    .ch-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .ch-desc  { font-size: 0.75rem; color: #555; line-height: 1.4; }
    .ch-done-badge {
      display: flex; flex-direction: column; align-items: center; gap: 2px;
      font-size: 0.58rem; font-weight: 700; color: #4caf50;
      background: rgba(76,175,80,0.08); border: 1px solid rgba(76,175,80,0.2);
      border-radius: 6px; padding: 5px 8px; flex-shrink: 0;
      letter-spacing: 0.5px; font-family: 'Cinzel', serif;
    }
    .ch-done-badge i { font-size: 0.9rem; }
    .ch-progress-row { display: flex; align-items: center; gap: 0.6rem; }
    .ch-bar {
      flex: 1; height: 5px;
      background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden;
    }
    .ch-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--red-primary), var(--red-bright));
      border-radius: 3px; transition: width 0.5s ease;
    }
    .ch-fill-done { background: linear-gradient(90deg, #388e3c, #4caf50); }
    .ch-btn { width: 100%; padding: 0.6rem; font-size: 0.78rem; }
    .ch-progress-label {
      font-size: 0.7rem; color: #555; font-family: 'Cinzel', serif;
      font-weight: 700; flex-shrink: 0;
    }
    .ch-rewards { display: flex; gap: 6px; flex-wrap: wrap; }
    .ch-reward {
      font-size: 0.7rem; font-weight: 700;
      padding: 3px 9px; border-radius: 20px;
      display: flex; align-items: center; gap: 4px;
    }
    .pp-reward   { background: rgba(178,34,34,0.1);  color: var(--red-bright); border: 1px solid rgba(178,34,34,0.2); }
    .gold-reward { background: rgba(212,175,55,0.1); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.2); }
    /* legacy aliases */
    .challenge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
    .challenge-progress-wrap { background: rgba(255,255,255,0.06); border-radius: 4px; height: 5px; overflow: hidden; margin: 10px 0; }
    .challenge-progress-fill { height: 100%; background: linear-gradient(90deg, var(--red-primary), var(--red-bright)); border-radius: 4px; transition: width 0.5s; }

    /* Simulador de Padrão */
    #view-simulator { padding: 0; height: 100%; overflow: hidden; }
    .sim-layout { display: grid; grid-template-columns: 1fr; gap: 1rem; height: auto; overflow-y: auto; padding: 1rem; box-sizing: border-box; }
    .sim-game-col { display: flex; flex-direction: column; min-height: 0; }
    .sim-game-col .betou-container { flex: 1; min-height: 800px; }
    .sim-tool-col { min-height: 0; overflow-y: auto; order: -1; }
    .sim-panel { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.2rem; }
    .sim-field-label { font-size: 0.66rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin: 12px 0 8px; }
    .sim-result-pick-row { display: flex; gap: 10px; }
    .sim-result-pick-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 34px; height: 34px; min-width: 34px; flex-shrink: 0;
      border-radius: 50%; border: 3px solid rgba(255,255,255,0.12);
      background: var(--dot-c); cursor: pointer; padding: 0;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }
    .sim-result-pick-btn:hover { transform: scale(1.1); }
    .sim-result-pick-btn.active { border-color: #fff; box-shadow: 0 0 0 3px var(--dot-c), 0 0 14px var(--dot-c); }
    .sim-result-breakdown { display: flex; justify-content: center; gap: 12px; margin-top: 8px; font-size: 0.66rem; color: #888; }
    .sim-result-breakdown span { display: inline-flex; align-items: center; gap: 4px; }
    .sim-result-breakdown span i { width: 8px; height: 8px; border-radius: 50%; background: var(--dot-c); display: inline-block; }
    .sim-result-sub { font-size: 0.68rem; color: #666; margin-top: 2px; }
    .sim-tested-game {
      display: flex; align-items: center; justify-content: center; gap: 6px;
      font-size: 0.68rem; font-weight: 700; color: var(--gold-primary);
      text-transform: uppercase; letter-spacing: 0.5px;
      background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25);
      border-radius: 20px; padding: 5px 14px; margin: 0 auto 12px; width: fit-content;
    }
    .sim-builder { padding-top: 0.4rem; border-top: 1px solid #1a1a1a; }
    .sim-palette { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
    .sim-pick-btn {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; min-width: 38px; flex-shrink: 0;
      border-radius: 50%; border: 3px solid rgba(255,255,255,0.12);
      background: var(--dot-c); cursor: pointer; padding: 0;
      transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
    }
    .sim-pick-btn:hover { transform: scale(1.15); border-color: rgba(255,255,255,0.6); box-shadow: 0 0 12px var(--dot-c); }
    .sim-palette-sep { width: 1px; height: 24px; background: #333; margin: 0 2px; }
    .sim-clear-btn {
      background: #141414; border: 1px solid #2a2a2a; color: #888; border-radius: 50%;
      width: 30px; height: 30px; min-width: 30px; flex-shrink: 0; font-size: 0.75rem;
      cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
      transition: background 0.15s, color 0.15s;
    }
    .sim-clear-btn:hover { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }
    .sim-sequence {
      display: flex; flex-wrap: wrap; gap: 8px; min-height: 52px;
      padding: 10px 12px; background: #0a0a0a; border-radius: 8px;
      border: 1px solid #1a1a1a; align-items: center;
    }
    .sim-seq-empty { color: #444; font-size: 0.74rem; font-style: italic; pointer-events: none; }
    .sim-seq-dot {
      width: 32px; height: 32px; border-radius: 50%; background: var(--dot-c);
      cursor: pointer; position: relative; border: 2px solid rgba(255,255,255,0.15);
      transition: transform 0.12s; overflow: hidden;
    }
    .sim-seq-dot::after {
      content: '✕'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.15s;
    }
    .sim-seq-dot:hover { transform: scale(1.1); }
    .sim-seq-dot:hover::after { opacity: 1; }
    .sim-results-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 10px; margin-top: 1.2rem; }
    .sim-result-card { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 8px; padding: 14px 10px; text-align: center; }
    .sim-result-window { font-size: 0.66rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
    .sim-result-window small { display: block; color: #444; font-size: 0.58rem; text-transform: none; letter-spacing: 0; margin-top: 2px; font-style: italic; }
    .sim-result-count { font-family: 'Cinzel',serif; font-size: 1.7rem; font-weight: 900; color: var(--gold-primary); }
    .sim-result-count small { font-size: 0.62rem; font-weight: 600; color: #888; font-family: 'Montserrat',sans-serif; margin-left: 2px; }
    .sim-disclaimer { margin-top: 1rem; font-size: 0.68rem; color: #444; line-height: 1.5; text-align: center; }

    /* â”€â”€â”€ Leaderboard â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-leaderboard { height: 100%; overflow-y: auto; padding: 0.5rem; }
    .lb-layout { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
    .lb-card { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.5rem; }
    .lb-card-title {
      font-family: 'Cinzel', serif; font-size: 0.75rem; color: #666;
      text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: 1rem; display: flex; align-items: center; gap: 6px;
    }
    .lb-table { width: 100%; border-collapse: collapse; }
    .lb-table th {
      font-size: 0.68rem; color: #555; text-transform: uppercase;
      letter-spacing: 1px; padding: 0.5rem; border-bottom: 1px solid #1a1a1a; text-align: left;
    }
    .lb-table td { padding: 0.75rem 0.5rem; font-size: 0.85rem; border-bottom: 1px solid #0d0d0d; vertical-align: middle; }
    .lb-row-me td { background: rgba(212,175,55,0.06); }
    .lb-row-me td:first-child { border-left: 3px solid var(--gold-primary); }
    .lb-pos { font-family: 'Cinzel', serif; font-weight: 900; font-size: 1rem; color: #444; min-width: 32px; display: inline-block; }
    .lb-pos.gold   { color: #FFD700; text-shadow: 0 0 10px rgba(255,215,0,0.5); }
    .lb-pos.silver { color: #C0C0C0; }
    .lb-pos.bronze { color: #CD7F32; }
    .lb-name { font-weight: 600; color: #ddd; }
    .lb-rank-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 5px; }
    .lb-pp { font-family: 'Cinzel', serif; color: var(--gold-primary); font-weight: 700; }
    .lb-streak { display: flex; align-items: center; gap: 4px; font-size: 0.78rem; }
    .streak-personal-card {
      background: var(--hud-bg); border: 1px solid rgba(255,90,0,0.3);
      border-radius: 8px; padding: 1.5rem;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .streak-days-row { display: flex; gap: 6px; flex-wrap: wrap; }
    .streak-day {
      width: 32px; height: 32px; border-radius: 6px;
      border: 1px solid #222; display: flex; align-items: center;
      justify-content: center; font-size: 0.75rem; font-weight: 700; color: #444;
    }
    .streak-day.done  { background: linear-gradient(135deg, #ff6600, #ff3300); border-color: #ff6600; color: #fff; }
    .streak-day.today { border-color: var(--gold-primary); color: var(--gold-primary); background: rgba(212,175,55,0.1); }
    .streak-bonus { background: rgba(255,90,0,0.08); border: 1px dashed rgba(255,90,0,0.3); border-radius: 6px; padding: 0.8rem; font-size: 0.8rem; }
    .streak-bonus-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; color: #888; }
    .streak-bonus-row:last-child { margin-bottom: 0; }
    .streak-bonus-row span:last-child { color: var(--gold-primary); font-weight: 700; }
    /* legacy tab aliases */
    .tx-tabs, .lb-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--hud-border); margin-bottom: 16px; }
    .tx-tab, .lb-tab {
      padding: 8px 16px; cursor: pointer;
      font-size: 0.78rem; font-weight: 700; font-family: 'Cinzel', serif;
      color: #555; border-bottom: 2px solid transparent; transition: all 0.2s;
    }
    .tx-tab.active, .lb-tab.active { color: var(--gold-primary); border-bottom-color: var(--gold-primary); }

    /* Estrategias do Expert (ranking) */
    #view-ranking { padding: 1.5rem; }
    .rk-list { display: flex; flex-direction: column; gap: 1rem; }
    .rk-card { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .rk-rank {
      font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.1rem; color: #444;
      min-width: 40px; flex-shrink: 0; text-align: center;
    }
    .rk-rank-medal { font-size: 1.6rem; }
    .rk-body { flex: 1; min-width: 0; }
    .rk-name { font-size: 0.92rem; font-weight: 700; color: #fff; }
    .rk-game { font-size: 0.68rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
    .rk-pattern-row { display: flex; align-items: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
    .rk-arrow { color: #555; font-size: 0.8rem; margin: 0 2px; }
    .rk-stat { flex-shrink: 0; text-align: center; border-top: 1px solid #1a1a1a; border-left: none; padding: 10px 0 0; margin-top: 6px; width: 100%; }

    /* â”€â”€â”€ Transactions / History â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .tx-list { display: flex; flex-direction: column; gap: 4px; }
    .tx-group-label {
      font-size: 0.68rem; color: #555; padding: 10px 0 4px;
      text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    }
    .tx-item {
      display: flex; align-items: center;
      gap: 0.8rem; background: var(--hud-bg);
      border: 1px solid var(--hud-border);
      border-radius: 8px; padding: 0.7rem 0.9rem;
    }
    .tx-amount.positive { color: #4caf50; font-weight: 700; }
    .tx-amount.negative { color: #f44336; font-weight: 700; }

    /* â”€â”€â”€ Profile â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .profile-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
    .profile-card {
      background: var(--hud-bg); border: 1px solid var(--hud-border);
      border-radius: 8px; padding: 1.5rem;
      display: flex; flex-direction: column; gap: 1.2rem;
    }
    .profile-identity { display: flex; align-items: center; gap: 1.2rem; }
    .profile-view-avatar {
      width: 72px; height: 72px; border-radius: 50%;
      border: 2px solid var(--red-bright); background: #1a1a1a;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; overflow: hidden;
    }
    .profile-view-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
    .profile-view-name  { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
    .profile-view-rank  { font-size: 0.78rem; font-weight: 600; margin-top: 2px; }
    .profile-view-since { font-size: 0.7rem; color: #555; margin-top: 4px; }
    .profile-stats-row {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 0.8rem; background: rgba(0,0,0,0.3);
      border-radius: 6px; padding: 1rem;
    }
    .profile-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
    .profile-stat-val { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; }
    .profile-stat-label { font-size: 0.6rem; color: #555; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .profile-edit-section { background: rgba(0,0,0,0.3); border-radius: 6px; padding: 1rem; }
    .profile-field { margin-bottom: 0.8rem; }
    .profile-field:last-child { margin-bottom: 0; }
    .profile-field label { display: block; font-size: 0.7rem; color: #555; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 5px; text-transform: uppercase; }
    .profile-input {
      width: 100%; padding: 0.6rem 0.8rem; background: #080808;
      border: 1px solid #222; color: #fff; border-radius: 4px;
      font-size: 0.85rem; font-family: 'Montserrat', sans-serif;
      outline: none; transition: border-color 0.2s;
    }
    .profile-input:focus { border-color: var(--gold-primary); }
    .profile-input:disabled { color: #333; cursor: not-allowed; }
    .profile-items-section {
      background: var(--hud-bg); border: 1px solid var(--hud-border);
      border-radius: 8px; padding: 1.5rem;
    }
    /* .profile-grid e .lb-layout: overrides tablet/desktop consolidados no fim do arquivo */

    /* â”€â”€â”€ Betou (iframe do jogo, usado no /live) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .betou-container { display: flex; flex-direction: column; background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; overflow: hidden; }
    .betou-header { display: flex; align-items: center; gap: 10px; padding: 0.7rem 1rem; background: #080808; border-bottom: 1px solid #1a1a1a; flex-shrink: 0; flex-wrap: wrap; }
    .betou-iframe-mock { flex: none; position: relative; height: 56vw; min-height: 800px; }
    .betou-iframe-mock iframe { width: 100%; height: 100%; border: none; display: block; }
    .premium-dropdown { background: #0d0d0d; border: 1px solid var(--gold-primary); color: var(--gold-light); padding: 4px 8px; border-radius: 4px; font-size: 0.78rem; font-family: 'Montserrat', sans-serif; cursor: pointer; }
    .status-dot { width: 8px; height: 8px; background: var(--gold-primary); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0; }
    #betou-auth-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.92); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; padding: 2rem; text-align: center; z-index: 10; }
    .auth-skull { font-size: 3rem; color: var(--gold-primary); }
    .btn-betou-connect { background: linear-gradient(135deg, var(--red-primary), #8b0000); border: none; color: #fff; font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 700; padding: 0.8rem 1.5rem; border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
    .btn-betou-manual { background: none; border: 1px solid #333; color: #555; font-size: 0.75rem; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; transition: 0.2s; }
    .btn-betou-manual:hover { color: var(--gold-primary); border-color: var(--gold-primary); }

    /* â”€â”€â”€ History View â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    /* Aviator History View */
    #view-history { padding: 0; height: 100%; overflow-y: auto; }
    .av-view-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.2rem; }
    .av-header-btns { display: flex; gap: 8px; }
    .av-clear-btn { background: none; border: 1px solid #1a1a1a; color: #444; border-radius: 6px; padding: 0.4rem 0.8rem; font-size: 0.72rem; cursor: pointer; display: flex; align-items: center; gap: 5px; }
    .av-clear-btn:hover { border-color: var(--red-bright); color: var(--red-bright); }
    /* Game tabs */
    .av-game-tabs-wrap { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; margin-bottom: 10px; }
    .av-game-tab { background: transparent; border: 1px solid #1a1a1a; color: #444; border-radius: 6px; padding: 0.6rem 0.4rem; font-family: 'Montserrat',sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-height: 38px; }
    .av-game-tab.active { background: linear-gradient(135deg,rgba(212,175,55,0.12),rgba(212,175,55,0.06)); border-color: rgba(212,175,55,0.4); color: var(--gold-primary); }
    .av-game-tab:hover:not(.active) { border-color: #2a2a2a; color: #666; }
    /* Time tabs */
    .av-tabs-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 1.2rem; }
    .av-tab { background: transparent; border: 1px solid #1e1e1e; color: #555; border-radius: 6px; padding: 0.55rem; font-family: 'Montserrat',sans-serif; font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: all 0.2s; min-height: 38px; }
    .av-tab.active { background: linear-gradient(135deg,#003d52,#005f7a); border-color: #00a8cc; color: #00e5ff; }
    .av-tab:hover:not(.active) { border-color: #333; color: #888; }
    /* Panel grid */
    #av-panels-wrap { position: relative; min-height: 80px; }
    .av-window-loading {
      position: absolute; inset: 0; z-index: 5; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: rgba(10,10,20,0.82);
      color: var(--gold-light); font-family: 'Montserrat',sans-serif;
      font-size: 0.82rem; font-weight: 600;
    }
    .av-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; align-items: start; }
    /* Mapa de Calor + Historico Recente: cards do mesmo tamanho (simetrico) mesmo
       quando o conteudo natural de um e bem menor que o do outro. */
    .av-grid-balance { align-items: stretch; }
    .av-panel-center { display: flex; flex-direction: column; }
    .av-panel-center .av-heatmap-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
    /* min-width:0 evita o bug clássico de grid onde um <canvas> filho (tamanho
       intrínseco padrão 300x150) força a coluna a ficar maior/menor do que o
       CSS pede, deixando o canvas com largura errada (às vezes 0) no 1º layout. */
    .av-panel { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 18px; min-width: 0; }
    .av-panel-title { font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700; color: var(--gold-primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .av-panel-title i { color: var(--gold-primary); }
    /* Stats panel */
    .av-stat-list { display: flex; flex-direction: column; gap: 12px; }
    .av-stat-item { display: flex; align-items: center; gap: 10px; }
    .av-stat-label { font-size: 0.68rem; color: #ccc; min-width: 170px; }
    .av-stat-bar-wrap { flex: 1; height: 6px; background: #111; border-radius: 3px; overflow: hidden; }
    .av-stat-bar { height: 100%; border-radius: 3px; transition: width 0.6s; }
    .av-stat-val { font-family: 'Cinzel',serif; font-size: 0.95rem; font-weight: 900; min-width: 36px; text-align: right; }
    /* Chart */
    .av-chart-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
    .av-chart-tabs { display: flex; gap: 5px; }
    .av-chart-tab { background: #111; border: 1px solid #1a1a1a; color: #ccc; border-radius: 4px; padding: 3px 9px; font-size: 0.68rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
    .av-chart-tab.active { background: #1a1a2e; border-color: #3a3a7a; color: #8888ff; }
    .av-chart-canvas { display: block; width: 100%; height: 160px; }
    .av-chart-legend { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
    .av-chart-legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.62rem; color: #ccc; }
    .av-chart-legend-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
    /* Observações (dados reais observados no periodo) */
    .av-obs-list { display: flex; flex-direction: column; gap: 6px; }
    .av-obs-item { display: flex; align-items: center; gap: 10px; background: #070707; border: 1px solid #0f0f0f; border-left-width: 3px; border-left-style: solid; border-radius: 8px; padding: 9px 12px; transition: transform 0.15s, background 0.15s; }
    .av-obs-item:hover { background: #0d0d0d; transform: translateX(2px); }
    .av-obs-icon { font-size: 1.1rem; flex-shrink: 0; }
    .av-obs-label { flex: 1; font-size: 0.74rem; color: #aaa; min-width: 0; }
    .av-obs-val { font-size: 0.95rem; font-weight: 800; font-family: 'Cinzel',serif; white-space: nowrap; flex-shrink: 0; text-align: right; }
    .av-obs-val small { font-size: 0.6rem; font-weight: 600; color: #666; font-family: inherit; margin-left: 3px; }
    /* Scrollbar customizada (Webkit) */
    .av-scroll::-webkit-scrollbar { width: 6px; height: 6px; }
    .av-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 4px; }
    .av-scroll::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius: 4px; }
    .av-scroll::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
    /* Scrollbar customizada (Firefox) */
    .av-scroll { scrollbar-width: thin; scrollbar-color: var(--gold-primary) rgba(255,255,255,0.03); }
    /* Mapa de Calor */
    .av-heatmap { width: 100%; border-collapse: collapse; font-size: 0.68rem; }
    .av-heatmap th { padding: 5px 8px; color: #ccc; font-weight: 600; text-align: center; font-size: 0.62rem; border-bottom: 1px solid #111; }
    .av-heatmap th:first-child { text-align: left; }
    .av-heatmap td { padding: 4px 6px; text-align: center; }
    .av-heatmap td:first-child { text-align: left; color: #ccc; font-size: 0.65rem; white-space: nowrap; }
    .av-heatmap-cell { display: inline-block; padding: 4px 8px; border-radius: 4px; font-size: 0.67rem; font-weight: 700; }
    .av-heat-frio    { background: rgba(50,80,120,0.3);  color: #6699bb; }
    .av-heat-normal  { background: rgba(40,100,50,0.35); color: #66bb77; }
    .av-heat-quente  { background: rgba(160,110,0,0.3);  color: #ccaa33; }
    .av-heat-intenso { background: rgba(180,70,0,0.3);   color: #ff7700; }
    .av-heat-maximo  { background: rgba(180,15,50,0.25); color: #ff3355; }
    .av-heatmap-legend { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
    .av-heatmap-legend span { font-size: 0.6rem; color: #ccc; display: flex; align-items: center; gap: 4px; }
    .av-heatmap-legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
    .av-pstat-extra { grid-column: 1/-1; }
    /* Histórico Recente */
    .av-recent-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 5px; max-height: 480px; overflow-y: auto; padding-right: 4px; }
    .av-round-card { background: #080808; border: 1px solid #111; border-radius: 6px; padding: 6px 3px; text-align: center; border-top-width: 2px; }
    .av-round-card.r-azul { border-top-color: #4dabf7; }
    .av-round-card.r-roxo { border-top-color: #a200ff; }
    .av-round-card.r-rosa { border-top-color: #aa1144; border-color: rgba(200,20,70,0.25); }
    .av-round-casa { font-size: 0.52rem; color: #fff; margin-bottom: 1px; }
    .av-round-mult { font-size: 0.75rem; font-weight: 800; line-height: 1.2; }
    .av-round-mult.r-azul { color: #4dabf7; }
    .av-round-mult.r-roxo { color: #c936ff; }
    .av-round-mult.r-rosa { color: #ff2d78; }
    .av-round-time { font-size: 0.52rem; color: #fff; margin-top: 1px; }
    /* Análise por Casa */
    .av-casa-list { display: flex; flex-direction: column; gap: 8px; max-height: 380px; overflow-y: auto; }
    .av-casa-card { background: #070707; border: 1px solid #111; border-radius: 8px; padding: 10px 12px; }
    .av-casa-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
    .av-casa-title { font-family: 'Cinzel',serif; font-size: 0.8rem; font-weight: 700; color: #aaa; display: flex; align-items: center; gap: 6px; }
    .av-casa-title i { color: #336688; }
    .av-casa-rosas { font-size: 0.62rem; color: #ff2d78; background: rgba(255,45,120,0.07); padding: 2px 8px; border-radius: 10px; border: 1px solid rgba(255,45,120,0.12); }
    .av-casa-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
    .av-casa-stat { text-align: center; }
    .av-casa-stat-label { font-size: 0.53rem; color: #ccc; text-transform: uppercase; }
    .av-casa-stat-val { font-size: 0.8rem; font-weight: 700; }
    .av-casa-stat-val.min { color: #44bb66; }
    .av-casa-stat-val.med { color: var(--gold-primary); }
    .av-casa-stat-val.max { color: #ff2d78; }
    /* Empty */
    .av-empty { text-align: center; padding: 4rem 2rem; color: #333; }
    .av-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.4; }
    .av-empty p { font-size: 0.82rem; color: #444; line-height: 1.6; }
    /* Historico Tatico: base acima ja e o layout mobile; a partir de 768px
       (tier tablet) ampliamos pro layout desktop (mesmo padrao aplicado no sistema-brito). */
    @media (min-width: 768px) {
      .av-game-tabs-wrap { grid-template-columns: repeat(4,1fr); }
      .av-tabs-wrap { grid-template-columns: repeat(6,1fr); }
      .av-grid { grid-template-columns: 1fr 1fr; }
      .av-recent-grid { grid-template-columns: repeat(7,1fr); }
    }

    /* â”€â”€â”€ Treasury View â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-treasury { padding: 0; height: 100%; overflow-y: auto; }
    .trs-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; }
    .trs-reset-btn { background: none; border: 1px solid #2a2a2a; color: #555; border-radius: 4px; padding: 0.4rem 0.8rem; font-size: 0.75rem; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 5px; }
    .trs-reset-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
    .trs-setup { display: flex; align-items: center; justify-content: center; padding: 4rem 0; }
    .trs-setup-card { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 12px; padding: 2.5rem 2rem; width: 380px; max-width: 100%; text-align: center; }
    .trs-field { text-align: left; margin-bottom: 1rem; }
    .trs-field label { display: block; font-size: 0.7rem; color: #555; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 5px; text-transform: uppercase; }
    .trs-input { width: 100%; padding: 0.6rem 0.8rem; background: #080808; border: 1px solid #222; color: #fff; border-radius: 4px; font-size: 0.85rem; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
    .trs-input:focus { border-color: var(--gold-primary); }
    .trs-primary-btn { width: 100%; padding: 0.75rem; background: linear-gradient(135deg, var(--gold-primary), #a07020); border: none; color: #000; font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 800; border-radius: 4px; cursor: pointer; transition: opacity 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; letter-spacing: 0.5px; min-height: 44px; }
    .trs-primary-btn:hover:not(:disabled) { opacity: 0.9; }
    .trs-primary-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .trs-small-btn { padding: 0.6rem 0.8rem; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold-primary); border-radius: 4px; font-size: 0.8rem; font-weight: 700; font-family: 'Cinzel', serif; cursor: pointer; transition: 0.2s; white-space: nowrap; flex-shrink: 0; min-height: 44px; }
    .trs-small-btn:hover:not(:disabled) { background: var(--gold-primary); color: #000; }
    .trs-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
    .trs-card { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.2rem; display: flex; flex-direction: column; gap: 4px; }
    .trs-card.primary { border-color: rgba(212,175,55,0.3); }
    .trs-card-label { font-size: 0.62rem; color: #555; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
    .trs-card-val { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 900; line-height: 1.2; }
    .trs-card-sub { font-size: 0.7rem; color: #555; margin-top: 2px; }
    .val-pos { color: #00c850 !important; }
    .val-neg { color: var(--red-bright) !important; }
    .trs-goal-bar { width: 100%; height: 3px; background: #1a1a1a; border-radius: 2px; margin-top: 6px; overflow: hidden; }
    .trs-goal-fill { height: 100%; background: linear-gradient(90deg, #00c850, #00ff66); border-radius: 2px; transition: width 0.5s; }
    .trs-body { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
    .trs-add-panel, .trs-ops-panel { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.2rem; }
    .trs-result-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
    .trs-res-btn { padding: 0.6rem; border: 1px solid #222; border-radius: 4px; font-size: 0.78rem; font-weight: 700; font-family: 'Cinzel', serif; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 5px; background: #0d0d0d; color: #555; }
    .trs-res-btn.win-btn.active,.trs-res-btn.win-btn:hover { background: rgba(0,200,80,0.15); border-color: #00c850; color: #00c850; }
    .trs-res-btn.loss-btn.active,.trs-res-btn.loss-btn:hover { background: rgba(220,20,60,0.15); border-color: var(--red-bright); color: var(--red-bright); }
    .ops-list { display: flex; flex-direction: column; gap: 6px; max-height: 520px; overflow-y: auto; }
    .op-row { display: flex; align-items: center; gap: 0.8rem; background: #080808; border: 1px solid #111; border-radius: 6px; padding: 0.6rem 0.8rem; border-left-width: 3px; }
    .op-row.win  { border-left-color: #00c850; }
    .op-row.loss { border-left-color: var(--red-bright); }
    .op-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
    .op-row.win  .op-icon { background: rgba(0,200,80,0.1);  color: #00c850; }
    .op-row.loss .op-icon { background: rgba(220,20,60,0.1); color: var(--red-bright); }
    .op-body { flex: 1; min-width: 0; }
    .op-desc { font-size: 0.82rem; font-weight: 600; color: #ddd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .op-meta { font-size: 0.68rem; color: #555; margin-top: 2px; }
    .op-pl { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700; flex-shrink: 0; }
    .op-pl.win  { color: #00c850; }
    .op-pl.loss { color: var(--red-bright); }
    /* .trs-cards e .trs-body: overrides tablet/desktop consolidados no fim do arquivo */

    /* â”€â”€â”€ Afiliation View â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    /* â”€â”€â”€ Calc Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #calc-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; display: flex; align-items: center; justify-content: center; }
    .calc-modal { background: #0d0d0d; border: 1px solid var(--gold-primary); border-radius: 12px; padding: 2rem; width: 400px; max-width: 94vw; }
    .calc-modal h3 { font-family: 'Cinzel', serif; color: var(--gold-primary); margin: 0 0 1.5rem; text-align: center; font-size: 1rem; }
    .calc-section { margin-bottom: 1rem; }
    .calc-section label { display: block; font-size: 0.7rem; color: #555; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
    .calc-input { width: 100%; padding: 0.6rem 0.8rem; background: #080808; border: 1px solid #222; color: #fff; border-radius: 4px; font-size: 1.1rem; font-family: monospace; font-weight: 700; text-align: center; outline: none; box-sizing: border-box; }
    .calc-input:focus { border-color: var(--gold-primary); }
    .calc-results { display: flex; flex-direction: column; gap: 6px; margin-top: 1rem; }
    .calc-row { display: flex; justify-content: space-between; background: #080808; border: 1px solid #1a1a1a; border-radius: 6px; padding: 0.7rem 1rem; font-size: 0.82rem; }

    /* â”€â”€â”€ Profile Items â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .profile-no-items { text-align: center; padding: 3rem 1rem; color: #555; font-size: 0.85rem; line-height: 1.7; }
    .items-group { margin-bottom: 1.5rem; }
    .items-group-title { font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 6px; }
    .items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    /* .product-grid / .product-card: sem regra base propria hoje (so existiam dentro do
       @media max-width:992px) — nao ha markup correspondente identificado neste arquivo;
       preservadas aqui como estavam efetivamente (aplicam sempre agora, sem variacao
       por tier, ja que nao tinham valor "desktop" alternativo pra restaurar). */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card { padding: 1rem; }
    .item-card { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 8px; padding: 1rem 0.8rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; transition: border-color 0.2s; position: relative; }
    .item-card:hover { border-color: #333; }
    .item-card.active { border-color: var(--gold-primary); background: rgba(212,175,55,0.04); }
    .item-card-icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .item-card-name { font-size: 0.72rem; color: #ccc; font-weight: 600; text-align: center; line-height: 1.3; }
    .item-active-badge { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; background: rgba(212,175,55,0.12); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.3); letter-spacing: 0.5px; }
    .item-apply-btn { width: 100%; padding: 0.4rem; background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.25); color: var(--gold-primary); font-family: 'Cinzel', serif; font-size: 0.68rem; font-weight: 700; border-radius: 4px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.5px; }
    .item-apply-btn:hover:not(:disabled) { background: var(--gold-primary); color: #000; }
    .item-apply-btn.remove { background: rgba(180,20,20,0.08); border-color: rgba(220,20,60,0.3); color: var(--red-bright); }
    .profile-save-btn { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.3); color: var(--gold-primary); border-radius: 4px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
    .profile-save-btn:hover:not(:disabled) { background: var(--gold-primary); color: #000; }
    .profile-save-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .profile-view-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; }

    /* â”€â”€â”€ Store (updated) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-store { padding: 1.5rem; }
    .store-card { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s, transform 0.2s; position: relative; }
    .store-card:hover { border-color: var(--gold-primary); transform: translateY(-2px); }
    .store-card.owned { border-color: #1a3a1a; }
    .store-card-img { width: 100%; height: 130px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #080808; }
    .store-card-icon { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: radial-gradient(circle at center, #1a1a00 0%, #080808 100%); }
    .store-cat-badge { position: absolute; top: 8px; right: 8px; font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 3px; color: #fff; font-family: 'Cinzel', serif; text-transform: uppercase; letter-spacing: 0.5px; }
    .store-card-body { padding: 0.8rem; flex: 1; display: flex; flex-direction: column; }
    .store-card-name { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 700; color: #fff; margin: 0 0 0.4rem; }
    .store-card-desc { font-size: 0.72rem; color: #555; line-height: 1.5; margin: 0; flex: 1; }
    .store-price { display: flex; align-items: center; gap: 5px; font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 800; color: var(--gold-primary); }
    .store-stock-warn { font-size: 0.68rem; color: var(--red-bright); font-weight: 600; }
    .store-btn { width: 100%; margin-top: 0.8rem; padding: 0.55rem; background: linear-gradient(135deg, var(--red-primary), #8b0000); border: none; color: #fff; font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; border-radius: 4px; cursor: pointer; transition: opacity 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
    .store-btn:hover:not(:disabled) { opacity: 0.85; }
    .store-btn:disabled, .store-btn.disabled { background: #1a1a1a; color: #333; cursor: not-allowed; }
    .store-btn.owned { background: #0a2a0a; color: #00aa44; border: 1px solid #0a2a0a; }
    .store-my-items { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 8px; padding: 1.2rem; margin-top: 1rem; }
    .my-items-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .my-item-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem; background: #080808; border-radius: 4px; border: 1px solid #111; }
    .my-item-icon { width: 32px; height: 32px; background: rgba(212,175,55,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .store-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999; display: flex; align-items: center; justify-content: center; }
    .store-modal { background: #0d0d0d; border: 1px solid rgba(212,175,55,0.4); border-radius: 10px; width: 340px; max-width: 92vw; overflow: hidden; }
    .smodal-title { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 800; color: var(--gold-primary); letter-spacing: 1.5px; padding: 16px 20px 14px; border-bottom: 1px solid #1a1a1a; display: flex; align-items: center; gap: 8px; }
    .smodal-body { padding: 18px 20px 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
    .smodal-product { font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.3; }
    .smodal-price { font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 800; color: #FFD700; display: flex; align-items: center; gap: 5px; white-space: nowrap; flex-shrink: 0; }
    .smodal-price i { font-size: 0.75rem; }
    .smodal-balance { display: flex; align-items: center; justify-content: space-between; padding: 6px 20px; font-size: 0.72rem; color: #555; }
    .smodal-balance span:last-child { color: #444; font-weight: 600; }
    .smodal-balance.after { padding-bottom: 14px; border-bottom: 1px solid #111; }
    .smodal-balance.after span:last-child { color: var(--gold-primary); font-weight: 700; }
    .smodal-actions { display: flex; gap: 0; }
    .smodal-btn { flex: 1; padding: 14px 10px; font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; cursor: pointer; border: none; transition: all 0.2s; }
    .smodal-btn.cancel { background: #111; color: #555; border-right: 1px solid #1a1a1a; }
    .smodal-btn.cancel:hover { background: #151515; color: #888; }
    .smodal-btn.confirm { background: linear-gradient(135deg, var(--red-primary), #8b0000); color: #fff; }
    .smodal-btn.confirm:hover:not(:disabled) { filter: brightness(1.15); }
    .smodal-btn.confirm:disabled { opacity: 0.5; cursor: default; }

    /* â”€â”€â”€ Avatar Border Variants (matches App.vue) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .profile-view-avatar.border-dourada   { border-color: #FFD700; box-shadow: 0 0 14px rgba(255,215,0,0.5); }
    .profile-view-avatar.border-prata     { border-color: #C0C0C0; box-shadow: 0 0 10px rgba(192,192,192,0.4); }
    .profile-view-avatar.border-rubim     { border-color: var(--red-bright); box-shadow: 0 0 14px var(--red-glow); }
    .profile-view-avatar.border-obsidiana { border-color: #9898b0; box-shadow: 0 0 14px rgba(152,152,176,0.6); }
    .profile-view-avatar.border-gelo      { border-color: #00d4ff; box-shadow: 0 0 16px rgba(0,212,255,0.6); }
    .profile-view-avatar.border-azul      { border-color: #0088ff; box-shadow: 0 0 12px rgba(0,136,255,0.4); }
    .profile-view-avatar.border-verde     { border-color: #00cc44; box-shadow: 0 0 12px rgba(0,200,80,0.4); }
    .profile-view-avatar.border-chamas    { animation: pva-chamas   2.5s ease-in-out infinite; }
    .profile-view-avatar.border-galaxia   { animation: pva-galaxia  3s   ease-in-out infinite; }
    .profile-view-avatar.border-eletrica  { animation: pva-eletrica 0.7s ease-in-out infinite; }
    .profile-view-avatar.border-aurora    { animation: pva-aurora   4s   ease-in-out infinite; }
    .profile-view-avatar.border-sombria   { animation: pva-sombria  3s   ease-in-out infinite; }
    .profile-view-avatar.border-neon      { animation: pva-neon     1.4s ease-in-out infinite; }
    .profile-view-avatar.border-sangue    { animation: pva-sangue   2s   ease-in-out infinite; }
    .profile-view-avatar.border-plasma    { animation: pva-plasma   2.5s ease-in-out infinite; }
    .profile-view-avatar.border-abismo    { animation: pva-abismo   2.5s ease-in-out infinite; }

    /* Mesmas bordas aplicadas ao avatar do HEADER (topo direito) */
    .profile-avatar.border-dourada   { border-color: #FFD700; box-shadow: 0 0 10px rgba(255,215,0,0.55); }
    .profile-avatar.border-prata     { border-color: #C0C0C0; box-shadow: 0 0 8px rgba(192,192,192,0.45); }
    .profile-avatar.border-rubim     { border-color: var(--red-bright); box-shadow: 0 0 10px var(--red-glow); }
    .profile-avatar.border-obsidiana { border-color: #9898b0; box-shadow: 0 0 10px rgba(152,152,176,0.6); }
    .profile-avatar.border-gelo      { border-color: #00d4ff; box-shadow: 0 0 11px rgba(0,212,255,0.6); }
    .profile-avatar.border-azul      { border-color: #0088ff; box-shadow: 0 0 9px rgba(0,136,255,0.45); }
    .profile-avatar.border-verde     { border-color: #00cc44; box-shadow: 0 0 9px rgba(0,200,80,0.45); }
    .profile-avatar.border-chamas    { animation: pva-chamas   2.5s ease-in-out infinite; }
    .profile-avatar.border-galaxia   { animation: pva-galaxia  3s   ease-in-out infinite; }
    .profile-avatar.border-eletrica  { animation: pva-eletrica 0.7s ease-in-out infinite; }
    .profile-avatar.border-aurora    { animation: pva-aurora   4s   ease-in-out infinite; }
    .profile-avatar.border-sombria   { animation: pva-sombria  3s   ease-in-out infinite; }
    .profile-avatar.border-neon      { animation: pva-neon     1.4s ease-in-out infinite; }
    .profile-avatar.border-sangue    { animation: pva-sangue   2s   ease-in-out infinite; }
    .profile-avatar.border-plasma    { animation: pva-plasma   2.5s ease-in-out infinite; }
    .profile-avatar.border-abismo    { animation: pva-abismo   2.5s ease-in-out infinite; }
    @keyframes pva-chamas {
      0%,100%{border-color:#ff4500;box-shadow:0 0 12px #ff4500;}
      33%{border-color:#FFD700;box-shadow:0 0 22px #FFD700;}
      66%{border-color:#ff7700;box-shadow:0 0 16px #ff7700;}
    }
    @keyframes pva-galaxia {
      0%,100%{border-color:#7b2fff;box-shadow:0 0 14px #7b2fff;}
      33%{border-color:#0088ff;box-shadow:0 0 20px #0088ff;}
      66%{border-color:#ff00cc;box-shadow:0 0 18px #ff00cc;}
    }
    @keyframes pva-eletrica {
      0%,100%{border-color:#00eeff;box-shadow:0 0 12px #00eeff,0 0 24px rgba(0,238,255,0.4);}
      50%{border-color:#ffffff;box-shadow:0 0 28px #fff,0 0 48px rgba(0,200,255,0.5);}
    }
    @keyframes pva-aurora {
      0%,100%{border-color:#00ff88;box-shadow:0 0 14px #00ff88;}
      33%{border-color:#00ddff;box-shadow:0 0 20px #00ddff;}
      66%{border-color:#aa00ff;box-shadow:0 0 18px #aa00ff;}
    }
    @keyframes pva-sombria {
      0%,100%{border-color:#770000;box-shadow:0 0 8px rgba(120,0,0,0.65);}
      50%{border-color:#cc0000;box-shadow:0 0 26px #880000,0 0 42px rgba(180,0,0,0.45);}
    }
    @keyframes pva-neon {
      0%,100%{border-color:#39ff14;box-shadow:0 0 12px #39ff14,0 0 22px rgba(57,255,20,0.4);}
      50%{border-color:#00ff44;box-shadow:0 0 20px #00ff44,0 0 36px rgba(0,255,68,0.5);}
    }
    @keyframes pva-sangue {
      0%,100%{border-color:#8b0000;box-shadow:0 0 10px rgba(139,0,0,0.75);}
      50%{border-color:#ff1111;box-shadow:0 0 24px #cc0000,0 0 40px rgba(220,0,0,0.4);}
    }
    @keyframes pva-plasma {
      0%,100%{border-color:#ff00aa;box-shadow:0 0 14px #ff00aa;}
      33%{border-color:#aa00ff;box-shadow:0 0 20px #aa00ff;}
      66%{border-color:#00bbff;box-shadow:0 0 16px #00bbff;}
    }
    @keyframes pva-abismo {
      0%,100%{border-color:#0044aa;box-shadow:0 0 10px rgba(0,68,170,0.75);}
      50%{border-color:#00aaff;box-shadow:0 0 22px #0088cc,0 0 38px rgba(0,150,220,0.4);}
    }

    /* â”€â”€â”€ ch-icon-done alias â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .ch-icon-done { background: rgba(76,175,80,0.1); color: #4caf50; }

    /* â”€â”€â”€ txlog styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .txlog-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; }
    .txlog-tabs { display: flex; gap: 6px; margin-bottom: 1.5rem; background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 6px; padding: 4px; }
    .txlog-tab { flex: 1; padding: 0.45rem 0.8rem; border-radius: 4px; font-size: 0.78rem; font-weight: 700; border: none; background: none; color: #555; cursor: pointer; font-family: 'Cinzel', serif; letter-spacing: 0.5px; transition: all 0.2s; }
    .txlog-tab:hover { color: #888; }
    .txlog-tab.active { background: rgba(212,175,55,0.1); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.25); }
    .txlog-list { display: flex; flex-direction: column; gap: 6px; }
    .day-sep { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(212,175,55,0.4); padding: 8px 4px 4px; }
    .tx-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
    .tx-plus  { background: rgba(76,175,80,0.1); color: #4caf50; }
    .tx-minus { background: rgba(220,20,60,0.1); color: var(--red-bright); }
    .tx-body  { flex: 1; min-width: 0; }
    .tx-reason { font-size: 0.85rem; font-weight: 600; color: #ddd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .tx-date   { font-size: 0.68rem; color: #555; margin-top: 2px; }
    .tx-amount { font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700; display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
    .amount-pos { color: #4caf50; }
    .amount-neg { color: var(--red-bright); }
    .tx-type-label { font-size: 0.6rem; font-weight: 400; font-family: 'Montserrat', sans-serif; color: #555; margin-top: 1px; }

    /* â”€â”€â”€ Transactions view â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-transactions { padding: 1.5rem; }

    /* â”€â”€â”€ Orders view â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-orders { padding: 1.5rem; }
    .orders-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; }
    .orders-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .order-item { display: flex; align-items: center; gap: 0.8rem; background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 0.8rem 1rem; transition: border-color 0.2s; }
    .order-item:hover { border-color: #2a2a2a; }
    .order-icon { width: 40px; height: 40px; background: rgba(212,175,55,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--gold-primary); flex-shrink: 0; }
    .order-info { flex: 1; min-width: 0; }
    .order-product { font-size: 0.88rem; font-weight: 600; color: #ddd; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .order-date { font-size: 0.68rem; color: #555; }
    .order-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
    .order-status-badge { font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; font-family: 'Cinzel', serif; letter-spacing: 0.5px; }
    .status-pending   { background: rgba(255,165,0,0.1);  color: #ffa500; border: 1px solid rgba(255,165,0,0.2); }
    .status-completed { background: rgba(76,175,80,0.1);  color: #4caf50; border: 1px solid rgba(76,175,80,0.2); }
    .status-failed    { background: rgba(220,20,60,0.1);  color: var(--red-bright); border: 1px solid rgba(220,20,60,0.2); }
    .order-price { font-family: 'Cinzel', serif; font-size: 0.78rem; color: var(--gold-primary); font-weight: 700; display: flex; align-items: center; gap: 4px; }
    .orders-pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 1.5rem 0 0; }
    .page-btn { width: 36px; height: 36px; background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 6px; color: #ddd; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s; }
    .page-btn:disabled { opacity: 0.3; cursor: default; }
    .page-btn:not(:disabled):hover { border-color: var(--gold-primary); }
    .page-info { font-size: 0.82rem; color: #555; }

    /* â”€â”€â”€ Notifications â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-notifications { padding: 1.5rem; }
    .notif-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; gap: 1rem; flex-wrap: wrap; }
    .notif-mark-all-btn { display: flex; align-items: center; gap: 6px; padding: 0.45rem 0.9rem; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 4px; color: var(--gold-primary); font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
    .notif-mark-all-btn:hover:not(:disabled) { background: rgba(212,175,55,0.12); }
    .notif-mark-all-btn:disabled { opacity: 0.45; cursor: default; }
    .notif-groups { display: flex; flex-direction: column; gap: 1.5rem; }
    .notif-day-sep { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(212,175,55,0.45); margin-bottom: 0.6rem; padding-left: 2px; }
    .notif-list { display: flex; flex-direction: column; gap: 6px; }
    .notif-item { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.8rem 1rem; background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; cursor: pointer; position: relative; transition: border-color 0.2s, background 0.2s; margin-bottom: 0; }
    .notif-item.unread { background: rgba(212,175,55,0.03); border-color: rgba(212,175,55,0.1); }
    .notif-item:hover { border-color: #2a2a2a; }
    .notif-icon-wrap { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
    .notif-icon-wrap.info        { background: rgba(59,130,246,0.1);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
    .notif-icon-wrap.rank_up     { background: rgba(212,175,55,0.1);  color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.2); }
    .notif-icon-wrap.live        { background: rgba(220,20,60,0.1);   color: var(--red-bright); border: 1px solid rgba(220,20,60,0.2); }
    .notif-icon-wrap.achievement { background: rgba(212,175,55,0.1);  color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.2); }
    .notif-icon-wrap.broadcast   { background: rgba(168,85,247,0.1);  color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
    .notif-body { flex: 1; min-width: 0; }
    .notif-title { font-size: 0.85rem; font-weight: 700; color: #ddd; margin-bottom: 2px; line-height: 1.3; }
    .notif-text  { font-size: 0.75rem; color: #555; line-height: 1.4; margin-bottom: 4px; }
    .notif-time  { font-size: 0.65rem; color: #444; font-weight: 500; }
    .unread-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--red-bright); flex-shrink: 0; margin-top: 4px; box-shadow: 0 0 6px rgba(220,20,60,0.5); }

    /* â”€â”€â”€ Background â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    body {
      background: url('https://i.postimg.cc/pL818fDb/Background-escuro.png') center/cover no-repeat fixed;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: rgba(5,5,5,0.9);
      z-index: -1;
    }

    /* â”€â”€â”€ Support view styles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    #view-support { padding: 1.5rem; }
    .support-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #1a1a1a; }
    .support-body { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
    .sv-card { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.2rem; display: flex; flex-direction: column; gap: 1rem; }
    .sv-card-title { font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
    .sv-input, .sv-textarea { width: 100%; padding: 0.6rem 0.8rem; background: #080808; border: 1px solid #222; border-radius: 4px; color: #ddd; font-size: 0.85rem; font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
    .sv-input:focus, .sv-textarea:focus { border-color: var(--gold-primary); }
    .sv-textarea { resize: vertical; }
    .sv-send-btn { width: 100%; padding: 0.65rem; font-size: 0.78rem; }
    .sv-tickets-section { background: var(--hud-bg); border: 1px solid var(--hud-border); border-radius: 8px; padding: 1.2rem; }
    .sv-tickets { display: flex; flex-direction: column; gap: 6px; }
    .sv-ticket { background: #080808; border: 1px solid #111; border-radius: 6px; overflow: hidden; transition: border-color 0.2s; }
    .sv-ticket.expanded { border-color: rgba(212,175,55,0.2); }
    .sv-ticket-header { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0.9rem; cursor: pointer; gap: 0.6rem; transition: background 0.2s; }
    .sv-ticket-header:hover { background: rgba(255,255,255,0.02); }
    .sv-ticket-info { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
    .sv-subject { font-size: 0.82rem; font-weight: 600; color: #ccc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sv-badge { font-size: 0.58rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Cinzel', serif; }
    .sv-badge.open    { background: rgba(220,20,60,0.1);  color: var(--red-bright); border: 1px solid rgba(220,20,60,0.2); }
    .sv-badge.replied { background: rgba(212,175,55,0.1); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.2); }
    .sv-badge.closed  { background: rgba(255,255,255,0.04); color: #444; border: 1px solid #222; }
    .sv-ticket-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .sv-date { font-size: 0.65rem; color: #444; }
    .sv-chevron { font-size: 0.65rem; color: #444; transition: transform 0.25s ease; }
    .sv-chevron.rotated { transform: rotate(180deg); }
    .sv-ticket-body { padding: 0.8rem 0.9rem; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid #111; }
    .sv-msg-label { font-size: 0.65rem; font-weight: 700; color: #444; text-transform: uppercase; letter-spacing: 0.5px; }
    .sv-msg-box { background: #060606; border: 1px solid #111; border-radius: 4px; padding: 0.6rem 0.8rem; font-size: 0.78rem; color: #666; line-height: 1.5; white-space: pre-wrap; }
    .sv-reply-label { font-size: 0.65rem; font-weight: 700; color: rgba(212,175,55,0.5); text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px; margin-top: 4px; }
    .sv-reply-box { background: rgba(212,175,55,0.03); border: 1px solid rgba(212,175,55,0.12); border-radius: 4px; padding: 0.6rem 0.8rem; font-size: 0.78rem; color: #aaa; line-height: 1.5; white-space: pre-wrap; }
    .sv-replied-at { font-size: 0.65rem; color: #333; text-align: right; }
    .sv-pending { font-size: 0.75rem; color: #444; display: flex; align-items: center; gap: 6px; }
    /* .sv-filter-btn: nao tinha regra base propria (so existia dentro do
       @media max-width:992px) — sem contrapartida "desktop" pra restaurar,
       preservada como estava efetivamente (aplica sempre agora). */
    .sv-filter-btn { font-size: 0.65rem; padding: 5px 8px; }
    .sv-toast { position: fixed; bottom: 2rem; right: 2rem; background: #0d0d0d; border: 1px solid #00aa44; color: #00aa44; padding: 0.8rem 1.5rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; z-index: 99999; display: flex; align-items: center; gap: 8px; animation: fadeInUp 0.3s ease; }
    .sv-toast.error { border-color: var(--red-bright); color: var(--red-bright); }
    /* .support-body: override desktop consolidado no fim do arquivo */

    /* ─── Home redesign ─────────────────────────────────────────────────────── */
    .home-hero {
      background: linear-gradient(135deg, rgba(18,5,5,0.98) 0%, rgba(8,5,20,0.98) 100%);
      border: 1px solid rgba(212,175,55,0.15);
      border-radius: 14px;
      padding: 18px;
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
    }
    .home-hero::before {
      content: '';
      position: absolute;
      top: -50px; left: -50px;
      width: 180px; height: 180px;
      background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .home-hero-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .home-hero-avatar {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1a1a2e, #2a1a3e);
      border: 2px solid rgba(212,175,55,0.45);
      box-shadow: 0 0 18px rgba(212,175,55,0.12);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 1.5rem; font-weight: 900;
      color: var(--gold-primary);
      flex-shrink: 0;
      text-transform: uppercase;
    }
    .home-hero-name {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem; font-weight: 900;
      color: #fff; letter-spacing: 0.5px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .home-hero-badges {
      display: flex; align-items: center; gap: 6px;
      margin-top: 4px; flex-wrap: wrap;
    }
    .home-hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-top: 14px;
    }
    .home-mini-stat {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      padding: 10px 12px;
      display: flex; align-items: center; gap: 10px;
    }
    .home-mini-stat-icon { font-size: 1.15rem; flex-shrink: 0; }
    .home-mini-stat-val {
      font-family: 'Cinzel', serif;
      font-size: 0.85rem; font-weight: 800;
    }
    .home-mini-stat-lbl {
      font-size: 0.6rem; color: #555;
      text-transform: uppercase; letter-spacing: 0.5px; margin-top: 1px;
    }
    /* Quick actions */
    .home-actions {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-bottom: 14px;
    }
    .home-action {
      background: rgba(10,10,10,0.9);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
      overflow: hidden;
      transition: transform 0.15s ease, border-color 0.15s ease;
      display: flex; flex-direction: column; align-items: center;
      text-decoration: none;
    }
    .home-action:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.3); }
    .home-action:active { transform: translateY(0); }
    .home-action-icon {
      width: 100%; padding: 14px 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .ha-gold   { background: linear-gradient(150deg, rgba(212,175,55,0.14), rgba(212,175,55,0.03)); }
    .ha-yellow { background: linear-gradient(150deg, rgba(255,204,0,0.14),   rgba(255,204,0,0.03)); }
    .ha-red    { background: linear-gradient(150deg, rgba(220,20,60,0.14),   rgba(220,20,60,0.03)); }
    .ha-purple { background: linear-gradient(150deg, rgba(170,68,255,0.14),  rgba(170,68,255,0.03)); }
    .home-action-lbl {
      font-size: 0.58rem; font-weight: 700;
      color: #777; text-transform: uppercase;
      letter-spacing: 0.5px; padding: 6px 0 8px;
    }
    .home-section-title {
      font-size: 0.78rem; font-weight: 700;
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 10px;
    }
    .home-section-btn {
      background: none; border: none;
      color: var(--gold-primary); font-size: 0.68rem;
      cursor: pointer; font-weight: 600; padding: 0;
    }
    .top-row {
      display: flex; align-items: center; gap: 8px;
      padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .top-row-av {
      width: 24px; height: 24px; border-radius: 50%;
      background: linear-gradient(135deg,#1a1a2e,#2a1a3e);
      border: 1px solid rgba(212,175,55,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; color: var(--gold-primary);
      font-weight: 700; flex-shrink: 0; text-transform: uppercase;
    }
    .deposit-modal {
      position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
      z-index: 10050; padding: 1rem; background: rgba(0,0,0,0.86);
      backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    }
    .deposit-modal.show { display: flex; }
    .deposit-modal-content {
      width: min(440px, 96vw); max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
      background: #080808; border: 1px solid #2a1a00; border-radius: 8px;
      box-shadow: 0 26px 70px rgba(0,0,0,0.75), 0 0 28px rgba(212,175,55,0.08);
    }
    .deposit-modal-header {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      padding: 1.1rem 1.25rem; border-bottom: 1px solid #1f1606;
    }
    .deposit-modal-header h3 {
      margin: 0; color: var(--gold-primary); font-size: 0.96rem; letter-spacing: 0.05em;
      text-transform: uppercase; display: flex; align-items: center; gap: 8px;
    }
    .deposit-modal-close {
      width: 32px; height: 32px; border-radius: 50%; border: 1px solid #222; background: #111;
      color: #888; display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
      transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }
    .deposit-modal-close:hover { color: #fff; border-color: var(--red-primary); transform: rotate(90deg); }
    .deposit-modal-body { padding: 1.25rem; overflow-y: auto; }
    .kyc-modal-content { width: min(480px, 96vw); }
    .kyc-modal-body { padding: 0; min-height: 60vh; max-height: 78vh; display: flex; flex-direction: column; }
    .kyc-iframe { width: 100%; flex: 1; min-height: 60vh; border: 0; display: block; }
    .kyc-status-box {
      flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 2.5rem 1.5rem; color: #999; font-size: 0.85rem; gap: 0.4rem;
    }
    .deposit-suggested-amounts { margin-bottom: 1rem; }
    .deposit-suggested-label, .deposit-form-help, .deposit-pix-label {
      display: block; color: #777; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .deposit-suggested-label { margin-bottom: 0.65rem; }
    .deposit-form-help { margin-top: 0.5rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
    .deposit-amount-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .deposit-amount-card {
      min-height: 58px; position: relative; border-radius: 6px; border: 1px solid #242424;
      background: #0f0f0f; color: #f4f4f4; font-weight: 800; cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
    }
    .deposit-amount-card:hover { border-color: #444; transform: translateY(-1px); }
    .deposit-amount-card.selected { background: rgba(212,175,55,0.1); border-color: var(--gold-primary); color: var(--gold-primary); }
    .deposit-card-hot { border-color: rgba(34,197,94,0.38); }
    .deposit-card-hot small {
      position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
      padding: 2px 6px; border-radius: 999px; background: #22c55e; color: #020403; font-size: 0.52rem; font-weight: 900;
    }
    .deposit-form-input { text-align: center; font-weight: 800; font-size: 1.2rem; }
    .deposit-form-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 1.25rem; }
    .deposit-form-actions .btn { flex: 1; justify-content: center; }
    .deposit-btn-submit { gap: 8px; }
    .deposit-result { margin-top: 0.5rem; }
    .deposit-success h4 { margin: 0 0 1rem; color: #22c55e; text-align: center; font-size: 1rem; }
    .deposit-value-display, .deposit-qr-container {
      background: #0f0f0f; border: 1px solid #202020; border-radius: 8px; padding: 1rem; text-align: center; margin-bottom: 1rem;
    }
    .deposit-value-display span { display: block; color: #777; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
    .deposit-value-display strong { display: block; margin-top: 0.25rem; color: #fff; font-size: 1.75rem; }
    .deposit-qr-image { width: 200px; height: 200px; max-width: 100%; padding: 10px; border-radius: 6px; background: #fff; }
    .deposit-qr-container p { margin: 0.75rem 0 0; color: #888; font-size: 0.78rem; }
    .deposit-pix-wrapper { display: flex; flex-direction: column; gap: 8px; margin-top: 0.5rem; }
    .deposit-pix-input {
      min-width: 0; flex: 1; border: 1px solid #202020; border-radius: 6px; background: #101010; color: #aaa;
      padding: 0.8rem; font-size: 0.75rem; overflow: hidden; text-overflow: ellipsis;
    }
    .deposit-pix-copy {
      border: 0; border-radius: 6px; background: #22c55e; color: #020403; font-weight: 900;
      padding: 0 0.9rem; display: inline-flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer;
      min-height: 42px;
    }
    .deposit-pix-copy.copied { background: var(--gold-primary); }
    .deposit-txid-container { margin-top: 0.85rem; color: #666; text-align: center; font-size: 0.68rem; font-family: monospace; }
    /* .deposit-amount-cards, .deposit-form-actions/.deposit-pix-wrapper, .deposit-pix-copy:
       overrides tablet consolidados no fim do arquivo */


/* ════════════════════════════════════════════════════════════════
   MOBILE-FIRST: a partir daqui, só os DELTAS por tier.
   Todo o resto do arquivo (regras sem @media) já é o layout MOBILE.
   ════════════════════════════════════════════════════════════════ */

/* ─── TABLET (>= 768px): só o que muda a partir daqui ────────────── */
@media (min-width: 768px) {

  /* Estrategias do Expert (ranking): stat volta a ficar ao lado, sem quebra */
  .rk-card { flex-wrap: nowrap; }
  .rk-stat { border-left: 1px solid #1a1a1a; border-top: none; padding: 0 0 0 1rem; margin-top: 0; width: auto; }

  /* Modal de depósito: volta a caber 4 valores sugeridos por linha */
  .deposit-amount-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .deposit-form-actions, .deposit-pix-wrapper { flex-direction: row; }
  .deposit-pix-copy { min-height: auto; justify-content: flex-start; }

}

/* ─── DESKTOP (>= 1024px): layout completo (era a base desktop-first) ── */
@media (min-width: 1024px) {

  /* ─── Header ────────────────────────────────────────────────── */
  .dash-header {
    height: 70px;
    padding: 0 2rem;
    z-index: 100;
  }
  .hamburger-btn    { display: none; }
  .header-mobile-stats { display: none; }
  .header-stats     { display: flex; }
  .header-logo      { flex: 1; min-width: auto; }
  .header-logo img  { height: 35px; max-width: none; }
  .header-logo .beta-badge { font-size: 0.62rem; padding: 3px 7px; }
  .header-profile   { gap: 15px; min-width: auto; }
  .saldo-item       { gap: 8px; padding-right: 15px; border-right-color: #333; }
  .saldo-text       { min-width: 72px; }
  .saldo-text .stat-label { display: block; }
  .betou-balance-value { font-size: 0.92rem; margin-top: 4px; max-width: none; overflow: visible; text-overflow: clip; }
  .balance-deposit-btn { width: 34px; height: 34px; font-size: 0.9rem; }
  .deposit-mini-label { font-size: 0.62rem; }
  .profile-btn { gap: 12px; padding: 4px 6px; min-width: auto; order: 3; }
  .profile-info { min-width: auto; max-width: none; }
  .profile-name { display: block; }
  .profile-rank { font-size: 0.7rem; white-space: normal; overflow: visible; text-overflow: clip; }
  .mini-progress-bar { height: 3px; }
  .profile-avatar { display: flex; }
  .header-bell-btn { order: 2; }
  .sidebar-close-btn { display: none; }

  /* ─── Sidebar: fixa, sempre visível ──────────────────────────── */
  .player-sidebar {
    padding-top: 70px;
    transform: none;
    width: 250px;
    z-index: 99;
    transition: none;
  }
  .sidebar-user-card { display: none; }

  /* ─── Content: recua pra abrir espaço da sidebar fixa ────────── */
  .player-content {
    margin-left: 250px;
    padding: 70px 2rem 2rem 2rem;
  }

  /* ─── Radar: iframe ocupa a coluna toda (sem razão 16/9 forçada) ── */
  .betou-iframe-mock {
    flex: 1;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  /* ─── Views internas: padding próprio da view ────────────────── */
  #view-history, #view-treasury { padding: 1.5rem; }

  /* ─── Store / Itens / Simulador / Grids em 2 colunas ─────────── */
  .items-grid   { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .sim-layout { grid-template-columns: 1fr 360px; height: 100%; overflow-y: visible; }
  .sim-game-col .betou-container { min-height: auto; }
  .sim-tool-col { order: 0; }
  .profile-grid { grid-template-columns: 360px 1fr; }
  .lb-layout { grid-template-columns: 1fr 320px; }
  .trs-cards { grid-template-columns: repeat(4,1fr); }
  .trs-body { grid-template-columns: 320px 1fr; }
  .support-body { grid-template-columns: 380px 1fr; }

  /* ─── Touch targets: sem mínimo forçado (mouse) ──────────────── */
  .nav-item-dash                             { min-height: auto; }
  .btn-primary, .btn-secondary,
  .trs-primary-btn, .trs-small-btn           { min-height: auto; }
  .av-game-tab, .av-tab                      { min-height: auto; }

  /* ─── Tipografia ─────────────────────────────────────────────── */
  .stat-num           { font-size: 1.4rem; }
  .panel-box          { padding: 1.5rem; }
  .btn                { font-size: 1.1rem; padding: 1rem 2.5rem; gap: 0.8rem; }
  .home-hero-name     { font-size: 0.95rem; }
  .home-mini-stat-val { font-size: 0.88rem; }
  .home-action-lbl    { font-size: 0.6rem; }
  .profile-tabs-bar   { overflow-x: visible; }
  .ptab               { white-space: normal; }

}

/* ─── Notification read state ────────────────────────────────────────────── */
.notif-item.notif-read { opacity: 0.42; }
.notif-item.notif-read:hover { opacity: 0.65; }

/* ─── Live Popup ──────────────────────────────────────────────────────────── */
.live-popup-card {
  background: #0a0505;
  border: 1px solid var(--red-primary);
  border-radius: 12px;
  padding: 2rem;
  width: 420px;
  max-width: 92vw;
  text-align: center;
  box-shadow: 0 0 50px rgba(220,20,60,0.25);
}
.live-popup-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red-bright);
  border: 1px solid rgba(220,20,60,0.35);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 1.2rem;
}
.live-popup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  animation: blink-live 1.1s ease-in-out infinite;
}
@keyframes blink-live {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.2; }
}
.live-popup-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.7rem;
}
.live-popup-msg {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.live-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.live-popup-watch-btn {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--red-primary), #8b0000);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.2s;
}
.live-popup-watch-btn:hover { filter: brightness(1.15); }
.live-popup-dismiss-btn {
  width: 100%;
  padding: 0.6rem;
  background: none;
  border: 1px solid #222;
  border-radius: 6px;
  color: #444;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.live-popup-dismiss-btn:hover { color: #888; border-color: #333; }

/* ─── Header Bell ─────────────────────────────────────────────────────────── */
.header-bell-btn {
  position: relative;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.header-bell-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.hdr-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red-primary);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 6px rgba(220,20,60,0.5);
}

/* ─── Broadcast Popup ─────────────────────────────────────────────────────── */
.broadcast-popup-card {
  background: #0d0d0d;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 2rem;
  width: 440px;
  max-width: 92vw;
  position: relative;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
}
.broadcast-popup-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-primary);
  letter-spacing: 1px;
}
.broadcast-popup-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.broadcast-popup-body {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.65;
  white-space: pre-wrap;
  margin-bottom: 0.5rem;
}
.broadcast-popup-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: var(--gold-primary);
  border: none;
  border-radius: 6px;
  color: #000;
  font-family: 'Cinzel', serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: filter 0.2s;
}
.broadcast-popup-btn:hover { filter: brightness(1.1); }

/* ─── Profile Tabs ────────────────────────────────────────────────────────── */
.profile-tabs-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 1.5rem;
  background: var(--hud-bg);
  border: 1px solid var(--hud-border);
  border-radius: 8px;
  padding: 5px;
  overflow-x: auto;
}
.ptab {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: none;
  color: #555;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.ptab:hover { color: #888; }
.ptab.active { background: rgba(212,175,55,0.1); color: var(--gold-primary); border: 1px solid rgba(212,175,55,0.25); }
#profile-tab-body { min-height: 200px; }

/* ─── Border Previews (item cards) ───────────────────────────────────────── */
.item-border-preview {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #333;
  background: #111;
  flex-shrink: 0;
  position: relative;
}
.item-border-preview::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Static */
.prev-prata     { border-color: #c0c0c0; box-shadow: 0 0 8px rgba(192,192,192,0.35); }
.prev-dourada   { border-color: #FFD700; box-shadow: 0 0 10px rgba(255,215,0,0.45); }
.prev-rubim     { border-color: #c0143c; box-shadow: 0 0 10px rgba(192,20,60,0.5); }
.prev-obsidiana { border-color: #9898b0; box-shadow: 0 0 10px rgba(152,152,176,0.4), inset 0 0 8px rgba(100,100,140,0.2); }
.prev-gelo      { border-color: #00d4ff; box-shadow: 0 0 12px rgba(0,212,255,0.55); }

/* Animated */
@keyframes prev-chamas {
  0%,100% { border-color: #ff4500; box-shadow: 0 0 8px #ff4500, 0 0 18px rgba(255,69,0,0.4); }
  50%     { border-color: #FFD700; box-shadow: 0 0 14px #FFD700, 0 0 26px rgba(255,165,0,0.5); }
}
.prev-chamas { animation: prev-chamas 1.6s ease-in-out infinite; }

@keyframes prev-neon {
  0%,100% { border-color: #39ff14; box-shadow: 0 0 10px #39ff14, 0 0 22px rgba(57,255,20,0.4); }
  50%     { border-color: #00ff44; box-shadow: 0 0 18px #00ff44, 0 0 32px rgba(0,255,68,0.55); }
}
.prev-neon { animation: prev-neon 1.3s ease-in-out infinite; }

@keyframes prev-galaxia {
  0%,33%  { border-color: #7b2fff; box-shadow: 0 0 10px #7b2fff; }
  34%,66% { border-color: #0088ff; box-shadow: 0 0 10px #0088ff; }
  67%,100%{ border-color: #ff00cc; box-shadow: 0 0 10px #ff00cc; }
}
.prev-galaxia { animation: prev-galaxia 3s linear infinite; }

@keyframes prev-eletrica {
  0%,100% { border-color: #00eeff; box-shadow: 0 0 10px #00eeff, 0 0 22px rgba(0,238,255,0.35); }
  50%     { border-color: #ffffff; box-shadow: 0 0 18px #fff, 0 0 36px rgba(0,200,255,0.5); }
}
.prev-eletrica { animation: prev-eletrica 0.75s ease-in-out infinite; }

@keyframes prev-aurora {
  0%,100% { border-color: #00ff88; box-shadow: 0 0 10px #00ff88; }
  33%     { border-color: #00ddff; box-shadow: 0 0 10px #00ddff; }
  66%     { border-color: #aa00ff; box-shadow: 0 0 10px #aa00ff; }
}
.prev-aurora { animation: prev-aurora 4s linear infinite; }

@keyframes prev-sombria {
  0%,100% { border-color: #5500aa; box-shadow: 0 0 8px rgba(85,0,170,0.75); }
  50%     { border-color: #9900ff; box-shadow: 0 0 16px rgba(153,0,255,0.9); }
}
.prev-sombria { animation: prev-sombria 2.2s ease-in-out infinite; }

@keyframes prev-sangue {
  0%,100% { border-color: #8B0000; box-shadow: 0 0 8px rgba(139,0,0,0.75); }
  50%     { border-color: #ff1111; box-shadow: 0 0 16px rgba(220,20,60,0.85); }
}
.prev-sangue { animation: prev-sangue 1.6s ease-in-out infinite; }

@keyframes prev-plasma {
  0%,100% { border-color: #ff00aa; box-shadow: 0 0 10px #ff00aa; }
  33%     { border-color: #aa00ff; box-shadow: 0 0 10px #aa00ff; }
  66%     { border-color: #00bbff; box-shadow: 0 0 10px #00bbff; }
}
.prev-plasma { animation: prev-plasma 2.5s linear infinite; }

@keyframes prev-abismo {
  0%,100% { border-color: #0044aa; box-shadow: 0 0 8px rgba(0,68,170,0.7); }
  50%     { border-color: #00aaff; box-shadow: 0 0 16px rgba(0,170,255,0.8); }
}
.prev-abismo { animation: prev-abismo 2.5s ease-in-out infinite; }
