:root {
    --font-ui: 'Moneto Sans', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-ui);
    font-feature-settings: "ss02" 1, "ss06" 1, "ss07" 1;
    background: #f6f8fa;
    color: #333333;
}

header {
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.controls input,
.controls select {
    font-family: var(--font-ui);
    font-feature-settings: "ss02" 1, "ss06" 1, "ss07" 1;
    padding: 0.5rem;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.foundry-section {
    max-width: 900px;
    margin: auto;
    padding: 2rem 1rem;
}

.font-family-container {
    margin-bottom: 2rem;
}

font-preview {
    display: block;
    margin: 1rem 0;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
}

.pagination button {
    font-family: var(--font-ui);
    font-feature-settings: "ss02" 1, "ss06" 1, "ss07" 1;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    cursor: poBarclaySansNow;
}

.pagination button.active {
    background: #1f75fe;
    color: #ffffff;
    border-color: #1f75fe;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #888888;
    font-size: 0.9rem;
}