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

body{

font-family:'Baloo 2',cursive;

padding:20px;

background:
radial-gradient(circle at 15% 20%, rgba(255,255,255,.8) 0 40px, transparent 41px),
radial-gradient(circle at 80% 18%, rgba(255,255,255,.8) 0 55px, transparent 56px),

linear-gradient(
135deg,
#7ec8f2,
#a8ddf0,
#fff4c4,
#ffd6e8,
#c2f0d0
);

background-attachment:fixed;

overflow-x:hidden;

}

.container{

width:calc(100% - 40px);

max-width:700px;

margin:40px auto;

padding:25px;

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

border-radius:25px;

box-shadow:0 5px 20px rgba(0,0,0,.15);

position:relative;

z-index:2;

overflow:hidden;

font-size:19px;

line-height:1.7;

}

.logo{

display:block;

margin:auto;

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0);}

}

h1{

margin-top:10px;

margin-bottom:15px;

text-align:center;

color:#ff69b4;

font-size:42px;

animation:pulse 3s infinite;

}

@keyframes pulse{

0%{transform:scale(1);}
50%{transform:scale(1.05);}
100%{transform:scale(1);}

}

p{

text-align:center;

color:#555;

}

/* ========================= */
/* SUB JUDUL */
/* ========================= */

.subtitle{

font-size:20px;

font-weight:700;

color:#ff7aa8;

margin-top:10px;

margin-bottom:10px;

line-height:1.6;

}

/* ========================= */
/* FITUR */
/* ========================= */

.features{

font-size:17px;

color:#666;

margin-bottom:30px;

line-height:1.8;

}

.menu{

display:block;

width:90%;

max-width:420px;

margin:18px auto;

padding:20px;

background:white;

border-radius:20px;

text-decoration:none;

font-size:24px;

font-weight:bold;

color:#444;

box-shadow:0 4px 15px rgba(0,0,0,.12);

transition:all .25s ease;

text-align:center;

}

.menu:hover{

transform:translateY(-5px);

box-shadow:0 10px 20px rgba(0,0,0,.18);

}

.footer{

text-align:center;

margin-top:35px;

padding-top:20px;

border-top:1px solid #eee;

font-size:15px;

line-height:1.8;

color:#666;

}

.social{

display:inline-block;

text-decoration:none;

color:#ff69b4;

font-size:15px;

font-weight:600;

margin:0;

white-space:nowrap;

transition:.3s;

}
.social:hover{

color:#ff7fb8;

transform:scale(1.05);

}

.footer-links{
display:flex;
justify-content:center;
align-items:center;
gap:8px;
flex-wrap:wrap;
margin-top:12px;
}

.footer-links span{
color:#bbb;
}

@media(max-width:768px){

.subtitle{
font-size:18px;
}

.features{
font-size:16px;
}

.logo{
width:200px;
}

h1{
font-size:38px;
}

p{
font-size:20px;
}

.menu{
font-size:28px;
padding:22px;
width:90%;
}

.footer{
font-size:14px;
}

.social{
font-size:14px;
margin:0 2px;
}

}

@media(max-width:480px){

.subtitle{
font-size:17px;
}

.features{
font-size:15px;
line-height:1.7;
}

.logo{
width:180px;
}

h1{
font-size:32px;
}

p{
font-size:18px;
}

.menu{
font-size:22px;
padding:18px;
width:95%;
}

.footer{
font-size:13px;
}

.social{
font-size:13px;
}

}

/* ========================= */
/* WELCOME */
/* ========================= */

#welcome{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;

display:flex;
justify-content:center;
align-items:center;

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

z-index:9999;
}

@keyframes welcomeHide{

to{
opacity:0;
visibility:hidden;
}

}

.welcome-box{

width:90%;
max-width:430px;

background:white;

padding:35px;

border-radius:30px;

text-align:center;

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

animation:popup .7s;

}

.ask-label{
font-size:17px;
color:#888;
margin:12px 0 8px;
}

#nameInput{
width:100%;
padding:12px 16px;
font-size:18px;
font-family:'Baloo 2',cursive;
border:2px solid #ffd1e3;
border-radius:14px;
outline:none;
text-align:center;
margin-bottom:14px;
color:#444;
transition:.2s;
box-sizing:border-box;
}

#nameInput:focus{
border-color:#ff69b4;
box-shadow:0 0 0 3px rgba(255,105,180,.15);
}

#welcomeAsk button{
width:100%;
padding:13px;
border:none;
border-radius:14px;
background:linear-gradient(160deg,#ff8fc6,#ff69b4);
color:white;
font-size:18px;
font-weight:bold;
font-family:'Baloo 2',cursive;
cursor:pointer;
box-shadow:0 5px 14px rgba(255,105,180,.4);
transition:.2s;
}

#welcomeAsk button:hover{
transform:translateY(-2px);
}

.main-greeting{
font-size:20px;
font-weight:bold;
color:#ff69b4;
margin-bottom:10px;
min-height:28px;
animation:pulse 3s infinite;
}

.change-name{
display:inline-block;
margin-top:8px;
font-size:13px;
color:#bbb;
cursor:pointer;
text-decoration:underline;
transition:.2s;
}

.change-name:hover{
color:#ff69b4;
}

@keyframes popup{

0%{
transform:scale(.7);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

/* ========================= */
/* AWAN */
/* ========================= */

.cloud{

position:fixed;
background:rgba(255,255,255,.85);
border-radius:100px;
filter:blur(2px);
z-index:1;
}

.cloud::before,
.cloud::after{

content:"";
position:absolute;
background:inherit;
border-radius:50%;

}

.cloud1{

width:170px;
height:60px;

top:100px;
left:-220px;

animation:cloudMove 45s linear infinite;

}

.cloud1::before{

width:70px;
height:70px;

left:20px;
top:-30px;

}

.cloud1::after{

width:90px;
height:90px;

right:20px;
top:-40px;

}

.cloud2{

width:220px;
height:75px;

top:280px;
left:-300px;

animation:cloudMove 60s linear infinite;

animation-delay:-20s;

}

.cloud2::before{

width:90px;
height:90px;

left:30px;
top:-40px;

}

.cloud2::after{

width:110px;
height:110px;

right:30px;
top:-50px;

}

.cloud3{

width:150px;
height:50px;

top:520px;
left:-180px;

animation:cloudMove 50s linear infinite;

animation-delay:-35s;

}

.cloud3::before{

width:60px;
height:60px;

left:15px;
top:-25px;

}

.cloud3::after{

width:70px;
height:70px;

right:20px;
top:-30px;

}

@keyframes cloudMove{

0%{
transform:translate(-250px,0);
}

25%{
transform:translate(25vw,-8px);
}

50%{
transform:translate(50vw,5px);
}

75%{
transform:translate(75vw,-6px);
}

100%{
transform:translate(calc(100vw + 250px),0);
}

}

/* ========================= */
/* MUSIK TOGGLE */
/* ========================= */

#musicToggle{
position:fixed;
bottom:20px;
right:20px;
width:50px;
height:50px;
border-radius:50%;
border:none;
background:white;
box-shadow:0 4px 12px rgba(0,0,0,.2);
font-size:22px;
cursor:pointer;
z-index:100;
transition:.25s;
animation:musicBounce 1.4s ease-in-out infinite;
}

@keyframes musicBounce{
0%,100%{transform:scale(1);}
50%{transform:scale(1.15);}
}

#musicToggle:hover{
transform:scale(1.1);
animation:none;
}

/* ========================= */
/* LEBAH */
/* ========================= */

.bee{

position:fixed;

width:55px;

top:120px;

left:-80px;

z-index:50;

pointer-events:none;

animation:beeFly 18s linear infinite;

}

@keyframes beeFly{

0%{
transform:
translate(-100px,50px)
rotate(0deg);
}

15%{
transform:
translate(15vw,-20px)
rotate(15deg);
}

30%{
transform:
translate(35vw,80px)
rotate(-15deg);
}

45%{
transform:
translate(55vw,20px)
rotate(10deg);
}

60%{
transform:
translate(75vw,120px)
rotate(-20deg);
}

75%{
transform:
translate(45vw,220px)
rotate(15deg);
}

90%{
transform:
translate(85vw,70px)
rotate(-10deg);
}

100%{
transform:
translate(calc(100vw + 120px),120px)
rotate(0deg);
}

}
