body.landing-page{background:#000;height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;animation:screenFlicker 3s infinite alternate}.landing-page-container{background:rgb(255 255 255 / .1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:20px;padding:40px;max-width:600px;text-align:center;box-shadow:0 4px 30px rgb(255 255 255 / .1);border:1px solid #fff;border:1px solid rgb(255 255 255 / .2);animation:fadeIn 2s ease-in-out}.landing-page-title{font-size:2.8rem;color:#fff;text-transform:uppercase;font-weight:800;letter-spacing:3px;text-shadow:0 0 10px rgb(255 255 255 / .5),0 0 20px rgb(255 255 255 / .3);animation:glowText 2s infinite alternate ease-in-out}.landing-page-text{font-size:1.3rem;color:rgb(255 255 255 / .85);margin:20px 0;animation:fadeInText 3s ease-in-out}.vip-access-button{display:inline-block;padding:15px 35px;font-size:1.2rem;color:#000;background:linear-gradient(135deg,#ffcc00,#ff9900);border-radius:30px;text-decoration:none;font-weight:700;transition:0.4s ease-in-out;box-shadow:0 0 20px rgb(255 204 0 / .5);position:relative;overflow:hidden;animation:spotlightGlow 3s infinite alternate ease-in-out}.vip-access-button:hover{background:linear-gradient(135deg,#ffd700,#ff7700);box-shadow:0 0 35px rgb(255 204 0 / .8);transform:scale(1.1)}.vip-access-button::before{content:"";position:absolute;top:50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgb(255 255 255 / .4) 0%,transparent 60%);transform:rotate(30deg);animation:moveSpotlight 4s linear infinite}@keyframes fadeIn{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}@keyframes glowText{from{text-shadow:0 0 10px rgb(255 255 255 / .5),0 0 20px rgb(255 255 255 / .3)}to{text-shadow:0 0 15px rgb(255 255 255 / .8),0 0 30px rgb(255 255 255 / .5)}}@keyframes fadeInText{from{opacity:0}to{opacity:1}}@keyframes spotlightGlow{from{box-shadow:0 0 20px rgb(255 204 0 / .5)}to{box-shadow:0 0 40px rgb(255 204 0 / .8)}}@keyframes moveSpotlight{0%{top:-50%;left:-50%}100%{top:150%;left:150%}}@keyframes screenFlicker{0%,100%{opacity:1}50%{opacity:.98}}