
*{box-sizing:border-box;}
body{
margin:0;
background:#000;
color:#eee;
font-family:'Inter',sans-serif;
overflow-x:hidden;
}
.fade-in{animation:fade 1.8s ease forwards;}
@keyframes fade{from{opacity:0}to{opacity:1}}
.hero{
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}
h1{
font-family:'Playfair Display',serif;
font-size:4rem;
letter-spacing:2px;
}
h2{font-weight:300;opacity:.8}
#countdown{margin-top:20px;font-size:1.4rem;opacity:.7}
.cta{margin-top:40px}
a{
color:#fff;
text-decoration:none;
border:1px solid rgba(255,255,255,.4);
padding:12px 28px;
margin:0 8px;
transition:.4s;
}
a:hover{background:#fff;color:#000}
.secondary{opacity:.6}
.form-wrapper{
max-width:500px;
margin:80px auto;
text-align:center;
}
input,textarea{
width:100%;
margin:12px 0;
padding:14px;
background:#111;
border:1px solid #333;
color:#fff;
}
button{
margin-top:20px;
padding:14px 32px;
background:none;
border:1px solid #fff;
color:#fff;
cursor:pointer;
}
.note{opacity:.6;margin-top:20px}
#float-container{
position:relative;
width:100vw;
height:100vh;
overflow:hidden;
}
.circle{
position:absolute;
width:80px;
height:80px;
border-radius:50%;
border:1px solid rgba(255,255,255,.4);
display:flex;
align-items:center;
justify-content:center;
font-family:'Playfair Display';
cursor:pointer;
animation:float 20s infinite linear;
}
@keyframes float{
from{transform:translateY(110vh)}
to{transform:translateY(-120px)}
}
.modal{
position:fixed;
top:0;left:0;
width:100%;height:100%;
background:rgba(0,0,0,.8);
display:flex;
align-items:center;
justify-content:center;
}
.hidden{display:none}
.modal-content{
background:#000;
padding:40px;
border:1px solid #333;
max-width:600px;
}
#close{
float:right;
cursor:pointer;
}
