body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

/* NAV WRAPPER (KEY FIX) */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* TOP BAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: #000;
  border-bottom: 1px solid #111;
}

.top-links {
  display: flex;
  gap: 18px;
}

.top-links a {
  color: white;
  text-decoration: none;
  opacity: 0.75;
  font-size: 14px;
}

.top-links a:hover {
  opacity: 1;
}

/* SUB BAR */
.subbar {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  background: #0a0a0a;
  border-bottom: 1px solid #111;
}

.sub-left,
.sub-right {
  display: flex;
  gap: 18px;
}

.subbar a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  font-size: 13px;
}

.subbar a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 200px 60px 60px;
  gap: 60px;
}

/* LEFT = FACE */
.hero-left {
  width: 40%;
  display: flex;
}

.face {
  width: 100%;
  height: 460px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* fade */
.face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #050505 0%, transparent 50%);
}

/* RIGHT CONTENT */
.hero-right {
  width: 60%;
}

.cards {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.card {
  background: #111;
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumb {
  height: 90px;
  background: #222;
}

/* ABOUT */
.about {
  padding: 60px;
}

/* DISCLAIMER */
.disclaimer {
  padding: 70px 60px;
  background: #0a0a0a;
  text-align: center;
}

.disclaimer h2 {
  margin-bottom: 40px;
}

.disclaimer-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.box {
  width: 320px;
  text-align: left;
}

/* FOOTER */
footer {
  background: #000;
  padding: 60px;
  margin-top: 80px;
}

.footer-line {
  height: 1px;
  margin: 30px 0;
  background: linear-gradient(to right, transparent, white, transparent);
  opacity: 0.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ================= BLOG PAGE ================= */

.blog-header {
  padding: 180px 60px 40px;
}

.blog-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.blog-header p {
  opacity: 0.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 60px 80px;
}

.blog-card {
  background: #111;
  padding: 15px;
  text-decoration: none;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  background: #151515;
}

.blog-card .thumb {
  height: 140px;
  background: #222;
}
