
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:Arial,Helvetica,sans-serif;
background:radial-gradient(circle at top,#0f4f2e,#021a10 70%);
color:#ffffff;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}
.age-wrap{
width:100%;
display:flex;
justify-content:center;
}
.age-card{
width:100%;
max-width:560px;
background:#ffffff;
color:#111111;
border-radius:18px;
padding:40px;
text-align:center;
box-shadow:0 0 45px rgba(140,198,63,.25);
}
.age-logo{
width:180px;
height:auto;
display:block;
margin:0 auto 20px;
border-radius:12px;
}
h1{
color:#0f4f2e;
font-size:34px;
margin-bottom:10px;
}
h2{
color:#8cc63f;
font-size:24px;
margin-bottom:25px;
}
p{
font-size:16px;
line-height:1.5;
margin-bottom:18px;
}
.check-line{
display:flex;
gap:10px;
text-align:left;
font-size:14px;
line-height:1.4;
margin:20px 0;
}
button{
width:100%;
background:#0f5a2b;
color:#ffffff;
border:none;
padding:15px;
font-size:18px;
font-weight:800;
border-radius:8px;
cursor:pointer;
}
.decline-link{
display:inline-block;
margin-top:20px;
color:#0f4f2e;
font-weight:700;
}
.policy-links{
margin-top:18px;
font-size:14px;
}
.policy-links a{
color:#0f4f2e;
font-weight:700;
}
@media(max-width:480px){
body{
align-items:flex-start;
padding:16px;
}
.age-card{
max-width:380px;
border-radius:14px;
padding:24px 20px;
}
.age-logo{
width:min(180px,70vw);
margin-bottom:18px;
}
h1{
font-size:30px;
line-height:1.15;
}
h2{
font-size:22px;
line-height:1.2;
margin-bottom:20px;
}
p{
font-size:15px;
margin-bottom:15px;
}
.check-line{
align-items:flex-start;
margin:18px 0;
}
.check-line input{
flex:0 0 auto;
margin-top:3px;
}
.policy-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:5px 8px;
}
}
