body { margin: 0; font-family: Arial, sans-serif; background: #09090b; color: white; } .hero { min-height: 100vh; display: flex; align-items: center; padding: 100px; background: linear-gradient( 135deg, rgba(120, 0, 0, 0.4), #09090b ); } .hero-title { font-size: 72px; font-weight: 900; line-height: 1.1; } .hero-title span { color: #ef4444; } .hero-text { color: #a1a1aa; font-size: 20px; max-width: 700px; margin-top: 20px; } .btn-primary { background: #dc2626; border: none; padding: 15px 30px; border-radius: 18px; color: white; font-weight: bold; cursor: pointer; transition: 0.3s; } .btn-primary:hover { background: #ef4444; } .card { background: #18181b; border: 1px solid #27272a; border-radius: 24px; padding: 30px; transition: 0.3s; } .card:hover { border-color: #ef4444; transform: translateY(-5px); }