*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #0b0d11; color: #e8e6e3; overflow-x: hidden; }
a { color: inherit; }
:root {
  --bg-body: #0b0d11;
  --bg-dark: #11121b;
  --bg-darker: #151921;
  --accent: #a72943;
  --accent-secondary: #cf304e;
  --text: #e8e6e3;
  --text-muted: #c8c6c1;
  --text-dim: #c8c6c1;
  --border: #1e2a3a;
  --green: #33c748;
}
h1, h2, h3, h4 { font-style: normal; }
.container { margin: 0 auto; padding: 0 24px; }
h1 .highlighted { color: var(--accent); }
h2 .highlighted { color: var(--accent-secondary); }

h1 {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins';
}

h2 {
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  font-family: 'Poppins';
  color: #010028;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
}

.hidden.left {
  transform: translateX(-100%);
}

.hidden.right {
  transform: translateX(100%);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

.animate {
  transition: 1s all;
}

.glass-card {
  background: linear-gradient(145deg, rgba(21,25,33,.9), rgba(26,32,48,.6));
  border: 1px solid var(--border); border-radius: 12px;
  position: relative; overflow: hidden; transition: all .3s;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  opacity: 0; transition: opacity .3s;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { border-color: rgba(255,255,255,.08); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,.25); }

.sh2-dark { font-size: 46px; font-weight: 900; font-style: italic; color: #fff; text-align: center; margin-bottom: 12px; }
.sh2-light { font-size: 46px; font-weight: 900; font-style: italic; color: #010028; text-align: center; margin-bottom: 12px; }
.ssub-dark { color: var(--text-muted); text-align: center; font-size: 16px; margin-bottom: 48px; }
.ssub-light { color: #444; text-align: center; font-size: 16px; margin-bottom: 48px; }
