-face{
  font-family:'Defused';
  src:url('../fonts/defused/Defused.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:#0b0d10;
  --bg2:#0f1217;
  --text:#e9edf2;
  --muted:rgba(233,237,242,.72);
  --card:rgba(22,26,33,.78);
  --card2:rgba(22,26,33,.92);
  --border:rgba(255,255,255,.08);
  --border2:rgba(255,255,255,.12);
  --shadow:0 18px 50px rgba(0,0,0,.55);
  --shadow2:0 10px 24px rgba(0,0,0,.35);
  --accent:#ff4d5a;
  --accent2:#0dcaf0;
  --radius:18px;
}

html{scroll-behavior:smooth;}

body{
  background:
    radial-gradient(1200px 520px at 50% -10%, rgba(255,77,90,.18), rgba(0,0,0,0)),
    radial-gradient(900px 420px at 90% 10%, rgba(13,202,240,.12), rgba(0,0,0,0)),
    radial-gradient(800px 380px at 10% 20%, rgba(255,255,255,.06), rgba(0,0,0,0)),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.1px;
}

/* Subtle "texture" without images */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, rgba(0,0,0,0) 1px 6px);
  opacity:.08;
  mix-blend-mode:overlay;
  z-index:0;
}

/* Keep content above the texture */
body > *{position:relative; z-index:1;}

a{color:inherit;}

.ftitle{font-family:'Defused', system-ui, sans-serif; letter-spacing:1px;}

.section-pad{padding:4rem 0;}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-size:.9rem;
  color:rgba(255,255,255,.72);
  letter-spacing:.14em;
  text-transform:uppercase;
}

.kicker::before{
  content:"";
  width:34px;
  height:2px;
  background:linear-gradient(90deg, var(--accent), rgba(255,77,90,0));
}

/* Navbar */
.navbar.terminus-nav{
  background:rgba(0,0,0,.55) !important;
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.terminus-nav .nav-link{
  color:rgba(255,255,255,.78);
  transition: color .18s ease, opacity .18s ease;
}

.navbar.terminus-nav .nav-link:hover{color:var(--accent2);}

.navbar.terminus-nav .nav-link.active{color:#fff;}

/* Hero */
.hero-wrap{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 50% 20%, rgba(255,77,90,.20), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(0,0,0,.80), rgba(0,0,0,.55), rgba(0,0,0,.85));
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-blurb{max-width:62ch; color:rgba(255,255,255,.78);}

/* Glass surfaces */
.glass{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-strong{background:var(--card2);}

.glow-border{
  position:relative;
}

.glow-border::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:calc(var(--radius) + 1px);
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,77,90,.35), rgba(13,202,240,.20), rgba(255,255,255,0));
  opacity:.25;
  filter: blur(10px);
  z-index:-1;
}

/* Cards */
.t-card{
  height:100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.t-card:hover{
  transform: translateY(-4px);
  box-shadow:var(--shadow);
  border-color:rgba(13,202,240,.22);
}

.t-title{color:var(--accent);}

.pill{
  display:inline-block;
  padding:.18rem .56rem;
  border-radius:999px;
  background:rgba(13,202,240,.12);
  border:1px solid rgba(13,202,240,.22);
  color:#9ee7f5;
  font-size:.85rem;
  vertical-align:baseline;
  white-space:nowrap;
}

/* Buttons */
.btn-terminus{
  background:linear-gradient(180deg, rgba(255,77,90,.95), rgba(255,77,90,.78));
  border:1px solid rgba(255,77,90,.35);
  color:#fff;
  box-shadow:0 10px 25px rgba(255,77,90,.18);
}

.btn-terminus:hover{
  color:#fff;
  filter:saturate(1.05);
}

.btn-discord{
  background:linear-gradient(180deg, rgba(88,101,242,.95), rgba(88,101,242,.78));
  border:1px solid rgba(88,101,242,.35);
  color:#fff;
  box-shadow:0 10px 25px rgba(88,101,242,.18);
}

.btn-discord:hover{color:#fff; filter:saturate(1.05);}

/* Accordion */
.accordion.terminus-accordion .accordion-item{
  background:transparent;
  border:0;
  margin-bottom:12px;
}

.accordion.terminus-accordion .accordion-button{
  border-radius:var(--radius) !important;
  background:var(--card);
  border:1px solid var(--border);
  color:#fff;
  box-shadow:var(--shadow2);
}

.accordion.terminus-accordion .accordion-button:not(.collapsed){
  border-color:rgba(255,77,90,.26);
  box-shadow:var(--shadow);
}

.accordion.terminus-accordion .accordion-button:focus{box-shadow:none;}

.accordion.terminus-accordion .accordion-body{
  margin-top:10px;
  background:var(--card2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  color:rgba(255,255,255,.90);
}

/* Lists */
.list-clean{list-style:none; padding-left:0; margin:0; color: white;}
.list-clean li{padding:.5rem 0; border-top:1px solid rgba(255,255,255,.06);}
.list-clean li:first-child{border-top:0;}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease;}
.reveal.is-in{opacity:1; transform:none;}

/* Footer */
footer.terminus-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.40);
  color:rgba(255,255,255,.62);
}

/* Scroll top */
.scroll-top{
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: none;
  z-index: 1050;
}

/* Utility */
.text-muted-soft{color: white !important;}

.card p {
    color: rgba(255, 255, 255, 0.82);
}

.card h3 {
    color: #ffffff;
    font-weight: 600;
}

.card .role {
    color: #60a5fa; /* enyhe kék akcent */
}

card {
    background: rgba(20, 28, 40, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}

.card:hover {
    transform: translateY(-6px);
    background: rgba(30, 40, 55, 0.85);
}

.card-title
{
    color: aliceblue;
    font-size: 1.25rem;
    font-weight: 700;
}
.text-muted {
    color: rgba(255, 255, 255, 0.72) !important;
}