body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F1EA;

    display: flex;
    justify-content: center;

    padding-top: 60px;
    padding-bottom: 120px;
}

/* Container */

.container {
    width: 80%;
    max-width: 900px;
}

/* Header */

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    color: #232826;
    font-size: 28px;
    margin-bottom: 15px;
}

.header p {
    color: #5F665F;
    line-height: 1.6;
}

.subtext {
    margin-top: 10px;
    font-size: 14px;
}

/* Categories */

.category {
    margin-bottom: 40px;
}

.category-title {
    color: #232826;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Identity Grid */

.identity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Identity Pills */

.identity-pill {

    background-color: #FAF8F3;

    border: 2px solid #D8D3CA;
    border-radius: 999px;

    padding: 12px 18px;

    color: #232826;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: all 0.2s ease;
}

.identity-pill:hover {

    border-color: #556B5D;

    transform: translateY(-2px);
}

.identity-pill.selected {

    background-color: #556B5D;

    border-color: #556B5D;

    color: white;
}

/* Core Section */

.hidden {
    display: none;
}

.core-section {

    margin-top: 50px;

    background-color: #FAF8F3;

    border: 2px solid #D8D3CA;
    border-radius: 16px;

    padding: 30px;
}

.core-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;
}

.core-header h2 {

    margin: 0;
    color: #232826;
}

#core-count {

    color: #556B5D;
    font-weight: 600;
}

.core-description {

    color: #5F665F;

    margin-bottom: 20px;
}

/* Core Identity Pills */

.core-pill {

    background-color: #FAF8F3;

    border: 2px solid #D8D3CA;
    border-radius: 999px;

    padding: 12px 18px;

    color: #232826;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: all 0.2s ease;
}

.core-pill:hover {

    border-color: #556B5D;

    transform: translateY(-2px);
}

.core-pill.selected {

    background-color: #44574B;

    border-color: #44574B;

    color: white;
}

.core-pill.selected::before {
    content: "★ ";
}

/* Footer */

.footer {

    display: flex;
    justify-content: flex-end;
}

/* Continue Button */

#continueBtn {

    margin-top: 50px;

    padding: 14px 32px;

    background-color: #556B5D;
    color: white;

    border: none;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;

    transition: background-color 0.2s ease;
}

#continueBtn:hover {
    background-color: #44574B;
}