#example{
    margin-top:25px;
    padding:25px;
    border:2px solid #ddd;
    border-radius:15px;
    background:#fffdf7;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,.1);
}

#example h3{
    color:#2e7d32;
    margin-bottom:15px;
}

#example h4{
    color:#1565c0;
    margin:15px 0 8px;
}

#example input[type=range]{
    width:220px;
}

#appleArea,
#balloonArea,
#starArea{
    font-size:36px;
    line-height:1.8;
    margin-top:20px;
}

#appleAnswer,
#balloonAnswer,
#starAnswer{
    font-size:26px;
    color:#d84315;
    font-weight:bold;
    margin-top:20px;
}
.visual-card{

    background:#fff;

    border:2px solid #e0e0e0;

    border-radius:15px;

    padding:25px;

    margin:30px 0;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

.visual-layout{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.question{

    width:45%;

    text-align:center;

}

.answer{

    width:55%;

    text-align:center;

    border-left:2px dashed #ddd;

    padding-left:30px;

}

@media(max-width:768px){

.visual-layout{

    flex-direction:column;

}

.question,
.answer{

    width:100%;

    border-left:none;

    border-top:2px dashed #ddd;

    padding-top:20px;

    padding-left:0;

}

}
.container{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}
.example-svg{
    width:100%;
    max-width:260px;
    height:auto;
}
.example-svg{
    width:100%;
    max-width:260px;
    height:auto;
    display:block;
    margin:8px auto;
}
.choice-btn{
    border:none;
    border-radius:15px;
    padding:16px 30px;
    font-size:22px;
    font-weight:bold;
    cursor:pointer;
    margin:10px;
    color:#fff;
    transition:all .3s ease;
    box-shadow:0 5px 12px rgba(0,0,0,.2);
}

.choice-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,.3);
}

.choice-btn:active{
    transform:scale(.96);
}
@media (max-width:768px){

.visual-layout{
    flex-direction:column;
    gap:20px;
}

.question,
.answer{
    width:100%;
}

.answer{
    border-left:none;
    border-top:2px dashed #ddd;
    padding-top:20px;
    padding-left:0;
}

.example-svg{
    max-width:220px;
}


}
.apple-btn{
    background:linear-gradient(135deg,#ff6b6b,#e53935);
}

.balloon-btn{
    background:linear-gradient(135deg,#42a5f5,#1e88e5);
}

.star-btn{
    background:linear-gradient(135deg,#ffd54f,#f9a825);
    color:#333;
}
.container{
    max-width:900px;
    margin:0 auto;
    padding:20px;
}
.symbol{
    font-size:34px;
    font-weight:bold;
    margin:8px 0;
}
.answer p,
.answer strong{
    font-size:24px;
    color:#2c3e50;
}
.back-home{
    text-align:center;
    margin:50px 0 20px;
}

.back-home a{
    display:inline-block;
    background:#4CAF50;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    padding:14px 30px;
    border-radius:12px;
    box-shadow:0 5px 12px rgba(0,0,0,.15);
    transition:all .3s ease;
}

.back-home a:hover{
    background:#388E3C;
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.back-home a:active{
    transform:scale(.97);
}

@media (max-width:768px){

.back-home a{
    width:90%;
    max-width:300px;
    font-size:18px;
    padding:14px;
}

}
/* ===== Quick Help ===== */

.quick-help{
    max-width:750px;
    margin:40px auto;
    padding:20px;
    text-align:center;
    background:#f8fffe;
    border:2px solid #14b8a6;
    border-radius:12px;
    font-size:18px;
}

.quick-help strong{
    color:#0f766e;
}

.quick-help-btn{
    display:inline-block;
    margin-top:12px;
    padding:10px 24px;
    background:#14b8a6;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.quick-help-btn:hover{
    background:#0f766e;
}