:root{
      --glass: rgba(255,255,255,.10);
      --glass2: rgba(255,255,255,.14);
      --ring: rgba(255, 255, 255, 0.35);
      --text: #e8f0ff;
      --muted:#b9c1d5;
      --ok:#22c55e;
      --warn:#fbbf24;
      --danger:#ef4444;
      --pri:#5ac8fa;
      --bg-dark: rgba(0,0,0,.45);
      --card:#141a27;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --radius: 16px;
    }

    *{box-sizing:border-box}

    @font-face {
      font-family: 'Alba';
      src: url('ALBA____.TTF') format('truetype');
    }
    @font-face {
      font-family: 'Albas';
      src: url('ALBAS___.TTF') format('truetype');
    }

    html,body{
      height:100%;
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol", sans-serif;
      color: var(--text);
      background: url('image2.jpg') center/cover no-repeat fixed;
    }

    .shade{
      position:fixed; inset:0;
      background:linear-gradient(180deg, rgba(10,12,18,.35), rgba(10,12,18,.7));
      pointer-events:none;
    }

    .wrap{
      position:relative;
      display:grid;
      grid-template-columns: 280px 1fr;
      gap: 18px;
      padding: 22px;
      min-height: 100dvh;
      align-items:flex-start;
    }

    .sidebar{
      position:sticky; top:22px;
      background: var(--glass);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 16px;
      display:flex; flex-direction:column; gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      padding:10px; border-radius:12px; background: var(--glass2);
    }
    .brand img{width:32px; height:32px; border-radius:8px}
    .brand .t1{
      font-family:'Alba', sans-serif;
      letter-spacing:.3px;
      font-size:18px;
    }
    .brand .sub{color:var(--muted); font-size:12px}

    .important{
      background: rgba(255,255,255,.08);
      border-radius: 12px;
      border:1px solid rgba(255,255,255,.16);
      padding:10px 12px;
      display:flex;
      flex-direction:column;
      gap:6px;
    }
    .important-title{
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:var(--text);
    }
    .important p{
      margin:0;
      font-size:12px;
      line-height:1.4;
      color:var(--muted);
    }
    .small{font-size:11px; color:var(--muted);}
    .important .pill-link{
      margin-top:4px;
      font-size:11px;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:4px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(0,0,0,.3);
      cursor:pointer;
    }

    .nav-group{margin-top:4px}
    .nav-title{
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.08em;
      color:var(--muted);
      padding:10px 10px 6px 10px;
    }
    .nav{
      display:flex; flex-direction:column; gap:8px;
      padding: 0 6px 6px 6px;
    }
    .nav button{
      all:unset;
      display:flex; align-items:center; justify-content:space-between;
      gap:10px;
      padding:10px 12px;
      border-radius:12px;
      cursor:pointer;
      background: transparent;
      border:1px solid transparent;
      font-size:14px;
    }
    .nav button:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10)}
    .nav button.active{background: rgba(90,200,250,.12); border-color: var(--ring)}
    .badge{
      font-size:11px; padding:2px 8px; border-radius:999px;
      background:rgba(255,255,255,.10); color:var(--muted);
    }

    .panel{
      background: var(--glass);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 18px;
      min-height: calc(100dvh - 44px);
    }
    .header{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding: 8px 4px 18px 4px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      margin-bottom: 16px;
    }
    h1{
      font-family: 'Albas', 'Alba', sans-serif;
      font-size: 28px; margin:0; letter-spacing:.3px;
    }
    .subhead{color:var(--muted); font-size:13px}
    .toolbar{display:flex; gap:8px; flex-wrap:wrap;}
    .btn{
      all:unset; cursor:pointer;
      background:#000; color:#fff;
      padding:8px 12px; border-radius:10px; font-size:13px;
      border:1px solid rgba(255,255,255,.08);
    }
    .btn:hover{background:#1a1a1a}
    .btn.ghost{background:transparent}
    .btn.ghost:hover{background: rgba(255,255,255,.06)}

    .section{display:none; animation: fade .2s ease}
    .section.active{display:block}
    @keyframes fade{from{opacity:0; transform: translateY(4px)} to{opacity:1; transform:none}}

    .grid{
      display:grid; gap:14px;
      grid-template-columns: repeat(12, 1fr);
    }
    .col-12{grid-column: span 12}
    .col-8{grid-column: span 8}
    .col-6{grid-column: span 6}
    .col-4{grid-column: span 4}
    @media(max-width:1000px){
      .wrap{grid-template-columns: 1fr}
      .sidebar{position:static}
      .col-8,.col-6,.col-4{grid-column: span 12}
    }

    .card{
      background: rgba(0,0,0,.45);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 14px;
      padding: 14px;
    }
    .card h2{
      margin:0 0 8px 0; font-size:18px;
    }
    .card h3{
      margin:4px 0 8px 0; font-size:15px;
    }
    .hint{color:var(--muted); font-size:12px}
    .mono{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace}

    .section-title{
      font-size:13px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:var(--muted);
      margin-bottom:6px;
    }

    ul.clean{
      list-style:none;
      padding:0;
      margin:0;
      font-size:13px;
      line-height:1.4;
    }
    ul.clean li{margin-bottom:4px}

    a.link{
      color:var(--pri);
      text-decoration:none;
    }
    a.link:hover{text-decoration:underline}

    .pill{
      display:inline-flex; align-items:center; gap:6px;
      padding:4px 10px; border-radius:999px;
      font-size:11px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.04);
      white-space:nowrap;
    }
    .pill-link{
      display:inline-flex; align-items:center; gap:6px;
      padding:4px 10px; border-radius:999px;
      font-size:11px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.04);
      white-space:nowrap;
      color: #fff;
      text-decoration:none; color:inherit;

    }
    
    .download-card{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:10px 12px;
      margin-top:6px;
      border-radius:12px;
      background:rgba(0,0,0,.35);
      border:1px solid rgba(255,255,255,.14);
    }
    .download-icon{
      width:32px;height:32px;
      display:flex;align-items:center;justify-content:center;
      border-radius:10px;
      background:rgba(255,255,255,.10);
    }
    .download-icon svg{
      width:18px;height:18px;
    }
    .download-content{
      flex:1;
      font-size:13px;
    }
    .download-title{
      font-weight:600;
      margin-bottom:3px;
    }
    .download-desc{
      color:var(--muted);
      font-size:12px;
    }
    .download-actions{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:8px;
    }

    
.btn-small{
  all: unset;
  cursor: pointer;
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.08);
}

.btn-small:hover{
  background: #adadad;
}

.btn-small.ghost{
  background: transparent;
}

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


    .two-col-req{
      display:grid;
      grid-template-columns: repeat(3,minmax(0,1fr));
      gap:10px;
      margin-top:6px;
    }
    .req-block h3{
      font-size:14px;
      margin-top:0;
      margin-bottom:4px;
    }
    .req-block ul{
      list-style:none;
      padding:0;
      margin:0;
      font-size:12px;
      color:var(--muted);
    }
    .req-block ul li{
      margin-bottom:2px;
    }

    .btn-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:10px;
    }


.cookie-card {
  max-width: 340px;
  padding: 0.9rem 1.1rem;
  background: rgba(0, 0, 0, 0.188);             
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;                          
  box-shadow: var(--shadow);
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.10);  
}

.cookie-card .title {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.cookie-card .description {
  margin-top: 0.75rem;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.cookie-card .description a {
  color: var(--pri);
}

.cookie-card .description a:hover {
  text-decoration: underline;
}

.cookie-card .actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
  gap: 8px;
}

.cookie-card .accept {
  font-size: 12px;
  font-weight: 500;
  border-radius: 10px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  background: #00000016;                             
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-card .accept:hover {
  background: #1a1a1a;
}


    @media(max-width:700px){
      .wrap{
        padding:16px 10px 70px;
      }
      .panel{
        padding:14px;
      }
      .footer{
        font-size:11px;
      }
    }

.vinti-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  white-space: nowrap;
}

.pill.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.pill.ok {
  background: rgba(22, 163, 74, 0.16);
  border-color: rgba(34, 197, 94, 0.6);
  color: #fff;
}

.pill.warn {
  background: rgba(234, 179, 8, 0.16);
  border-color: rgba(250, 204, 21, 0.7);
  color: #fff;
}

.pill.danger {
  background: rgba(220, 38, 38, 0.16);
  border-color: rgba(239, 68, 68, 0.75);
  color: #fff;
}


     .footer {
  color: #fff;
  text-align: center;
  padding: 8px 0; 
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 35px 35px 0 0;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);

  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  transition: background-color 0.3s ease;
}

.footer a {
  color: #fff;
  text-decoration: none;
}
