:root{
  color-scheme:dark;
  --bg:#070707;
  --bg2:#0d0d0f;
  --panel:#111215;
  --panel2:#17181c;
  --panel3:#1d1f24;
  --text:#f5f5f5;
  --muted:#9d9da3;
  --line:#2a2b30;
  --red:#ef1919;
  --red2:#b60000;
  --gold:#ffcf3d;
  --danger:#ff4747;
  --shadow:0 24px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 85% 5%,rgba(239,25,25,.10),transparent 28%),
    linear-gradient(180deg,#090909 0,#070707 100%);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.12;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size:38px 38px;
  mask-image:linear-gradient(to bottom,#000,transparent 85%);
}

a{color:inherit;text-decoration:none}

img{display:block;max-width:100%}

button,input,textarea,select{font:inherit}

.wrap{
  width:min(1180px,calc(100% - 34px));
  margin:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(7,7,7,.82);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.nav{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  font-size:26px;
  font-weight:950;
  letter-spacing:-1.5px;
  text-transform:none;
}

.brand-1,.brand-red{color:var(--red)}
.brand-v{font-style:italic}

.main-nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:#d5d5d8;
  font-weight:700;
  font-size:14px;
}

.main-nav a{
  transition:.18s ease;
}

.main-nav a:hover{
  color:#fff;
}

.nav-user{
  color:#a8a8ae!important;
}

main{
  padding:30px 0 74px;
}

.hero{
  position:relative;
  min-height:500px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(5,5,5,.93) 0%,rgba(5,5,5,.68) 48%,rgba(5,5,5,.28) 100%),
    url("/static/brand-bg.webp") center 47%/cover no-repeat;
  box-shadow:var(--shadow);
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:110px;
  background:linear-gradient(transparent,#080808);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 72% 50%,rgba(239,25,25,.15),transparent 24%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(640px,90%);
  padding:92px 56px;
}

.eyebrow,.section-kicker{
  color:var(--red);
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
}

.hero h1,.login-brand h1{
  margin:12px 0 4px;
  font-size:clamp(54px,10vw,108px);
  line-height:.9;
  letter-spacing:-6px;
  text-transform:none;
  font-weight:1000;
  font-style:italic;
  text-shadow:0 6px 28px rgba(0,0,0,.45);
}

.hero p,.login-brand p{
  margin:18px 0 0;
  color:#d7d7d9;
  letter-spacing:7px;
  font-weight:700;
  font-size:13px;
}

.white{color:#f7f4ef}
.red{color:var(--red)}

.hero-actions{
  margin-top:34px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border-radius:10px;
  padding:0 18px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--red),#b20000);
  color:white;
  box-shadow:0 12px 30px rgba(239,25,25,.18);
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
}

.btn-ghost{
  border-color:#3a3a3f;
  background:rgba(255,255,255,.03);
  color:#f0f0f0;
}

.btn-ghost:hover{
  background:rgba(255,255,255,.08);
}

.section{
  margin-top:54px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}

.section-head h2,.page-intro h1{
  margin:3px 0 0;
  font-size:clamp(32px,5vw,52px);
  line-height:1;
  letter-spacing:-2px;
}

.text-link{
  color:#ddd;
  font-weight:700;
}

.muted{color:var(--muted)}

.playlist-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.playlist-grid-large{
  margin-top:28px;
}

.playlist-card{
  display:block;
  background:linear-gradient(180deg,#141519,#0f1012);
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  overflow:hidden;
  transition:.2s ease;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.playlist-card:hover{
  transform:translateY(-4px);
  border-color:rgba(239,25,25,.42);
  box-shadow:0 20px 48px rgba(0,0,0,.28);
}

.playlist-art{
  aspect-ratio:1;
  position:relative;
  overflow:hidden;
  background:#151515;
}

.playlist-art img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s ease;
}

.playlist-card:hover .playlist-art img{
  transform:scale(1.025);
}

.playlist-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at center,rgba(239,25,25,.22),transparent 34%),
    linear-gradient(135deg,#161616,#070707);
  border:1px solid rgba(255,255,255,.04);
}

.playlist-fallback span{
  font-size:56px;
  font-weight:1000;
  font-style:italic;
  color:var(--red);
  text-shadow:0 0 30px rgba(239,25,25,.3);
}

.playlist-play{
  position:absolute;
  right:14px;
  bottom:14px;
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--red);
  color:white;
  box-shadow:0 10px 24px rgba(0,0,0,.45);
}

.playlist-copy{
  padding:16px;
}

.playlist-copy h3{
  margin:0 0 6px;
  font-size:18px;
}

.playlist-copy p,.playlist-copy span{
  color:var(--muted);
  font-size:13px;
  margin:0;
}

.track-list{
  display:grid;
  gap:10px;
}

.track-row{
  display:grid;
  grid-template-columns:48px 76px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:12px 14px;
  background:linear-gradient(90deg,rgba(18,19,22,.97),rgba(12,13,15,.97));
  border:1px solid rgba(255,255,255,.055);
  border-radius:14px;
  transition:.18s ease;
}

.track-row:hover{
  border-color:rgba(239,25,25,.28);
  transform:translateX(2px);
}

.track-rank{
  color:#6e6e74;
  font-weight:900;
  font-size:14px;
  letter-spacing:1px;
}

.track-cover{
  width:76px;
  height:76px;
  border-radius:10px;
  overflow:hidden;
  background:#171717;
}

.track-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cover-fallback,.mini-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#222,#0d0d0e);
  color:var(--red);
  font-size:30px;
  font-weight:900;
}

.track-main{
  min-width:0;
}

.track-title-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.track-title{
  font-size:18px;
  font-weight:900;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.track-meta{
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
}

.rating-pill{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(255,207,61,.25);
  color:var(--gold);
  background:rgba(255,207,61,.07);
  padding:4px 7px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}

.custom-player{
  display:grid;
  grid-template-columns:36px minmax(120px,1fr) 86px;
  align-items:center;
  gap:10px;
  width:100%;
  margin-top:10px;
}

.custom-player audio{display:none}

.play-button{
  width:34px;
  height:34px;
  padding:0;
  border-radius:50%;
  border:0;
  background:#25262b;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.play-button:hover,.play-button.playing{
  background:var(--red);
}

.seek{
  width:100%;
  padding:0;
  margin:0;
  accent-color:var(--red);
  cursor:pointer;
}

.time{
  color:#85858c;
  font-size:12px;
  font-variant-numeric:tabular-nums;
  text-align:right;
}

.stars{
  display:flex;
  gap:1px;
  white-space:nowrap;
}

.stars button{
  background:none;
  border:0;
  color:#4d4d52;
  padding:2px;
  font-size:20px;
  cursor:pointer;
}

.stars button.active,.stars button:hover{
  color:var(--gold);
}

.stars-large button{
  font-size:30px;
}

.page-intro{
  padding:26px 0 8px;
}

.page-intro p{
  margin-top:12px;
}

.back-link{
  display:inline-block;
  margin:4px 0 24px;
  color:#c8c8cc;
  font-weight:700;
}

.song-hero{
  display:grid;
  grid-template-columns:minmax(260px,390px) 1fr;
  gap:50px;
  align-items:center;
  padding:30px 0 42px;
}

.song-art{
  aspect-ratio:1;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.44);
  border:1px solid rgba(255,255,255,.08);
}

.song-art img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.song-art-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at center,rgba(239,25,25,.20),transparent 32%),
    #0e0e10;
  color:var(--red);
  font-size:90px;
  font-weight:1000;
  font-style:italic;
}

.song-info h1{
  margin:8px 0 18px;
  font-size:clamp(42px,7vw,78px);
  line-height:.95;
  letter-spacing:-4px;
}

.song-score{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
}

.score-big{
  color:var(--gold);
  font-size:22px;
  font-weight:900;
}

.custom-player-large{
  padding:16px 0 6px;
}

.rate-block{
  margin-top:18px;
}

.rate-block>span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-bottom:5px;
}

.comments-section{
  max-width:900px;
}

.comment-form{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}

textarea,input,select{
  width:100%;
  background:#0b0c0e;
  color:#f5f5f5;
  border:1px solid #323238;
  border-radius:10px;
  padding:12px 13px;
  outline:none;
}

textarea:focus,input:focus,select:focus{
  border-color:rgba(239,25,25,.65);
  box-shadow:0 0 0 3px rgba(239,25,25,.08);
}

textarea{
  min-height:110px;
  resize:vertical;
}

label{
  display:block;
  margin:14px 0 6px;
  color:#cbcbcf;
  font-size:13px;
  font-weight:700;
}

.comment-list{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.comment-card{
  background:#101114;
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
}

.comment-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-size:13px;
}

.comment-head span{
  color:var(--muted);
}

.comment-card p{
  margin:10px 0 0;
  white-space:pre-wrap;
}

.danger-link{
  margin-top:10px;
  padding:0;
  border:0;
  background:none;
  color:#ff6767;
  cursor:pointer;
  font-size:12px;
}

.flash-stack{
  position:relative;
  z-index:5;
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.flash{
  border:1px solid rgba(239,25,25,.28);
  background:rgba(102,0,0,.18);
  color:#eee;
  border-radius:12px;
  padding:12px 14px;
}

.empty{
  padding:34px;
  border:1px dashed #303036;
  border-radius:16px;
  background:#0e0f11;
  color:var(--muted);
}

.empty h3{
  color:white;
  margin:0 0 6px;
}

.empty.compact{
  padding:18px;
}

.admin-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}

.admin-card,.admin-section{
  background:linear-gradient(180deg,#121316,#0d0e10);
  border:1px solid var(--line);
  border-radius:18px;
}

.admin-card{
  padding:20px;
}

.admin-card h2{
  margin:8px 0 10px;
  font-size:21px;
}

.admin-card-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(239,25,25,.12);
  border:1px solid rgba(239,25,25,.25);
  color:var(--red);
  font-size:20px;
  font-weight:900;
}

.admin-section{
  margin-top:24px;
  padding:20px;
}

.admin-list{
  display:grid;
  gap:8px;
}

.admin-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:12px;
  background:#0d0e10;
  border:1px solid #24252a;
  border-radius:12px;
}

.admin-song{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.admin-song img,.mini-fallback{
  width:52px;
  height:52px;
  border-radius:8px;
  object-fit:cover;
  flex:0 0 auto;
}

.inline-edit{
  display:flex;
  gap:8px;
  align-items:center;
}

.inline-edit input{
  min-width:220px;
  padding:8px 10px;
}

.admin-meta{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}

.status{
  border-radius:999px;
  padding:2px 7px;
  font-weight:800;
}

.status.active{
  background:rgba(59,210,119,.10);
  color:#63db92;
}

.status.inactive{
  background:rgba(255,255,255,.06);
  color:#aaa;
}

.admin-actions{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.btn-small,.link-btn{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 10px;
  border:1px solid #35363d;
  border-radius:8px;
  background:#18191d;
  color:#eee;
  font-weight:800;
  font-size:12px;
  cursor:pointer;
}

.btn-small:hover,.link-btn:hover{
  border-color:#55565e;
}

.btn-small.danger{
  color:#ff7777;
  border-color:rgba(255,71,71,.28);
  background:rgba(255,71,71,.06);
}

.admin-comment{
  margin:8px 0 0;
  color:#ddd;
}

.playlist-add-card{
  margin-top:20px;
}

.add-song-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:end;
}

.playlist-header{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:30px;
  align-items:end;
  margin-bottom:34px;
}

.playlist-header-art{
  width:220px;
  height:220px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.playlist-header-art img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.playlist-header h1{
  margin:6px 0 10px;
  font-size:clamp(44px,7vw,78px);
  letter-spacing:-4px;
  line-height:.95;
}

.playlist-description{
  color:#c6c6ca;
  max-width:720px;
}

.login-shell{
  min-height:calc(100vh - 190px);
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:26px;
  align-items:stretch;
}

.login-brand{
  min-height:600px;
  border-radius:26px;
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:end;
  background:
    linear-gradient(180deg,rgba(5,5,5,.18),rgba(5,5,5,.86)),
    url("/static/brand-bg.webp") center/cover no-repeat;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}

.login-card{
  align-self:center;
  background:linear-gradient(180deg,#141519,#0d0e10);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}

.login-card h2{
  margin:0;
  font-size:32px;
}

.login-card .btn{
  width:100%;
  margin-top:18px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.06);
  color:#777980;
  padding:28px 0 40px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  font-size:12px;
  letter-spacing:2px;
}

.footer strong{
  color:#bdbdc2;
}

@media(max-width:980px){
  .playlist-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .admin-grid{
    grid-template-columns:1fr;
  }

  .song-hero{
    grid-template-columns:300px 1fr;
    gap:30px;
  }

  .login-shell{
    grid-template-columns:1fr;
  }

  .login-brand{
    min-height:440px;
  }
}

@media(max-width:760px){
  .wrap{
    width:min(100% - 22px,1180px);
  }

  .nav{
    min-height:64px;
  }

  .brand{
    font-size:22px;
  }

  .main-nav{
    gap:12px;
    font-size:12px;
  }

  .nav-user{
    display:none;
  }

  main{
    padding-top:18px;
  }

  .hero{
    min-height:430px;
    border-radius:20px;
    background:
      linear-gradient(180deg,rgba(5,5,5,.40),rgba(5,5,5,.87)),
      url("/static/brand-bg.webp") center/cover no-repeat;
  }

  .hero-content{
    padding:60px 24px 48px;
  }

  .hero h1,.login-brand h1{
    letter-spacing:-4px;
  }

  .hero p,.login-brand p{
    letter-spacing:4px;
    font-size:11px;
  }

  .playlist-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .playlist-copy{
    padding:12px;
  }

  .track-row{
    grid-template-columns:34px 58px minmax(0,1fr);
    gap:10px;
    padding:10px;
  }

  .track-cover{
    width:58px;
    height:58px;
  }

  .track-row>.stars{
    grid-column:3;
  }

  .custom-player{
    grid-template-columns:34px 1fr;
  }

  .custom-player .time{
    grid-column:2;
    text-align:left;
    margin-top:-5px;
  }

  .song-hero{
    grid-template-columns:1fr;
  }

  .song-art{
    max-width:380px;
  }

  .song-info h1{
    letter-spacing:-2px;
  }

  .playlist-header{
    grid-template-columns:120px 1fr;
    gap:18px;
  }

  .playlist-header-art{
    width:120px;
    height:120px;
    border-radius:14px;
  }

  .playlist-header h1{
    letter-spacing:-2px;
  }

  .admin-row{
    align-items:flex-start;
    flex-direction:column;
  }

  .admin-actions{
    width:100%;
  }

  .inline-edit{
    flex-direction:column;
    align-items:flex-start;
  }

  .inline-edit input{
    min-width:0;
  }

  .add-song-form{
    grid-template-columns:1fr;
  }

  .footer-inner{
    flex-direction:column;
  }
}

@media(max-width:520px){
  .main-nav a:nth-child(2){
    display:none;
  }

  .playlist-grid{
    grid-template-columns:1fr 1fr;
  }

  .playlist-copy h3{
    font-size:15px;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .track-row{
    grid-template-columns:28px 50px minmax(0,1fr);
  }

  .track-cover{
    width:50px;
    height:50px;
  }

  .track-title{
    font-size:16px;
  }

  .rating-pill{
    display:none;
  }

  .login-brand{
    min-height:360px;
    padding:28px;
  }
}
/* ===== V1rusN1c0 v2.1 – smaller hero brand + persistent player ===== */

.hero .hero-brand-small{
  font-size:clamp(34px,5.5vw,62px);
  line-height:.95;
  letter-spacing:-3px;
  margin:10px 0 4px;
}

.has-global-player{
  padding-bottom:104px;
}

.global-player{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1000;
  background:rgba(8,8,9,.94);
  border-top:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  box-shadow:0 -14px 42px rgba(0,0,0,.45);
  transition:transform .22s ease,opacity .22s ease;
}

.global-player.is-hidden{
  transform:translateY(110%);
  opacity:0;
  pointer-events:none;
}

.global-player-inner{
  width:min(1180px,calc(100% - 26px));
  min-height:86px;
  margin:auto;
  display:grid;
  grid-template-columns:48px 54px minmax(0,1fr) 40px;
  align-items:center;
  gap:13px;
}

.global-player audio{
  display:none;
}

.gp-toggle{
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(239,25,25,.24);
}

.gp-cover-wrap{
  width:54px;
  height:54px;
  border-radius:9px;
  overflow:hidden;
  background:#141414;
}

.gp-cover{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gp-cover-fallback{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#231010,#090909);
  color:var(--red);
  font-weight:1000;
  font-style:italic;
}

.gp-center{
  min-width:0;
}

.gp-title{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:900;
  font-size:14px;
  margin-bottom:8px;
}

.gp-progress-row{
  display:grid;
  grid-template-columns:42px minmax(80px,1fr) 42px;
  align-items:center;
  gap:9px;
}

.gp-seek{
  width:100%;
  margin:0;
  padding:0;
  accent-color:var(--red);
  cursor:pointer;
}

.gp-time{
  color:#8f8f95;
  font-size:11px;
  font-variant-numeric:tabular-nums;
}

.gp-time:last-child{
  text-align:right;
}

.gp-close{
  width:36px;
  height:36px;
  padding:0;
  border:0;
  background:transparent;
  color:#8f8f95;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.gp-close:hover{
  color:#fff;
}

/* Local track controls now drive the persistent player. */
.custom-player{
  display:grid;
  grid-template-columns:36px minmax(120px,1fr) 86px;
  align-items:center;
  gap:10px;
  width:100%;
  margin-top:10px;
}

@media(max-width:760px){
  .hero .hero-brand-small{
    font-size:clamp(30px,10vw,48px);
    letter-spacing:-2px;
  }

  .has-global-player{
    padding-bottom:92px;
  }

  .global-player-inner{
    min-height:76px;
    grid-template-columns:42px 44px minmax(0,1fr) 28px;
    gap:9px;
  }

  .gp-toggle{
    width:40px;
    height:40px;
  }

  .gp-cover-wrap{
    width:44px;
    height:44px;
  }

  .gp-close{
    width:28px;
    height:28px;
    font-size:24px;
  }

  .gp-title{
    font-size:13px;
    margin-bottom:5px;
  }

  .gp-progress-row{
    grid-template-columns:36px minmax(60px,1fr) 36px;
    gap:6px;
  }
}

/* ===== TAN registration ===== */

.register-link-box{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  flex-direction:column;
  gap:5px;
  color:var(--muted);
  font-size:13px;
}

.register-link-box a{
  color:#fff;
  font-weight:900;
}

.register-link-box a:hover{
  color:var(--red);
}

.tan-duration-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
}

.tan-duration-row span{
  color:var(--muted);
  font-size:13px;
}

.tan-code{
  font-size:24px;
  line-height:1;
  letter-spacing:4px;
  font-weight:1000;
  font-variant-numeric:tabular-nums;
}

.status.tan-used{
  background:rgba(255,207,61,.10);
  color:#ffcf3d;
}

.tan-info{
  min-width:0;
}


/* ===== V1rusN1c0 v2.2 – E-Mail / Brevo ===== */
.check-row{display:flex;align-items:flex-start;gap:10px;margin-top:16px;cursor:pointer;color:#d3d3d6;line-height:1.4}
.check-row input[type="checkbox"]{width:18px;height:18px;margin:1px 0 0;flex:0 0 auto;accent-color:var(--red)}
.check-row span{font-size:13px}
.smtp-status{margin:8px 0 4px;font-size:13px;font-weight:900}
.smtp-status.ok{color:#63db92}.smtp-status.bad{color:#ff7777}.smtp-from{margin-top:4px;font-size:12px}.mail-enabled{color:#63db92}
.profile-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(260px,.65fr);gap:18px;margin-top:26px}.profile-info-card strong{color:#fff}
@media(max-width:760px){.profile-grid{grid-template-columns:1fr}}
