.page-title {
    font-family: 'Tektur', sans-serif;
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #5FA9EE;
}

.nation-selector {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.nation-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--WF-Base-900);
    border-radius: var(--radius);
    cursor: pointer;
    border: 1px solid var(--WF-Base-700);
    transition: all 0.2s ease;
}

.nation-btn img {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.nation-btn span {
    font-size: 14px;
    color: var(--WF-Text-Main);
}

.nation-btn:hover {
    border-color: var(--WF-Accent);
}

.nation-btn.active {
    background: var(--WF-Accent);
    border-color: var(--WF-Accent);
}

.gender-section {
    margin-bottom: 32px;
}

.gender-section h2 {
    font-family: 'Pacifico', cursive;
    font-size: 22px;
    margin-bottom: 12px;
}

.cards-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.card {
    width: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--WF-Base-900);
    transition: transform 0.2s ease;
}

.card img {
    width: 100%;
    display: block;
}

.card:hover {
    transform: translateY(-4px);
}
