/* fcd66f9a.css - White parchment background with cyan hacker theme, frosted glass, cyberpunk */ /* Design tokens */ :root{ --parchment: #f7f2e0; --ink: #0b1f1c; --cyan: #2af3ff; --cyan-dark: #0fbfbf; --glass: rgba(255,255,255,.86); --glass-border: rgba(0,0,0,.15); --shadow: 0 8px 28px rgba(0,0,0,.25); --radius: 14px; } * { box-sizing: border-box; } html, body { height: 100%; } html { font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial; } body { margin: 0; color: var(--ink); background: var(--parchment); min-height: 100vh; background-attachment: fixed; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* light parchment texture feel */ background-image: linear-gradient(0deg, rgba(0,0,0,.03), rgba(0,0,0,.03)), linear-gradient(90deg, rgba(0,0,0,.02), rgba(0,0,0,.02)); background-size: 100% 100%; position: relative; } /* Subtle decorative grain overlay via pseudo element on body */ body::before{ content:""; position: fixed; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(0,204,204,.08), transparent 40%), radial-gradient(circle at 80% 60%, rgba(0,0,0,.04), transparent 40%); pointer-events: none; mix-blend-mode: overlay; z-index: 0; } /* Layout layers */ header, main, footer { position: relative; z-index: 1; } /* Header */ header { text-align: center; padding: 1rem 1rem 0.5rem; } header h2 { margin: 0; font-size: .95rem; color: #0a1f1a; opacity: .9; } /* Main content area */ main { padding: 0 1rem; } /* Hero area: responsive grid (mobile-first) */ .hero { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center; justify-items: center; padding: 1.3rem; } /* Frosted glass panel for text */ .hero-copy { text-align: center; padding: 1.75rem; border-radius: var(--radius); max-width: 760px; background: rgba(255,255,255,.88); border: 1px solid rgba(0,0,0,.12); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); box-shadow: var(--shadow); } .hero-copy h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 .5rem; } .subhead { font-size: 1rem; color: #0f1f1a; margin-bottom: 1.25rem; } .cta { display: inline-block; padding: 1rem 1.8rem; font-weight: 700; font-size: 1.05rem; color: #062b26; text-decoration: none; border-radius: 999px; background: linear-gradient(135deg, #a9f7ff 0%, #2afbd7 60%, #0bd9c1 100%); border: 1px solid rgba(0,0,0,.15); box-shadow: 0 6px 20px rgba(0, 210, 210, .6); transition: transform .15s ease, box-shadow .15s ease; } .cta:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0, 210, 210, .8); } .cta:focus-visible { outline: 3px solid #e0ffff; outline-offset: 3px; } .hero-media { display: flex; justify-content: center; width: 100%; } .hero-media img { width: min(680px, 92%); height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,.45); } /* Footer */ footer { text-align: center; padding: 1rem; font-size: 0.92rem; } footer .advertisements a { color: #0a6c7a; text-decoration: none; border-bottom: 1px dotted rgba(10,108,122,.5); } footer .advertisements a:hover { text-decoration: underline; } footer .gratitude { margin-top: .5rem; color: #0e2d2d; } /* Desktop two-column layout: centerpiece image with copy on the left */ @media (min-width: 860px) { .hero { grid-template-columns: 1.15fr 0.85fr; gap: 2rem; padding: 2rem; } .hero-copy { text-align: left; padding: 2rem; } .hero-copy h1 { font-size: 2.4rem; } .hero-media { align-self: center; } .hero-media img { width: 100%; max-width: 740px; } }