*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f4f6;
    color: #111827;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* SECTIONS GENERALE */

.section {
    margin-top: 32px;
    padding: 24px 0;
}

.section-alt {
    background: #e5e7eb;
    border-radius: 16px;
    padding: 24px 18px;
}

.section h2 {
    margin-top: 0;
    font-size: 22px;
}

.section-subtitle {
    font-size: 13px;
    color: #6b7280;
}

/* BUTOANE GENERALE */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease;
}

.btn.primary {
    background: #38bdf8;
    color: #0f172a;
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.3);
}

.btn.ghost {
    background: transparent;
    color: white;
    border-color: rgba(148, 163, 184, 0.7);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.4);
}

/* BADGE-URI */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    background: #e0f2fe;
    color: #0369a1;
}

.badge.outline {
    background: #eff6ff;
    color: #1d4ed8;
}

/* PAGINARE */

.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 15px;
    color: #344054;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-btn:hover {
    background: #f0f4ff;
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.page-btn.active {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(99,102,241,0.4);
}

/* LINK CARDURI */

a.country-card {
    text-decoration: none;
    color: inherit;
}

.coming-soon {
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #6366f1;
    font-weight: 600;
    text-align: center;
}
