.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* HEADER */

.hero{
    background:linear-gradient(219deg,#FB0E76 0%,#910694 100%);
    color:#fff;
    text-align:center;
    padding:50px 20px;
    border-radius:18px;
    margin-bottom:25px;
}

.hero h1{
	color: white;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.hero p{
    font-size:17px;
    opacity:.95;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* CARDS */

.generator-card,
.results-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    margin-bottom:25px;
}

.card-header{
    background:linear-gradient(219deg,#FB0E76 0%,#910694 100%);
    color:#fff;
    padding:18px 22px;
}

.card-header h2{
	color: white;
    font-size:22px;
    margin-bottom:5px;
}

.card-header p{
    opacity:.9;
    font-size:14px;
}

.card-body{
    padding:25px;
}

/* FIELDS */

.field{
    margin-bottom:25px;
}

.field label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#333;
}

.field input{
    width:100%;
    height:55px;
    border:1px solid #f3c6cf !important;
    border-radius:10px !important;
    padding:0 15px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.field input:focus{
    border-color:#FB0E76;
}

/* CATEGORIES */

.categories{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.category-btn{
    border:1px solid #ddd;
    background: linear-gradient(219deg, #f39ec3 0%, #a020a3 100%);
    border-radius:12px !important;
    cursor:pointer;
    padding:18px 10px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s;
}

.category-btn:hover{
    border-color:#FB0E76;
    transform:translateY(-2px);
}

.category-btn.active{
    background:#fff0f8;
    border:2px solid #FB0E76;
}

.category-btn span{
    font-size:13px;
    font-weight:600;
    text-align:center;
    line-height:1.4;
}

.category-btn{
    font-size:24px;
}

/* GENERATE BUTTON */

.generate-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:12px !important;
    cursor:pointer;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(219deg,#FB0E76 0%,#910694 100%);
    transition:.3s;
}

.generate-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(251,14,118,.25);
}

/* RESULTS */

.results-list{
    padding:20px;
}

.username-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:15px 18px;
    border:1px solid #eee;
    border-radius:10px;
    margin-bottom:12px;
    background:#fafafa;
}

.username-text{
    font-size:16px;
    font-weight:600;
    word-break:break-word;
}

.copy-btn{
    min-width:95px;
    border:none;
    cursor:pointer;
    border-radius:43px !important;
    padding:10px 14px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(219deg,#FB0E76 0%,#910694 100%);
}

.copy-btn:hover{
    opacity:.9;
}

.empty-results{
    text-align:center;
    color:#777;
    padding:30px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .categories{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .hero h1{
        font-size:32px;
    }

    .categories{
        grid-template-columns:repeat(2,1fr);
    }

    .username-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .copy-btn{
        width:100%;
    }

}

@media(max-width:480px){

    .container{
        padding:12px;
    }

    .hero{
        padding:35px 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .categories{
        grid-template-columns:1fr;
    }

    .card-body{
        padding:18px;
    }

}