/*
Theme Name: NewcastleRP Console Dark – City
Theme URI: https://newcastlerp.website
Author: NewcastleRP
Description: Dark console-friendly WordPress theme with an urban city background. Shop + Applications focused.
Version: 1.0
License: GPL v2 or later
Text Domain: newcastlerp-console-dark-city
*/

:root{
  --bg:#0b0d12;
  --panel:#141823;
  --border:#242a3a;
  --text:#e6e9f0;
  --muted:#a3acc2;
  --accent:#ff6a00;
  --radius:12px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(11,13,18,.92), rgba(11,13,18,.92)),
    url('https://images.unsplash.com/photo-1508057198894-247b23fe5ade?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

a{color:var(--accent);text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 18px}

header{
  position:sticky;top:0;z-index:99;
  background:rgba(10,12,18,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

nav{display:flex;align-items:center;gap:18px;padding:14px 0}
nav .logo{font-weight:800;font-size:20px}
nav ul{list-style:none;display:flex;gap:14px;margin-left:auto;padding:0}
nav ul li a{padding:10px 14px;border-radius:10px;color:var(--muted)}
nav ul li a:hover{background:rgba(255,255,255,.05);color:#fff}

.hero{padding:70px 0}
.hero-box{
  background:rgba(20,24,35,.88);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:36px;
}

.buttons{display:flex;gap:14px;margin-top:22px}
.btn{
  padding:14px 18px;
  border-radius:12px;
  font-weight:700;
  background:var(--accent);
  color:#fff;
}

.section{padding:40px 0}
.card{
  background:rgba(20,24,35,.9);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
}

footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  text-align:center;
  color:var(--muted);
}
