@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Space+Mono:wght@400;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap'); :root { --red-deep: #6e1f2c; --red-mid: #9c3430; --red-warm: #c04a3a; --gold: #e3b567; --gold-soft: #f0cf94; --cream: #f7ecdc; --ink: #2b1512; } * { box-sizing: border-box; } html, body { margin: 0; padding: 0; overflow-x: hidden; } body { font-family: 'Lora', Georgia, serif; color: var(--ink); background: linear-gradient(160deg, var(--red-deep) 0%, var(--red-mid) 48%, var(--red-warm) 100%); background-attachment: fixed; position: relative; min-height: 100vh; } body::before { content: ""; position: fixed; inset: 0; background: radial-gradient(ellipse at center, transparent 40%, rgba(20, 6, 8, 0.35) 100%); pointer-events: none; z-index: 0; } /* ---------- decorative layer: ribbons + CDs ---------- */ .bg-decor { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; } .ribbon { position: absolute; width: 60vw; height: 26px; border-radius: 999px; background: linear-gradient(90deg, transparent, var(--gold-soft) 20%, var(--cream) 50%, var(--gold) 80%, transparent); opacity: 0; } .ribbon-1 { top: 12%; left: -30vw; animation: fly-1 16s ease-in-out infinite; } .ribbon-2 { top: 48%; left: -40vw; height: 18px; animation: fly-2 22s ease-in-out infinite 4s; } .ribbon-3 { top: 78%; left: -35vw; height: 14px; animation: fly-3 19s ease-in-out infinite 9s; } @keyframes fly-1 { 0% { transform: translate(0, 0) rotate(-14deg); opacity: 0; } 12% { opacity: 0.35; } 50% { transform: translate(70vw, -6vh) rotate(-14deg); opacity: 0.35; } 88% { opacity: 0.35; } 100% { transform: translate(140vw, -14vh) rotate(-14deg); opacity: 0; } } @keyframes fly-2 { 0% { transform: translate(0, 0) rotate(9deg); opacity: 0; } 12% { opacity: 0.28; } 50% { transform: translate(80vw, 5vh) rotate(9deg); opacity: 0.28; } 88% { opacity: 0.28; } 100% { transform: translate(150vw, 10vh) rotate(9deg); opacity: 0; } } @keyframes fly-3 { 0% { transform: translate(0, 0) rotate(-6deg); opacity: 0; } 12% { opacity: 0.22; } 50% { transform: translate(75vw, -4vh) rotate(-6deg); opacity: 0.22; } 88% { opacity: 0.22; } 100% { transform: translate(145vw, -8vh) rotate(-6deg); opacity: 0; } } .cd { position: absolute; border-radius: 50%; animation: drift ease-in-out infinite alternate; } .cd-1 { width: 170px; height: 170px; left: -70px; top: 14%; animation-duration: 9s; } .cd-2 { width: 110px; height: 110px; right: -40px; top: 30%; animation-duration: 7s; animation-delay: 1s; } .cd-3 { width: 130px; height: 130px; left: -55px; bottom: 16%; animation-duration: 10s; animation-delay: 2s; } .cd-4 { width: 90px; height: 90px; right: -30px; bottom: 8%; animation-duration: 6s; animation-delay: 0.5s; } @keyframes drift { from { transform: translateY(0); } to { transform: translateY(-26px); } } .cd-disc { display: block; width: 100%; height: 100%; border-radius: 50%; position: relative; background: conic-gradient(from 200deg, #f2f2f2, #cfe0ec, #f2f2f2, #e6cbe8, #f2f2f2, #cdeadd, #f2f2f2); box-shadow: 0 8px 24px rgba(20, 6, 8, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.6); opacity: 0.5; animation: spin 6s linear infinite; } .cd-1 .cd-disc { animation-duration: 5s; } .cd-2 .cd-disc { animation-duration: 4s; } .cd-3 .cd-disc { animation-duration: 6.5s; } .cd-4 .cd-disc { animation-duration: 3.5s; } .cd-disc::after { content: ""; position: absolute; top: 50%; left: 50%; width: 20%; height: 20%; background: var(--red-deep); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 3px rgba(20, 6, 8, 0.2); } @keyframes spin { to { transform: rotate(360deg); } } /* ---------- header + nav (menu sits on the right) ---------- */ .site-header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px clamp(20px, 5vw, 56px); background: rgba(20, 6, 8, 0.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border-bottom: 1px solid rgba(227, 181, 103, 0.35); } .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; } .logo-disc { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: repeating-radial-gradient(circle at center, #1c0f0d 0, #1c0f0d 2px, #2c1917 3px, #2c1917 4px); box-shadow: 0 0 0 2px rgba(227, 181, 103, 0.5); position: relative; animation: spin 5s linear infinite; } .logo-disc::after { content: ""; position: absolute; top: 50%; left: 50%; width: 38%; height: 38%; background: var(--gold); border-radius: 50%; transform: translate(-50%, -50%); } .logo-text { font-family: 'Righteous', sans-serif; font-size: 1.6rem; letter-spacing: 0.02em; color: var(--cream); text-shadow: 0 0 18px rgba(227, 181, 103, 0.45); } .site-nav ul { display: flex; gap: clamp(14px, 3vw, 30px); list-style: none; margin: 0; padding: 0; } .site-nav a { font-family: 'Space Mono', monospace; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--cream); position: relative; padding-bottom: 4px; } .site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 2px; background: var(--gold); transition: width 0.25s ease; } .site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; } .site-nav a:hover, .site-nav a:focus-visible { color: var(--gold-soft); } .site-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; } /* ---------- content card ---------- */ .content-card { position: relative; z-index: 1; max-width: 700px; margin: 8vh auto 10vh; padding: clamp(28px, 4vw, 48px); background: var(--cream); border-radius: 20px; box-shadow: 0 24px 60px rgba(15, 4, 5, 0.4); } .content-card h2 { font-family: 'Righteous', sans-serif; color: var(--red-deep); font-size: 1.8rem; margin-top: 0; } .content-card h3 { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.95rem; color: var(--red-mid); border-bottom: 1px dashed rgba(110, 31, 44, 0.3); padding-bottom: 8px; margin-top: 2.2em; } .content-card p { line-height: 1.7; } .content-card a { color: var(--red-mid); text-decoration-color: var(--gold); } .entry-list { list-style: none; margin: 0; padding: 0; } .entry-list li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid rgba(110, 31, 44, 0.12); } .entry-list li::before { content: "◎"; position: absolute; left: 0; color: var(--gold); } /* ---------- footer ---------- */ .site-footer { position: relative; z-index: 1; text-align: center; padding: 20px; font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--gold-soft); } .site-footer a { color: var(--cream); } /* ---------- responsive + motion ---------- */ @media (max-width: 640px) { .cd-3, .cd-4, .ribbon-3 { display: none; } .site-header { justify-content: center; text-align: center; } } @media (prefers-reduced-motion: reduce) { .cd, .cd-disc, .ribbon, .logo-disc { animation: none !important; } }