:root{
    --bg:#0b1220;
    --muted:#9fb0d0;
    --text:#e8eefc;
  
    --blue: rgba(64,120,255,1);
    --mint: rgba(0,255,190,1);
  
    --line: rgba(255,255,255,.08);
    --shadow: 0 22px 80px rgba(0,0,0,.55);
  }
  
  /* =========================
     BASE
     ========================= */
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color:var(--text);
    background:
      radial-gradient(900px 520px at 18% 5%, rgba(64,120,255,.22), transparent 60%),
      radial-gradient(800px 520px at 88% 24%, rgba(0,255,190,.14), transparent 55%),
      radial-gradient(900px 620px at 50% 110%, rgba(255,0,200,.10), transparent 55%),
      linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%),
      var(--bg);
  }
  body.app{overflow-x:hidden}
  
  a{color:inherit}
  code{background:rgba(255,255,255,.08); padding:2px 6px; border-radius:8px}
  
  h1,h2{margin:0 0 12px}
  h1{font-size:28px; letter-spacing:.2px}
  h2{font-size:22px; letter-spacing:.2px}
  p{margin:8px 0}
  .hint{color:var(--muted); font-size:14px}
  .muted{color:var(--muted); font-size:13px}
  
  /* =========================
     TOPBAR
     ========================= */
  .topbar{
    position:sticky; top:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 16px;
    background: rgba(9,14,26,.60);
    border-bottom:1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    z-index:30;
  }
  .topbar-title{font-weight:900; letter-spacing:.2px}
  .link{color:var(--muted); text-decoration:none}
  .link:hover{color:var(--text)}
  
  .icon-btn{
    width:44px; height:40px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color:var(--text);
    cursor:pointer;
  }
  .icon-btn:hover{filter:brightness(1.1)}
  
  /* =========================
     OVERLAY
     ========================= */
  .overlay{
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.55);
    opacity:0;
    pointer-events:none;
    transition: opacity .22s ease;
    z-index:20;
  }
  .overlay.show{opacity:1; pointer-events:auto}
  
  /* =========================
     CONTENT
     ========================= */
  .content{padding:18px; max-width:1040px; margin:0 auto}
  .panel.hidden{display:none}
  
  /* =========================
     UNIFIED "SURFACE" STYLE
     (cards, tiles, entries, boxes)
     ========================= */
  .card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    padding:22px;
    background:
      radial-gradient(700px 260px at 20% 0%, rgba(64,120,255,.10), transparent 60%),
      radial-gradient(650px 260px at 90% 10%, rgba(0,255,190,.06), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
      rgba(10,14,26,.78);
    border: 1px solid var(--line);
    box-shadow: 0 22px 70px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.02);
  }
  
  /* Title underline exactly width of text */
  .card h2{
    position:relative;
    display:inline-block;
    padding-bottom:8px;
  }
  .card h2::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:100%;
    height:3px;
    border-radius:999px;
    background: linear-gradient(90deg, rgba(64,120,255,.95), rgba(0,255,190,.75));
    opacity:.6;
  }
  
  /* Alerts */
  .alert{
    border:1px solid rgba(255,80,80,.35);
    background: rgba(255,80,80,.10);
    padding:10px 12px;
    border-radius:16px;
  }
  .success{
    border:1px solid rgba(0,255,190,.35);
    background: rgba(0,255,190,.10);
    padding:10px 12px;
    border-radius:16px;
  }
  
  /* =========================
     BUTTONS
     ========================= */
  .actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 16px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, rgba(64,120,255,1), rgba(109,86,255,1));
    color:white;
    text-decoration:none;
    cursor:pointer;
    font-weight:900;
    letter-spacing:.2px;
    box-shadow: 0 16px 40px rgba(64,120,255,.22), 0 0 26px rgba(64,120,255,.18);
  }
  .btn:hover{filter:brightness(1.06); transform: translateY(-1px)}
  .btn:active{transform: translateY(0)}
  .btn-outline{
    background: rgba(255,255,255,.06);
    box-shadow:none;
  }
  .btn-outline:hover{box-shadow: 0 0 22px rgba(0,255,190,.12)}
  
  /* =========================
     FORMS
     ========================= */
  .form{display:flex; flex-direction:column; gap:12px}
  label{display:flex; flex-direction:column; gap:6px; font-size:14px; color:var(--muted)}
  input, textarea{
    padding:12px 14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.14);
    background: rgba(7,10,20,.55);
    color:var(--text);
    outline:none;
    width:100%;
  }
  input::placeholder, textarea::placeholder{color: rgba(159,176,208,.72)}
  input:focus, textarea:focus{
    border-color: rgba(64,120,255,.65);
    box-shadow: 0 0 0 4px rgba(64,120,255,.18), 0 0 24px rgba(64,120,255,.18);
  }
  textarea{min-height:110px; resize:vertical}
  
  .grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
  
  /* =========================
     PROFILE TILES
     ========================= */
  .info-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
  }
  .info-grid > div{
    padding:12px;
    border-radius:20px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  }
  
  /* =========================
     ENTRIES
     ========================= */
  .entries{display:flex; flex-direction:column; gap:12px; margin-top:10px;}
  .entry{
    position: relative;
    border-radius:20px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    padding: 12px 14px;
  }
  .entry::before{
    content:"";
    position:absolute;
    left:6px;
    top:12px;
    bottom:12px;
    width:3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(64,120,255,.85), rgba(0,255,190,.65));
    opacity:.65;
  }
  .entry:hover{
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 14px 30px rgba(0,0,0,.22), 0 0 22px rgba(64,120,255,.08), inset 0 0 0 1px rgba(255,255,255,.02);
    transform: translateY(-1px);
    transition: .18s ease;
  }
  .entry-sub{
    font-size:11px;
    color: rgba(159,176,208,.92);
    opacity:.9;
  }
  
  /* Calendar entry */
  .entry.entry-cal{
    display:grid;
    grid-template-columns: 42px 1fr auto;
    align-items:center;
    gap:10px;
  }
  .date-badge{
    border-radius:12px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    padding:6px;
    text-align:center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  }
  .date-day{font-size:14px; font-weight:900; line-height:1}
  .date-mon{
    margin-top:3px;
    font-size:9px;
    letter-spacing:.10em;
    color: rgba(159,176,208,.9);
    font-weight:900;
  }
  .entry-main{min-width:0;}
  .entry-title{
    display:flex;
    align-items:baseline;
    gap:8px;
    flex-wrap:wrap;
  }
  .entry-title .amount{
    font-size:16px;
    font-weight:900;
    letter-spacing:.2px;
  }
  .entry-title .dot{opacity:.55;}
  .entry-title .meta{
    color: rgba(159,176,208,.95);
    font-weight:700;
    font-size:12px;
  }
  .entry-right{display:flex; justify-content:flex-end;}
  
  /* Status pills */
  .status{
    display:inline-flex;
    padding:6px 10px;
    border-radius: 999px;
    font-size:11px;
    font-weight: 900;
    letter-spacing:.25px;
    border: 1px solid rgba(255,255,255,.12);
  }
  .status.ok{
    color: rgba(200,255,240,1);
    background: rgba(0,255,190,.10);
    border-color: rgba(0,255,190,.35);
    box-shadow: 0 0 18px rgba(0,255,190,.12);
  }
  .status.pending{
    color: rgba(255,235,185,1);
    background: rgba(255,200,0,.09);
    border-color: rgba(255,200,0,.28);
    box-shadow: 0 0 18px rgba(255,200,0,.10);
  }
  
  /* Balance box */
  .balance-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:12px;
    border-radius:20px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  }
  .balance-value{
    font-size:32px;
    font-weight:900;
    letter-spacing:0.2px;
  }
  
  /* =========================
     SECTION TITLE + ICON FIX
     ========================= */
     .sec-title{
        display:flex;
        align-items:center;   
        gap:10px;
        margin-top:14px;
      }
      
      .sec-title-text{
        font-size:22px;     
        font-weight:900;
        letter-spacing:.2px;
        line-height:1;      
        display:block;
      }
      
      .sec-icon{
        width:28px;
        height:28px;
        display:block;
        flex:0 0 auto;
        object-fit:contain;
        margin:0;           
        transform: translateY(1px);
        filter: drop-shadow(0 0 8px rgba(64,120,255,.6));
      }
      
  
  /* =========================
     SECTION 3 GRID
     ========================= */
  .sec3-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:14px;
    align-items:start;
  }
  .sec3-col{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  
  /* =========================
   
     ========================= */
  .sidebar{
    position:fixed;
    top:64px;
    left:0;
    height:calc(100% - 64px);
    width:300px;
    padding:16px;
    transform: translateX(-102%);
    transition: transform .22s ease;
    z-index:25;
  
    background:
      radial-gradient(700px 380px at 18% 10%, rgba(64,120,255,.16), transparent 60%),
      radial-gradient(650px 360px at 85% 25%, rgba(0,255,190,.10), transparent 60%),
      linear-gradient(180deg, rgba(10,14,26,.92), rgba(7,10,18,.92));
    border-right: 1px solid rgba(255,255,255,.06);
    box-shadow: 26px 0 70px rgba(0,0,0,.45);
  }
  .sidebar.open{transform: translateX(0)}
  
  .sidebar-head{
    display:flex;
    align-items:center;
    gap:16px;
    padding: 6px 6px 18px;
    position:relative;
  }
  .sidebar-head::after{
    content:"";
    position:absolute;
    left:6px; right:6px; bottom:0;
    height:1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  }
  
  .avatar{
    width:56px;
    height:56px;
    border-radius:18px;
    font-size:20px;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
      radial-gradient(20px 20px at 30% 25%, rgba(255,255,255,.18), transparent 55%),
      linear-gradient(135deg, rgba(64,120,255,.38), rgba(0,255,190,.14));
    border:1px solid rgba(64,120,255,.35);
    box-shadow:
      0 0 0 4px rgba(64,120,255,.10),
      0 18px 45px rgba(0,0,0,.35),
      0 0 22px rgba(64,120,255,.22);
  }
  
  .nav{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding-top:16px;
    margin-top:14px;
  }
  
  .nav-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border-radius:20px;
    font-size:15px;
    font-weight:900;
    letter-spacing:.2px;
    text-align:left;
    cursor:pointer;
    color:var(--text);
    line-height:1;
  
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease, background .18s ease;
  }
  
  .nav-item:hover{
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
    box-shadow: 0 14px 30px rgba(0,0,0,.22), 0 0 22px rgba(64,120,255,.08);
    filter: brightness(1.06);
  }
  
  .nav-item.active{
    background:
      radial-gradient(220px 120px at 25% 20%, rgba(64,120,255,.22), transparent 60%),
      linear-gradient(135deg, rgba(64,120,255,.22), rgba(0,255,190,.10));
    border-color: rgba(64,120,255,.35);
    box-shadow: 0 18px 45px rgba(64,120,255,.12), 0 0 26px rgba(64,120,255,.14), inset 0 0 0 1px rgba(64,120,255,.10);
  }
  .nav-item.active::before{
    content:"";
    position:absolute;
    left:-7px;
    top:50%;
    transform: translateY(-50%);
    width:4px;
    height:30px;
    border-radius:999px;
    background: linear-gradient(180deg, var(--blue), rgba(0,255,190,.85));
    box-shadow: 0 0 18px rgba(64,120,255,.25);
  }
  .nav-item.active::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:19px;
    background: radial-gradient(260px 90px at 25% 0%, rgba(255,255,255,.10), transparent 60%);
    pointer-events:none;
  }
  
  .nav-item.disabled,
  .nav-item:disabled{
    opacity:.35;
    cursor:not-allowed;
    transform:none !important;
    filter:none !important;
    box-shadow:none !important;
    background: rgba(255,255,255,.02);
    border-color: rgba(255,255,255,.06);
  }
  
  .sidebar-foot{
    margin-top:20px;
    padding-top:16px;
    position:relative;
  }
  .sidebar-foot::before{
    content:"";
    position:absolute;
    left:6px; right:6px; top:0;
    height:1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  }
  
  .badge{
    display:inline-flex;
    padding:10px 14px;
    border-radius:999px;
    font-size:12px;
    border:1px solid rgba(255,255,255,.14);
    color:var(--muted);
    font-weight:900;
    letter-spacing:.35px;
    background: rgba(255,255,255,.03);
  }
  .badge.ok{
    border-color: rgba(0,255,190,.35);
    color:#bfffe8;
    box-shadow: 0 0 18px rgba(0,255,190,.10);
  }
  .badge.pending{
    border-color: rgba(255,200,0,.30);
    color:#ffe7a6;
    box-shadow: 0 0 18px rgba(255,200,0,.08);
  }
  
  /* =========================
     RESPONSIVE
     ========================= */
  @media (max-width:720px){
    .grid-2{grid-template-columns:1fr}
    .info-grid{grid-template-columns:1fr}
    .card{padding:16px}
    .sidebar{width:86vw}
    .btn{width:100%}
  
    .entry.entry-cal{grid-template-columns:40px 1fr auto; gap:8px}
    .date-day{font-size:13px}
    .date-mon{font-size:9px}
  
    .sec3-grid{grid-template-columns:1fr}
  }
  
  /* Desktop: sidebar always visible */
  @media (min-width:980px){
    .sidebar{transform: translateX(0) !important; top:64px;}
    .overlay{display:none}
    .content{margin-left:300px; max-width:1040px;}
    #btnMenu{display:none}
  }
  
  /* ================= TOPBAR UPGRADE ================= */

.topbar{
    position:sticky;
    top:0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 22px;
    background:
      linear-gradient(180deg, rgba(12,18,32,.95), rgba(8,12,22,.95));
    border-bottom:1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    z-index:30;
  }
  
  /* Left side */
  .topbar-left{
    display:flex;
    align-items:center;
    gap:16px;
  }
  
  .topbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
  }
  
  /* Small neon dot */
  .brand-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background: linear-gradient(180deg, var(--blue), var(--mint));
    box-shadow: 0 0 14px rgba(64,120,255,.6);
  }
  
  .topbar-title{
    font-size:18px;
    font-weight:900;
    letter-spacing:.4px;
  }
  
  /* Right side */
  .topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
  }
  
  /* User mini block */
  .topbar-user{
    display:flex;
    align-items:center;
    gap:10px;
    padding:6px 12px;
    border-radius:16px;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
  }
  
  .topbar-avatar{
    width:32px;
    height:32px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:900;
    background: linear-gradient(135deg, rgba(64,120,255,.4), rgba(0,255,190,.2));
    border:1px solid rgba(64,120,255,.3);
  }
  
  .topbar-username{
    font-size:14px;
    font-weight:700;
    color: rgba(255,255,255,.85);
  }
  
  /* Logout button */
  .logout-btn{
    padding:8px 14px;
    border-radius:16px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    background: rgba(255,80,80,.08);
    border:1px solid rgba(255,80,80,.25);
    color:#ffb3b3;
    transition:.2s ease;
  }
  
  .logout-btn:hover{
    background: rgba(255,80,80,.18);
    box-shadow: 0 0 18px rgba(255,80,80,.18);
  }
  
  /* Responsive */
  @media (max-width:720px){
    .topbar-username{
      display:none;
    }
  }

  /* ================= HOME PAGE UPGRADE ================= */

.home{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
  }
  
  .home-wrap{
    width:min(980px, 100%);
  }
  
  .home-card{
    padding:26px;
  }
  
  /* Top row */
  .home-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:16px;
  }
  
  .home-logo{
    display:flex;
    align-items:center;
    gap:10px;
  }
  
  .logo-dot{
    width:12px;
    height:12px;
    border-radius:999px;
    background: linear-gradient(180deg, var(--blue), var(--mint));
    box-shadow: 0 0 16px rgba(64,120,255,.55);
  }
  
  .logo-text{
    font-weight:900;
    letter-spacing:.3px;
    font-size:16px;
  }
  
  /* Badge */
  .home-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color: rgba(159,176,208,.92);
    font-weight:800;
    font-size:12px;
    letter-spacing:.25px;
  }
  
  .badge-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background: rgba(0,255,190,.9);
    box-shadow: 0 0 12px rgba(0,255,190,.25);
  }
  
  /* Title */
  .home-title{
    margin:0;
    font-size:34px;
    line-height:1.05;
    letter-spacing:.2px;
  }
  
  .home-sub{
    margin:12px 0 0;
    max-width: 70ch;
    color: rgba(159,176,208,.92);
    font-size:15px;
  }
  
  /* Features row */
  .home-features{
    margin-top:18px;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:10px;
  }
  
  .feat{
    padding:12px 14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    font-weight:800;
    font-size:13px;
    color: rgba(232,238,252,.92);
  }
  
  /* Actions */
  .home-actions{
    margin-top:18px;
  }
  
  .home-foot{
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.06);
  }
  
  .home-note{
    color: rgba(159,176,208,.88);
    font-size:12px;
  }
  
  /* Mobile */
  @media (max-width:720px){
    .home-card{padding:18px}
    .home-title{font-size:28px}
    .home-features{grid-template-columns:1fr}
    .home-badge{display:none}
  }

  /* ================= AUTH PAGES ================= */
.auth{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
  }
  .auth-wrap{
    width:min(920px, 100%);
  }
  .auth-card{
    padding:26px;
  }
  
  /* Header row */
  .auth-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
  }
  .auth-brand{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .brand-dot{
    width:12px;
    height:12px;
    border-radius:999px;
    background: linear-gradient(180deg, var(--blue), var(--mint));
    box-shadow: 0 0 16px rgba(64,120,255,.55);
  }
  .brand-name{
    font-weight:900;
    letter-spacing:.3px;
    font-size:16px;
  }
  
  .auth-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color: rgba(159,176,208,.92);
    font-weight:900;
    font-size:12px;
    letter-spacing:.25px;
  }
  .badge-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background: rgba(0,255,190,.9);
    box-shadow: 0 0 12px rgba(0,255,190,.25);
  }
  
  /* Title */
  .auth-title{
    margin:0;
    font-size:34px;
    line-height:1.05;
    letter-spacing:.2px;
  }
  .auth-sub{
    margin:10px 0 0;
    color: rgba(159,176,208,.92);
    font-size:15px;
    max-width:70ch;
  }
  
  /* Actions row */
  .auth-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:6px;
  }
  .auth-actions .btn{
    flex:1;
  }
  
  /* Footer link */
  .auth-foot{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.06);
  }
  .hint-link{
    color: rgba(159,176,208,.92);
    text-decoration:none;
    font-weight:800;
  }
  .hint-link:hover{
    color: rgba(232,238,252,.95);
    text-decoration:underline;
  }
  
  /* Mobile */
  @media (max-width:720px){
    .auth-card{padding:18px}
    .auth-title{font-size:28px}
    .auth-badge{display:none}
    .auth-actions{flex-direction:column}
    .auth-actions .btn{width:100%}
  }
  /* Pending approval card (FINAL) */
.pending-card{
    max-width: 780px;
  }
  
  .pending-hero{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg, rgba(64,120,255,.12), rgba(0,255,190,.06));
  }
  
  .pending-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    box-shadow: 0 0 22px rgba(64,120,255,.12);
    flex-shrink:0;
  }
  
  .pending-title{
    margin:0;
  }
  
  .pending-sub{
    margin:6px 0 0;
    color: rgba(159,176,208,.95);
  }
  
  .pending-steps{
    margin-top:14px;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  
  .step{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:12px 14px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
  }
  
  .step-dot{
    width:10px;
    height:10px;
    margin-top:6px;
    border-radius:999px;
    background: linear-gradient(180deg, rgba(64,120,255,1), rgba(0,255,190,.85));
    box-shadow: 0 0 14px rgba(64,120,255,.18);
    flex-shrink:0;
  }
  
  .step-title{
    font-weight:900;
    letter-spacing:.2px;
  }
  
  .step-desc{
    margin-top:4px;
    color: rgba(159,176,208,.92);
    font-size:13px;
  }
  
  @media (max-width:720px){
    .pending-hero{padding:12px}
    .pending-icon{width:48px; height:48px}
  }

  /* ===== MODAL ===== */
.modal-overlay{
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    z-index:999;
  }
  
  .modal{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:1000;
  }
  
  .modal-box{
    width:min(720px, 95%);
    animation: fadeIn .25s ease;
  }
  
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
  }
  
  
  
  
  
  
  