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

body{
font-family:“Yu Gothic”,sans-serif;
background:linear-gradient(
180deg,
#0f172a,
#1e293b,
#312e81
);
color:white;
min-height:100vh;
}

header{
text-align:center;
padding:40px 20px;
}

header h1{
font-size:3rem;
color:#ffd700;
margin-bottom:10px;
}

header p{
color:#ddd;
}

.container{
width:90%;
max-width:800px;
margin:auto;
}

.card{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(8px);
border-radius:20px;
padding:30px;
text-align:center;
box-shadow:0 0 20px rgba(255,255,255,.2);
}

select{
width:100%;
padding:12px;
border:none;
border-radius:10px;
margin:20px 0;
font-size:16px;
}

button{
background:#ffd700;
color:#000;
border:none;
padding:12px 30px;
border-radius:10px;
font-size:18px;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:scale(1.05);
}

.fortune-box{
margin-top:25px;
background:rgba(255,255,255,.1);
border-radius:15px;
padding:20px;
text-align:left;
}

.fortune-box h3{
text-align:center;
color:#ffd700;
margin-bottom:20px;
}

.fortune-box p{
margin-bottom:15px;
line-height:1.8;
font-size:18px;
}