*{
margin:0;
padding:0;
box-sizing:border-box;
}

.launch-message{
    margin:30px 0;
    padding:25px;
    background:rgba(255,255,255,.65);
    border-radius:20px;
    color:#5a3a1d;
    line-height:1.8;
}

.socials{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:25px;
}

.socials a{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffff;
    color:#ff6b00;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s ease;
}

.socials a:hover{
    transform:translateY(-5px) scale(1.08);
    background:#ff6b00;
    color:#ffff;
    box-shadow:0 12px 30px rgba(255,107,0,.35);
}

.launch-message h3{
    color:#ff6b00;
    margin-bottom:10px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg,#fff8f0,#ffe9d6,#fff4e8);
    overflow-x: hidden;
    overflow-y: auto;
}

.card{

    max-width:700px;

    width:100%;

    padding:40px;

}

.background-blur{

position:absolute;
border-radius:50%;
filter:blur(120px);

}

.blur1{

width:350px;
height:350px;
background:#ff8d3b;
top:-100px;
left:-80px;

}

.blur2{

width:300px;
height:300px;
background:#ffcb80;
bottom:-120px;
right:-100px;

}

.blur3{

width:220px;
height:220px;
background:#ffd8b4;
top:50%;
left:50%;
transform:translate(-50%,-50%);

}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.card{

position:relative;

max-width:720px;
width:100%;

padding:50px;

text-align:center;

background:rgba(255,255,255,.65);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.7);

border-radius:30px;

box-shadow:

0 25px 60px rgba(0,0,0,.12);

animation:fade .8s ease;

}

.logo-wrapper img{
    width:180px;
    animation:float 5s ease-in-out infinite;
}

.badge{

display:inline-block;

margin:15px 0;

padding:8px 20px;

background:#fff;

border-radius:50px;

font-size:.9rem;

color:#ff6d00;

font-weight:600;

}

h1{

font-size:3.3rem;

font-weight:800;

color:#352116;

}

h1 span{

display:block;

color:#ff6b00;

font-size:2rem;

}

h2{

margin-top:12px;

font-weight:600;

color:#59331c;

}

p{

margin:25px auto;

max-width:600px;

line-height:1.8;

color:#555;

}

#countdown{

display:flex;

justify-content:center;

gap:18px;

margin:35px 0;

flex-wrap:wrap;

}

#countdown div{

background:white;

padding:20px;

border-radius:20px;

min-width:90px;

box-shadow:0 15px 25px rgba(0,0,0,.08);

}

#countdown span{

font-size:2rem;

font-weight:700;

display:block;

color:#ff6d00;

}

small{

color:#777;

}

.subscribe{

display:flex;

gap:12px;

margin:25px auto;

max-width:520px;

}

.subscribe input{

flex:1;

padding:18px;

border:none;

border-radius:60px;

outline:none;

font-size:16px;

}

.subscribe button{

padding:18px 35px;

border:none;

cursor:pointer;

border-radius:60px;

font-size:16px;

font-weight:700;

color:white;

background:

linear-gradient(135deg,#ff7a00,#ff5200);

transition:.3s;

}

.subscribe button:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(255,90,0,.3);

}

footer{

margin-top:35px;

font-size:14px;

color:#777;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

@keyframes fade{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

@media(max-width:768px){

.card{

padding:30px 20px;

}

.logo-wrapper img{

width:170px;

}

h1{

font-size:2.3rem;

}

h1 span{

font-size:1.5rem;

}

.subscribe{

flex-direction:column;

}

.subscribe button{

width:100%;

}

}