#star-font-generator{
    --gold:#fbbf24;
    --yellow:#fde047;
    --purple:#7c3aed;
    --pink:#ec4899;
    --dark:#0f172a;
    --card:#111827;
    --text:#ffffff;

    max-width:1300px;
    margin:auto;
    padding:25px;
    border-radius:24px;
    color:var(--text);
    font-family:Arial,sans-serif;

    background:
    radial-gradient(circle at top right,rgba(251,191,36,.20),transparent 30%),
    radial-gradient(circle at bottom left,rgba(124,58,237,.20),transparent 30%),
    linear-gradient(135deg,#020617,#0f172a,#111827);
}

#star-font-generator *{
    box-sizing:border-box;
}

.sf-header{
    text-align:center;
    margin-bottom:25px;
}

.sf-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#fbbf24,#ec4899);
    color:#111;
    font-size:13px;
    font-weight:800;
    margin-bottom:15px;
}

.sf-title{
    font-size:clamp(34px,5vw,60px);
    font-weight:900;
    margin-bottom:10px;
}

.sf-subtitle{
    max-width:850px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
}

.sf-grid{
    display:grid;
    gap:20px;
}

.sf-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:20px;
}

.sf-input{
    width:100%;
    min-height:150px;
    resize:vertical;
    border:none;
    outline:none;
    border-radius:16px;
    background:#020617;
    color:white;
    padding:15px;
    font-size:18px;
}

.sf-controls{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

.sf-btn{
    border:none;
    cursor:pointer;
    padding:12px 18px;
    border-radius:12px;
    font-weight:700;
    color:#111;
    background:linear-gradient(135deg,#fbbf24,#fde047);
}

.sf-stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px;
    margin-top:20px;
}

.sf-stat{
    text-align:center;
    padding:15px;
    border-radius:14px;
    background:rgba(255,255,255,.03);
}

.sf-stat-number{
    font-size:24px;
    font-weight:900;
    color:#fde047;
}

.sf-search{
    width:100%;
    padding:14px;
    border:none;
    border-radius:12px;
    background:#020617;
    color:white;
    margin-bottom:20px;
}

.sf-results{
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

.sf-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:18px;
}

.sf-name{
    color:#fde047;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.sf-output{
    font-size:22px;
    line-height:1.8;
    word-break:break-word;
    margin-bottom:12px;
}

.sf-copy{
    border:none;
    cursor:pointer;
    padding:10px 15px;
    border-radius:10px;
    font-weight:700;
    color:#111;
    background:linear-gradient(135deg,#fbbf24,#fde047);
}

@media(min-width:768px){
    .sf-results{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(min-width:1100px){
    .sf-results{
        grid-template-columns:repeat(3,1fr);
    }
}