/* HighSMP theme */
:root{
  --bg:#0e0e10;
  --panel:#17171a;
  --panel-2:#1d1d21;
  --text:#e8e8ee;
  --muted:#a3a3ad;
  --accent:#ffffff;
  --accent-2:#ffffff;
  --radius:24px;
  --shadow:0 10px 30px rgba(0,0,0,.35);

  /* Footer kleuren */
  --footer-bg-1:#2a2b30;
  --footer-bg-2:#24252a;
  --footer-border:#31323a;
  --footer-text:#e4e4ea;
  --footer-link:#ffffff;
  --footer-link-hover:#ffffff;
}

*{box-sizing:border-box}

/* === Sticky layout: footer altijd onderaan === */
html{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 "Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  display:flex;
  flex-direction:column;
  min-height:100svh;
  min-height:100vh;
}
main{flex:1 1 auto}

.container{width:min(1200px, 92%); margin-inline:auto}

/* Header */
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding:28px 0;
}

.brand{display:flex; align-items:center; gap:16px}
.brand__logo{width:64px; height:64px; border-radius:20px; box-shadow:var(--shadow); object-fit:cover; background:#111}
.brand__text h1{margin:0; font-size:26px; letter-spacing:.3px; color:#fff}
.brand__text p{margin:0; color:var(--muted); font-size:14px}

.nav{display:flex; gap:10px}
.btn{
  background:#ffffff; color:#000; padding:10px 16px; border-radius:14px;
  border:1px solid transparent; text-decoration:none; font-weight:600; box-shadow:var(--shadow);
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px); filter:brightness(0.9)}
.btn--ghost{background:transparent; border-color:#ffffff; color:#fff}
.btn--accent{background:#018d3b; color:#000}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:22px;
  padding-bottom:50px;
}
.card{
  background:var(--panel);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
  display:block;
  min-height:220px;
  border:1px solid #23232a;
  color:#ffffff;
  text-decoration:none;
}
.card:hover{outline:1px solid #ffffff}

/* Fix voor links in cards (zoals Discord-card) */
.card:link,
.card:visited,
.card:hover,
.card:active {
  color:#ffffff;
  text-decoration:none;
}

.card--logo{grid-column: span 4; display:flex; align-items:center; justify-content:center; background:var(--panel-2)}
.card--logo img{width:220px; height:220px; object-fit:contain}

.card--image{grid-column: span 5; background-size:cover; background-position:center}
.card__label{
  position:absolute; top:14px; left:14px; padding:10px 14px; font-weight:800; letter-spacing:.3px;
  background:#00000080; border:1px solid #ffffff20; border-radius:12px; backdrop-filter: blur(6px);
  color:#ffffff;
  text-decoration:none;
}

.card--discord{grid-column: span 3; display:flex; align-items:center; justify-content:center; text-decoration:none; color:#ffffff;}
.discord{display:flex; align-items:center; gap:16px; text-decoration:none; color:#ffffff;}
.discord__icon svg{width:54px; height:54px; fill:#ffffff}
.discord__count{
  font-size:28px;
  font-weight:800;
  color:#ffffff !important;
  text-decoration:none !important;
}
.discord__label{color:#ffffff; margin-top:4px}

.card--howto{grid-column: span 7; padding:24px; background-size:cover; background-position:center}
.card--howto h2{margin:0 0 16px 0; font-size:28px; color:#ffffff}
.fake-inputs{display:grid; grid-template-columns:1fr; gap:8px}
.fake-inputs label{font-weight:600; color:#ffffff}
.fake-input{
  background:#00000080; border:1px solid #ffffff1e; padding:12px 12px; border-radius:12px; 
  backdrop-filter: blur(4px); display:flex; align-items:center; justify-content:space-between;
}
.fake-input button.copy{background:#2b2b31; border:1px solid #3a3a45; color:#ffffff; padding:8px 12px; border-radius:10px; cursor:pointer}
.fake-input button.copy:hover{filter:brightness(1.1)}

@media (max-width: 980px){
  .card--logo{grid-column: span 12}
  .card--image{grid-column: span 12}
  .card--discord{grid-column: span 12}
  .card--howto{grid-column: span 12}
}

/* Footer */
.footer{
  background: linear-gradient(180deg, var(--footer-bg-1) 0%, var(--footer-bg-2) 100%);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
  width:100%;
  padding: 34px 0;
  margin-top:auto;
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  width:min(1200px, 92%);
  margin-inline:auto;
}

.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer__brand img{
  width:16px;
  height:16px;
  filter:brightness(2);
}

.footer__brand strong{
  letter-spacing:.5px;
  color:#fff;
  font-weight:700;
}

.footer__brand strong span{
  color:#fff;
}

.footer__brand small{
  display:block;
  color:#ffffff;
  font-size:12px;
}

.footer__links{
  display:flex;
  list-style:none;
  gap:18px;
  padding:0;
  margin:0;
}

.footer__links a,
.footer__links a:visited,
.footer__links a:hover,
.footer__links a:focus{
  color:#ffffff;
  text-decoration:none;
  font-weight:500;
  transition:opacity .2s ease;
}

.footer__links a:hover{opacity:0.8}

@media (max-width:780px){
  .footer__inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
  }
}
