* { box-sizing: border-box; } body { margin: 0; padding: 0; background-color: #0b0f19; color: #f8fafc; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; min-height: 100vh; } .container { max-width: 900px; margin: 0 auto; padding: 20px; } header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid #1e293b; } .logo { font-size: 1.8rem; font-weight: 800; color: #e11d48; } nav a { color: #94a3b8; text-decoration: none; margin-left: 20px; font-weight: 600; transition: color 0.2s; } nav a:hover { color: #38bdf8; } .hero { background: radial-gradient(circle at top right, #1e1b4b, #0f172a); border: 1px solid #312e81; border-radius: 16px; padding: 60px 40px; margin-top: 40px; text-align: center; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); } .badge { background: #0284c7; color: #fff; padding: 6px 14px; border-radius: 9999px; font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; } h1 { font-size: 2.8rem; margin: 20px 0 10px; color: #f1f5f9; } p { font-size: 1.2rem; color: #94a3b8; line-height: 1.6; max-width: 650px; margin: 0 auto 30px; } .actions { display: flex; gap: 15px; justify-content: center; } .btn { padding: 14px 28px; border-radius: 10px; font-weight: bold; text-decoration: none; transition: transform 0.2s, background 0.2s; } .btn:hover { transform: translateY(-2px); } .primary { background: #e11d48; color: #fff; } .secondary { background: #334155; color: #f8fafc; } footer { text-align: center; color: #64748b; margin-top: 60px; font-size: 0.9rem; }