    :root {
    --bg: #0e0e10;
    --surface: #17171a;
    --surface2: #1e1e23;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.13);
    --text: #f0f0ee;
    --muted: #6e6e78;
    --hint: #3a3a42;
    --nem-bg: rgba(255, 112, 67, 0.1);
    --accent: #a78bfa;
    --igen-light: #b8f5d8;
    --igen-mid: #2dd4a0;
    --igen-dark: #0a7a57;
    --igen-bg: rgba(45, 212, 160, 0.1);
  }
  
  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Syne', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    min-width: 100%;
    padding: 0;
  }

  /* noise overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  .page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px; 
    width: 100%;
    }


  .header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }

  
  .logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .logo-top {
    font-size: 11px;
    font-family: 'DM Mono', monospace;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .logo-main {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

.data-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }

.add-row {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
  }

  @media (max-width: 600px) {
  .add-row {
    flex-direction: column; 
  }

  .add-row > * {
    width: 100%; 

    
  }
}
  
  .add-input {
    flex: 1;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.15s;
    resize: none;
  }

  
  .add-input::placeholder { color: var(--muted); }
  .add-input:focus { border-color: var(--accent); }
  .add-btn {
    background: var(--accent);
    color: #0e0e10;
    border: none;
    border-radius: 10px;
    padding: 14px 22px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .add-btn:hover { background: #c4b5fd; transform: translateY(-1px); }
  .add-btn:active { transform: scale(0.98); }

  
  .q-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px;
    margin-bottom: 14px;
    transition: border-color 0.2s;
    animation: slideIn 0.25s ease;
  }
  .q-card:hover { border-color: var(--border2); }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .q-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .q-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    flex: 1;
    color: var(--text);
  }
  .q-badge {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 99px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
    font-weight: 500;
    background: rgba(167,139,250,0.15);
    color: var(--accent);
    border: 1px solid rgba(167,139,250,0.3);
  }

   .q-badge-bence {
        background: var(--igen-bg); 
        color: var(--igen-mid); 
        border: 1px solid var(--igen-dark);
   }

  ul {
    list-style: none;
  }