.container{
	background-color:#f5f5f7;
	border-radius:12px;
    max-width:900px;
    margin:auto;
    padding:25px;
}

/* HEADER */

.hero-header{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow-md);
    margin-bottom:20px;
}

.flag-icon{
    font-size:60px;
    line-height:1;
}

.header-title{
    font-size:34px;
    font-weight:700;
    color:var(--text-primary);
    line-height:1.1;
}

.header-subtitle{
    font-size:42px !important;
    font-weight:800 !important;
    line-height:1;
    margin-top:4px;

       background: linear-gradient(219deg, #FB0E76 0%, #910694 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* DESCRIPTION */

.description-card{
    background:#fff;
    border-radius:var(--radius);
    padding:22px;
    box-shadow:var(--shadow-sm);
    border:1px solid var(--border);
    margin-bottom:22px;
}

.description-main{
    font-size:15px;
    color:var(--text-primary);
    font-weight:500;
    line-height:1.6;
    margin-bottom:6px;
}

.description-sub{
    font-size:13px;
    color:var(--text-secondary);
}

/* CATEGORY */

.category-section{
    margin-bottom:20px;
}

.category-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.category-btn{
	color:#59595a;
	background-color: #a6a6a9 !important;
	    border-color: #c7c7c9 !important;
    border:none;
    cursor:pointer;
    font-family:inherit;

    padding:10px 18px;
    border-radius:100px !important;

/*     background:#f3f4f6;
    color:var(--text-secondary); */

    font-size:13px;
    font-weight:600;

    transition:.25s;
}

.category-btn:hover{
    background:#e5e7eb;
    color:var(--text-primary);
}

.category-btn.active{
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    color: #ffffff !important;
    box-shadow:0 3px 12px rgba(251,14,118,.25);
}

/* STATS */

.stats-section{
    display:flex;
    gap:15px;
    margin-bottom:22px;
}

.stat-card{
    flex:1;

    display:flex;
    align-items:center;
    gap:8px;

    background:#fff;
    padding:16px 18px;

    border-radius:var(--radius-sm);
    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);
}

.stat-icon{
    font-size:18px;
}

.stat-label{
    font-size:13px;
    color:var(--text-secondary);
    font-weight:600;
}

.stat-value{
    font-size:20px;
    font-weight:700;

    background:var(--primary-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* GENERATE BUTTON */

.generate-btn{
    width:100%;

    border:none;
    cursor:pointer;

    padding:17px;

    font-family:inherit;
    font-size:16px;
    font-weight:700;
    color:#fff;

    background:linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;

    border-radius:50px !important;

    transition:.25s;
    margin-bottom:20px;

    box-shadow:0 5px 18px rgba(251,14,118,.25);
}

.generate-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(251,14,118,.35);
}

/* SEARCH */

.search-section{
    margin-bottom:15px;
}

.search-input{
    width:100%;
    padding:14px 16px;

    border:1px solid #f3c6cf !important;
    border-radius:12px !important;

    font-size:14px;
    font-family:inherit;

    outline:none;
}

.search-input:focus{
    border-color:var(--primary-color);
    box-shadow:0 0 0 3px rgba(251,14,118,.10);
}

/* TOOLBAR */

.toolbar-section{
    display:flex;
    gap:12px;
    margin-bottom:25px;
}

.toolbar-btn{
    flex:1;

    border:none;
    cursor:pointer;

    padding:13px 18px;

    border-radius:15px !important;

    background:linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    color:#fff;

    font-size:13px;
    font-weight:600;

    transition:.25s;
}

.toolbar-btn:hover{
    transform:translateY(-1px);
}

/* RESULTS */

.results-section{
    margin-bottom:30px;
}

.results-placeholder{
    background:#fff;
    border:2px dashed var(--border);
    border-radius:var(--radius);

    padding:50px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.placeholder-flag{
    font-size:60px;
    margin-bottom:12px;
}

.placeholder-text{
    color:var(--text-light);
    font-size:15px;
}

.results-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.results-grid:empty{
    display:none;
}

/* NAME CARD */

.name-card{
    display:flex;
    align-items:center;
    gap:10px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius-sm);

    padding:14px;

    box-shadow:var(--shadow-sm);

    transition:.25s;
}

.name-card:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-md);
}

.star-btn{
	border-radius: 15px !important;
    border:none;
    background: linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;
    cursor:pointer;
padding:6px !important;
    font-size:19px !important;
    flex-shrink:0;
}

.name-text{
    flex:1;

    font-size:14px;
    font-weight:600;
    color:var(--text-primary);

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.copy-btn{
    border:1px solid var(--border);
    background:linear-gradient(219deg, #FB0E76 0%, #910694 100%) !important;

    cursor:pointer;

    padding:8px !important;
    border-radius:8px !important;

    font-size:13px;

    transition:.2s;
}

.copy-btn:hover{
    background:#f3f4f6;
}

/* FAVORITES */

.favorites-section{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);

    padding:25px;

    box-shadow:var(--shadow-sm);
}

.favorites-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--text-primary);
}

.favorites-container{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.favorites-empty{
    color:var(--text-light);
    font-size:14px;
}

.favorite-chip{
    display:inline-flex;
    align-items:center;

    padding:8px 14px;

    border-radius:100px;

    background:rgba(251,14,118,.08);
    border:1px solid rgba(251,14,118,.20);

    color:var(--secondary-color);

    font-size:13px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:767px){
	.header-subtitle{
		font-size: 26px !important;
	}
	

}

@media(max-width:768px){

    .container{
        padding:18px;
    }

    .hero-header{
        padding:22px;
    }

    .flag-icon{
        font-size:48px;
    }

    .header-title{
        font-size:26px;
    }

    .header-subtitle{
        font-size:30px;
    }

    .stats-section{
        flex-direction:column;
    }

    .toolbar-section{
        flex-direction:column;
    }

    .results-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){

    .hero-header{
        flex-direction:column;
        text-align:center;
    }

    .header-title{
        font-size:24px;
    }

    .header-subtitle{
        font-size:26px;
    }

    .category-buttons{
        justify-content:center;
    }

    .category-btn{
        font-size:12px;
        padding:9px 14px;
    }
}