/* ======= MattRifeDaily ======= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a; color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }

/* Scroll reveal */
.sr { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.v { opacity: 1; transform: none; }

/* Nav */
.nav-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background 0.4s; }
.nav-solid { background: rgba(10,10,10,0.95); border-bottom: 1px solid rgba(255,255,255,0.06); }

/* Cards */
.card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: border-color 0.3s;
}
.card:hover { border-color: rgba(255,255,255,0.14); }

/* Section alt bg */
.section-alt { background: #0e0e0e; }

/* Accent */
.accent { color: #d4a843; }
.accent-bg { background: #d4a843; }

/* Divider */
.divider { height: 1px; background: rgba(255,255,255,0.06); }
