/* =========================
   GLOBAL
   ========================= */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: Inter, system-ui, sans-serif; 
}

body { 
  min-height: 100vh; 
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b); 
  color: #eaeaea; 
}

/* =========================
   NAVBAR - STICKY
   ========================= */
.navbar { 
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px; 
  padding: 0 44px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
  background: rgba(10,10,10,0.72); 
  backdrop-filter: blur(10px); 
}

/* LEFT */
.nav-left { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  min-width: 240px;
}

.brand-home{
  display:inline-flex;
  align-items:center;
  text-decoration: none;
}

.logo-img{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.brand-wrap{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand { 
  font-weight: 850; 
  letter-spacing: 0.2px; 
  font-size: 15px;
}

.brand-tag{
  margin-top: 4px;
  font-size: 11px;
  color: #a9a9a9;
}

/* CENTER */
.nav-center { 
  display: flex; 
  gap: 10px; 
  align-items: center;
  justify-content: center;
}

.nav-pill{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #eaeaea;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.nav-pill:hover{
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.nav-pill:active{
  transform: translateY(0px) scale(0.98);
}

/* Ghost variant */
.nav-pill.ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
}

/* ACTIVE STATE */
.nav-pill.active,
.nav-pill[aria-current="page"]{
  background: rgba(234,234,234,0.92);
  color: #0b0b0b;
  border-color: rgba(234,234,234,0.22);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Fokus */
.nav-pill:focus-visible,
.login-btn:focus-visible{
  outline: 2px solid rgba(34,197,94,0.65);
  outline-offset: 2px;
}

/* RIGHT */
.nav-right{
  min-width: 240px;
  display:flex;
  justify-content: flex-end;
}

/* LOGIN BUTTON */
.login-btn { 
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px; 
  border-radius: 999px; 
  border: 1px solid rgba(255,255,255,0.12); 
  background: rgba(34,197,94,0.12); 
  color: #dfffe9; 
  font-weight: 800;
  font-size: 13px;
  cursor: pointer; 
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; 
}

.login-btn:hover { 
  background: rgba(34,197,94,0.18);
  border-color: rgba(34,197,94,0.35);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Avatar i navbar */
.login-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: rgba(255,255,255,0.08); /* fallback */
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 18px rgba(0,0,0,0.35);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  display: none; /* JS viser den når logget ind */
}

.login-text{
  display: inline-block;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================
   HERO (forside)
   ========================= */
.hero { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 110px 32px 90px; 
  text-align: center; 
}

.hero h1 { 
  font-size: 42px; 
  font-weight: 700; 
  margin-bottom: 16px; 
}

.subtitle { 
  max-width: 650px; 
  margin: 0 auto 90px; 
  color: #b5b5b5; 
  line-height: 1.6; 
}

/* FEATURES */
.features { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 28px; 
  margin-bottom: 130px; 
}

.feature-card { 
  background: linear-gradient(180deg, #151515, #0f0f0f); 
  border-radius: 20px; 
  padding: 26px; 
  border: 1px solid #242424; 
  transition: transform .25s, box-shadow .25s; 
}

.feature-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 25px 50px rgba(0,0,0,0.6); 
}

.feature-image { 
  height: 160px; 
  border-radius: 14px; 
  background-size: cover;
  background-position: center;
  margin-bottom: 22px; 
  position: relative;
  overflow: hidden;
}

/* BADGES (forside) */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
}

.badge.green { background: rgba(34, 197, 94, 0.85); }
.badge.blue { background: rgba(96, 165, 250, 0.85); }

.feature-card h3 { 
  font-size: 18px; 
  margin-bottom: 8px; 
}

.feature-card p { 
  font-size: 14px; 
  color: #b5b5b5; 
  line-height: 1.5; 
}

/* CTA */
.cta h2 { 
  font-size: 28px; 
  margin-bottom: 10px; 
}

.cta p { 
  max-width: 560px; 
  margin: 0 auto 30px; 
  color: #b5b5b5; 
  font-size: 14px; 
}

.cta-btn { 
  padding: 14px 40px; 
  border-radius: 999px; 
  border: none; 
  background: #22c55e;
  color: #ffffff;
  font-weight: 600; 
  font-size: 15px; 
  cursor: pointer; 
  transition: 0.2s; 
}

.cta-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) { 
  .features { grid-template-columns: 1fr; } 
  .hero h1 { font-size: 34px; } 
}

/* skjul center nav lidt senere (mobil) */
@media (max-width: 760px) { 
  .nav-center { display: none; } 
  .navbar{ padding: 0 16px; }
}

/* =========================
   MODAL (fælles)
   ========================= */
.modal {
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: linear-gradient(180deg, #1a1a1a, #0b0b0b);
  padding: 28px 36px;
  border-radius: 18px;
  max-width: 520px;
  width: calc(100% - 28px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.65);
  position: relative;
  color: #eaeaea;
  transform: translateY(-20px) scale(.985);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-content h2 { margin-bottom: 12px; }
.modal-content p { margin-bottom: 12px; line-height: 1.65; color: #b5b5b5; }

/* close x */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #eaeaea;
  transition: 0.2s;
}

.close-btn:hover { color: #ffffff; transform: scale(1.07); }

/* =========================
   PRODUCTS PAGE
   ========================= */
.products-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 24px 70px;
}

.products-header{ margin-bottom: 16px; }

.products-title{
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.products-desc{
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

/* controls row */
.products-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.products-left{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.products-right{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* tabs */
.tabs{
  display:flex;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid #1f1f1f;
}

.tab{
  border:none;
  background: transparent;
  color: #eaeaea;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: .2s;
  opacity: .85;
}

.tab:hover{ 
  opacity: 1; 
  transform: translateY(-1px); 
}

.tab.active{
  background: #eaeaea;
  color: #0b0b0b;
  opacity: 1;
}

/* checkbox */
.fav-only{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: rgba(255,255,255,.02);
  font-size: 13px;
  color: #eaeaea;
}

.fav-only input{
  width: 16px;
  height: 16px;
  accent-color: #22c55e;
}

/* search */
.search{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: rgba(255,255,255,.02);
  min-width: 280px;
}

.search svg{ opacity:.7; }

.search input{
  width: 100%;
  border:none;
  outline:none;
  background: transparent;
  color: #eaeaea;
  font-size: 13px;
}

.search input::placeholder{ color: #9a9a9a; }

/* grid */
.products-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* product card */
.p-card{
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border: 1px solid #262626;
  border-radius: 16px;
  overflow:hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  min-height: 290px;
}

.p-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  border-color: #323232;
}

.p-thumb{
  height: 150px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid #1f1f1f;
  overflow:hidden;
}

.p-badge-row{
  position:absolute;
  left: 12px;
  top: 12px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: calc(100% - 56px);
}

.p-badge{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  color: #fff;
  user-select:none;
  white-space: nowrap;
  background: rgba(0,0,0,.35);
}

.p-badge.green{ background: rgba(34,197,94,.18); border-color: rgba(34,197,94,.35); }
.p-badge.blue { background: rgba(96,165,250,.18); border-color: rgba(96,165,250,.35); }
.p-badge.amber{ background: rgba(245,158,11,.18); border-color: rgba(245,158,11,.35); }
.p-badge.pink { background: rgba(244,114,182,.18); border-color: rgba(244,114,182,.35); }

.p-content{
  padding: 14px 16px 16px;
  text-align:left;
}

.p-row1{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.p-name{
  font-size: 15px;
  font-weight: 800;
}

.p-pill{
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(96,165,250,.10);
  border: 1px solid rgba(96,165,250,.22);
  color: #cfe6ff;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.p-price{
  display: flex;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 6px;
  gap: 6px;
}

.p-price-label{
  font-size: 13px;
  font-weight: 600;
  color: #b5b5b5;
}

.p-price-glow{
  font-size: 13px;
  font-weight: 800;
  color: #22c55e;
  text-shadow: 0 0 6px rgba(34,197,94,0.5);
}

.p-actions{
  display:flex;
  gap: 10px;
  margin-top: 14px; 
}

.p-info-btn{
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #2f2f2f;
  background: rgba(255,255,255,.02);
  color: #eaeaea;
  font-weight: 700;
  cursor:pointer;
  transition: .2s;
}
.p-info-btn:hover{
  background: #eaeaea;
  color: #0b0b0b;
}

.p-buy-btn{
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #22c55e;
  color: #fff;
  font-weight: 800;
  cursor:pointer;
  transition: .2s;
}
.p-buy-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(34,197,94,.25);
}

.products-empty{
  color: #b5b5b5;
  font-size: 14px;
  padding-top: 6px;
}

/* =========================
   PRODUKT INFO MODAL
   ========================= */
.modal-content.modal-product{
  max-width: 920px;
  width: min(920px, calc(100% - 28px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(14,14,14,0.86);
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

/* top */
.pm-top{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  margin-bottom: 14px;
}

.pm-thumb{
  height: 280px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background-size: cover;
  background-position: center;
  background-color: #141414;
  position: relative;
  overflow:hidden;
}

/* subtilt overlay */
.pm-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.55));
  pointer-events:none;
}

.pm-head{
  padding: 6px 4px 6px 2px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.pm-badges{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
}

.pm-title{
  font-size: 28px;
  font-weight: 950;
  letter-spacing: .2px;
  margin: 0;
}

.pm-sub{
  color:#b8b8b8;
  line-height: 1.6;
  font-size: 14px;
}

/* pris + kategori */
.pm-priceRow{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.pm-price{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.pm-body{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

.pm-body h3{
  font-size: 13px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: #d7d7d7;
  margin-bottom: 10px;
}

.pm-body p{
  color:#b5b5b5;
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 14px;
}

.pm-list{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.pm-panel{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.03);
}

.pm-panelTitle{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: #e7e7e7;
  margin-bottom: 10px;
}

.pm-panel ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color:#b5b5b5;
  font-size: 13px;
}

.pm-panel li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pm-panel li::before{
  content:"";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(96,165,250,0.95);
  box-shadow: 0 0 0 4px rgba(96,165,250,0.12);
  flex: 0 0 auto;
}

.pm-panel:last-child li::before{
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

/* actions */
.pm-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ghost-btn{
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #2f2f2f;
  background: transparent;
  color: #eaeaea;
  font-weight: 800;
  cursor: pointer;
  transition: .2s;
}
.ghost-btn:hover{
  background:#eaeaea;
  color:#0b0b0b;
}

/* =========================
   PROFIL MODAL
   ========================= */
.modal-content.modal-profile{
  max-width: 720px;
  background: rgba(14,14,14,.95);
}

/* top row */
.profile-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top: 10px;
  margin-bottom:16px;
}

.profile-avatar{
  width:60px;
  height:60px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08); /* fallback */
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 30px rgba(0,0,0,0.40);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.profile-meta{
  display:flex;
  flex-direction: column;
  gap: 4px;
}

.profile-label{
  font-size: 11px;
  color: #a9a9a9;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.profile-name{
  font-size: 16px;
  font-weight: 900;
}

.profile-created{
  font-size: 12px;
  color: #b5b5b5;
}

.profile-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* produkter */
.profile-products{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.profile-products-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.profile-products h3{
  margin: 0;
  font-size: 13px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: #d7d7d7;
}

.profile-products-list{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.profile-product-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.profile-product-name{
  font-weight: 900;
  font-size: 13px;
}

.profile-empty{
  color: #b5b5b5;
  font-size: 13px;
  line-height: 1.6;
}

/* download button (inde i profil) */
.profile-download{
  text-decoration: none;
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.35);
  color: #dfffe9;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  transition: .18s ease;
}
.profile-download:hover{
  background: rgba(34,197,94,0.22);
  transform: translateY(-1px);
}

/* =========================
   RESPONSIVE (products + modal)
   ========================= */
@media (max-width: 980px){
  .products-grid{ grid-template-columns: 1fr 1fr; }
  .search{ min-width: 240px; }
  .pm-top{ grid-template-columns: 1fr; }
  .pm-thumb{ height: 230px; }
  .pm-list{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .products-grid{ grid-template-columns: 1fr; }
  .search{ min-width: 100%; }
}

/* =========================
   NAVBAR: logged in state
   ========================= */
.login-btn.is-logged-in{
  padding: 8px;                 /* tighter så det føles som en avatar-knap */
  background: transparent;       /* fjerner grøn baggrund */
  border-color: rgba(255,255,255,0.12);
  color: #eaeaea;
}

.login-btn.is-logged-in:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* gør avatar en smule større/nicer når logged in */
.login-btn.is-logged-in .login-avatar{
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 22px rgba(0,0,0,0.40);
}

/* skjul evt. tekst (bare for safety) */
.login-btn.is-logged-in .login-text{
  display: none !important;
}

/* =========================================================
   DISCORD AVATAR – FORCE FULL CIRCLE (index + products)
   (Denne blok løser "avatar fylder ikke hele cirklen")
   ========================================================= */
.login-avatar,
.profile-avatar{
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

/* Ens navbar avatar */
.login-avatar{
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
}

/* Ens profil avatar */
.profile-avatar{
  width: 64px !important;
  height: 64px !important;
  border-radius: 999px !important;
}
/* =========================
   OM & VILKÅR MODAL (tabs)
   ========================= */
.modal-content.modal-terms{
  max-width: 920px;
  width: min(920px, calc(100% - 28px));
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(14,14,14,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}

.terms-title{
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.terms-tabs{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 520px;
  margin: 0 auto 18px;
}

.terms-tab{
  border: none;
  background: transparent;
  color: #eaeaea;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  opacity: .85;
  transition: .2s;
}

.terms-tab:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.terms-tab.active{
  background: rgba(234,234,234,0.92);
  color: #0b0b0b;
  opacity: 1;
}

.terms-panel{
  display: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 18px;
  padding: 18px 18px;
}

.terms-panel.show{ display: block; }

.terms-h3{
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.terms-h4{
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 900;
}

.terms-muted{
  color: #b5b5b5;
  line-height: 1.6;
  font-size: 13px;
  margin-bottom: 12px;
}

.terms-p{
  color: #c9c9c9;
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 10px;
}

.terms-ul{
  margin: 8px 0 10px;
  padding-left: 18px;
  color: #c9c9c9;
  line-height: 1.75;
  font-size: 14px;
}

.terms-ul li{ margin: 6px 0; }
