html,body{margin:0;padding:0;background:#000;color:#eee;font-family:'Segoe UI',sans-serif;overflow:hidden;height:100vh;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}canvas{position:fixed;top:0;left:0;z-index:-1}h1{font-size:8vw;margin:0;background:linear-gradient(90deg,#ff6a00,#ee0979);-webkit-background-clip:text;-webkit-text-fill-color:transparent;animation:fadeIn 2s ease forwards}p{font-size:1.2em;max-width:600px;margin:20px auto;opacity:0;animation:fadeIn 3s ease forwards;animation-delay:1s}a.button{display:inline-block;margin-top:30px;padding:12px 24px;background:#ee0979;color:#fff;text-decoration:none;border-radius:30px;font-weight:700;transition:background .3s ease;opacity:0;animation:fadeIn 3s ease forwards;animation-delay:2s}a.button:hover{background:#ff6a00}@keyframes fadeIn{to{opacity:1}}