/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #f0f2f5;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text: #1a202c;
    --muted: #718096;
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);

    /* House colours */
    --excellence: #7c3aed;
    --resilience: #dc2626;
    --integrity:  #2563eb;
    --trust:      #16a34a;
    --aspiration: #d97706;
    --service:    #0891b2;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

/* ─── NAVBAR ────────────────────────────────────── */
.navbar {
    background: var(--text);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    height: 56px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-brand {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    margin-right: auto;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
    white-space: nowrap;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-link.active { color: white; background: rgba(255,255,255,0.15); }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: #1a202c;
    position: fixed;
    top: 56px; left: 0; right: 0;
    z-index: 99;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
}

/* ─── MAIN CONTENT ─────────────────────────────── */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem 4rem;
}

.page-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.page-header h1 { font-size: 1.75rem; font-weight: 800; }
.subtitle { color: var(--muted); font-size: 0.9rem; }
.live-badge {
    background: #fee2e2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* ─── CARD ──────────────────────────────────────── */
.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
}
.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1.25rem; }

/* ─── HOUSE GRID ────────────────────────────────── */
.house-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.house-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 5px solid #ccc;
    position: relative;
    transition: transform 0.2s;
}
.house-card:hover { transform: translateY(-2px); }
.house-card.rank-1 { box-shadow: 0 4px 20px rgba(0,0,0,0.12); transform: scale(1.04); }

.house-excellence { border-color: var(--excellence); background: var(--excellence); }
.house-resilience  { border-color: var(--resilience); background: var(--resilience); }
.house-integrity   { border-color: var(--integrity); background: var(--integrity); }
.house-trust       { border-color: var(--trust); background: var(--trust); }
.house-aspiration  { border-color: var(--aspiration); background: var(--aspiration); }
.house-service     { border-color: var(--service); background: var(--service); }

.house-rank { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 0.25rem; }
.house-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; color: white; }
.house-points { font-size: 2rem; font-weight: 800; line-height: 1; color: white; }
.house-label { font-size: 0.7rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; }
.house-crown { position: absolute; top: -0.5rem; right: 0.75rem; font-size: 1.5rem; }

/* ─── BAR CHART ─────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: 0.6rem; }
.bar-row { display: flex; align-items: center; gap: 0.75rem; }
.bar-label { width: 90px; font-weight: 600; font-size: 0.85rem; flex-shrink: 0; }
.bar-track { flex: 1; background: var(--bg); border-radius: 999px; height: 32px; overflow: hidden; }
.bar-fill {
    height: 100%;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
    transition: width 0.8s ease;
    min-width: 40px;
}
.bar-value { color: white; font-weight: 700; font-size: 0.85rem; }

.house-excellence-bg { background: var(--excellence); }
.house-resilience-bg  { background: var(--resilience); }
.house-integrity-bg   { background: var(--integrity); }
.house-trust-bg       { background: var(--trust); }
.house-aspiration-bg  { background: var(--aspiration); }
.house-service-bg     { background: var(--service); }

.house-excellence-text { color: var(--excellence); }
.house-resilience-text  { color: var(--resilience); }
.house-integrity-text   { color: var(--integrity); }
.house-trust-text       { color: var(--trust); }
.house-aspiration-text  { color: var(--aspiration); }
.house-service-text     { color: var(--service); }

/* ─── HOUSE BADGES ──────────────────────────────── */
.house-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    color: white;
    white-space: nowrap;
}
.house-excellence { background: var(--excellence); }
.house-resilience  { background: var(--resilience); }
.house-integrity   { background: var(--integrity); }
.house-trust       { background: var(--trust); }
.house-aspiration  { background: var(--aspiration); }
.house-service     { background: var(--service); }

/* ─── TABLES ─────────────────────────────────────── */
.table-wrapper { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th {
    background: var(--bg);
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    border-bottom: 2px solid var(--border);
}
.data-table td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }
.top-1 td { background: #fffbeb !important; }
.top-2 td { background: #f8fafc !important; }
.top-3 td { background: #fff7ed !important; }

/* ─── POINTS BADGE ──────────────────────────────── */
.points-badge {
    background: #ecfdf5;
    color: #065f46;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}
.points-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--success);
}

/* ─── STEPS ──────────────────────────────────────── */
.steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}
.step {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}
.step.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.step-arrow { color: var(--muted); font-size: 0.85rem; }

/* ─── EVENT GRID ─────────────────────────────────── */
.filter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.filter-row select, .filter-row input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    background: var(--surface);
    color: var(--text);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.6rem;
    max-height: 60vh;
    overflow-y: auto;
}

.event-btn {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: left;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.event-btn:hover {
    border-color: var(--primary);
    background: #eef2ff;
    transform: translateY(-1px);
}
.event-btn-name { font-weight: 600; }

/* ─── BADGES ─────────────────────────────────────── */
.badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-track { background: #dbeafe; color: #1e40af; }
.badge-field { background: #dcfce7; color: #166534; }
.badge-relay { background: #fce7f3; color: #9d174d; }

/* ─── SEARCH ─────────────────────────────────────── */
.search-input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.15s;
    background: var(--surface);
    color: var(--text);
}
.big-input { font-size: 1.1rem; padding: 0.9rem 1rem; }
.search-input:focus { outline: none; border-color: var(--primary); }

.search-results {
    margin-top: 0.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    max-height: 50vh;
    overflow-y: auto;
}
.search-result-item {
    padding: 0.85rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.1s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f0f4ff; }
.result-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.2rem; }
.result-meta { font-size: 0.8rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: center; }

/* ─── PLACE GRID ─────────────────────────────────── */
.place-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.place-btn {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
}
.place-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: scale(1.05); }
.place-btn-part { background: #fff7ed; border-color: #fed7aa; color: #92400e; }

/* ─── CONFIRM BOX ────────────────────────────────── */
.confirm-box {
    background: var(--bg);
    border-radius: 10px;
    overflow: hidden;
}
.confirm-row {
    display: flex;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-label { color: var(--muted); font-size: 0.85rem; width: 120px; flex-shrink: 0; }
.confirm-value { font-weight: 600; font-size: 1rem; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.15s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-danger { background: var(--danger); color: white; }
.btn-large { width: 100%; padding: 1rem; font-size: 1.1rem; text-align: center; }

.btn-back {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0 0 0.75rem 0;
    display: block;
}
.btn-undo {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}
.btn-undo:hover { background: #fecaca; }

/* ─── RECENT ENTRIES ─────────────────────────────── */
.recent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
    flex-wrap: wrap;
}
.recent-item:last-child { border-bottom: none; }
.recent-right { display: flex; align-items: center; gap: 0.5rem; }

/* ─── TOAST ──────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a202c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 999;
    transition: opacity 0.3s;
}
.toast.hidden { display: none; }
.toast-error { background: var(--danger); }

/* ─── HOUSE PICKER ───────────────────────────────── */
.house-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 0.5rem; }
.house-pick-btn {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
}
.house-pick-btn:hover { transform: scale(1.03); opacity: 0.9; }
.house-excellence { background: var(--excellence); }
.house-resilience  { background: var(--resilience); }
.house-integrity   { background: var(--integrity); }
.house-trust       { background: var(--trust); }
.house-aspiration  { background: var(--aspiration); }
.house-service     { background: var(--service); }

/* ─── EVENTS LAYOUT ──────────────────────────────── */
.events-layout { display: grid; grid-template-columns: 280px 1fr; gap: 1rem; align-items: start; }
.events-sidebar { max-height: calc(100vh - 120px); overflow-y: auto; }
.event-group-header {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    padding: 0.75rem 0.5rem 0.4rem;
}
.event-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    gap: 0.4rem;
    transition: background 0.1s;
}
.event-list-item:hover { background: var(--bg); }
.event-list-item.active { background: #eef2ff; color: var(--primary); font-weight: 700; }
.result-count {
    background: var(--bg);
    border-radius: 999px;
    font-size: 0.72rem;
    padding: 0.1rem 0.45rem;
    color: var(--muted);
    font-weight: 600;
    margin-left: auto;
}
.placeholder-card { text-align: center; padding: 3rem; color: var(--muted); font-size: 1.1rem; }

/* ─── ADMIN ──────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-card { background: var(--surface); border-radius: var(--radius); padding: 1.25rem; text-align: center; box-shadow: var(--shadow); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--muted); font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.danger-card { border: 2px solid #fecaca; }
.danger-title { color: var(--danger); }

/* ─── MISC ───────────────────────────────────────── */
.hidden { display: none !important; }
.muted { color: var(--muted); }
.small { font-size: 0.8rem; }
.highlight { color: var(--primary); }
.optional { color: var(--muted); font-size: 0.8rem; }
.text-center { text-align: center; }
.field-label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.9rem; }

.alert { padding: 0.75rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-weight: 500; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

.rank-cell { font-size: 1.1rem; }

/* ─── ARCHIVE ─────────────────────────────────── */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.archive-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid var(--border);
}
.archive-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.archive-year-label {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.archive-standings { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.75rem; }
.archive-standing-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.archive-rank { font-size: 1rem; width: 1.5rem; }
.archive-pts { color: var(--muted); font-size: 0.8rem; margin-left: auto; }
.archive-meta { border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.75rem; }
.archive-athlete { font-size: 0.85rem; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.archive-footer { font-size: 0.75rem; color: var(--muted); margin-top: 0.35rem; }
.archive-view-btn {
    margin-top: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ─── YEAR END STEPS ─────────────────────────── */
.year-end-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.year-end-step:last-child { border-bottom: none; }
.step-number {
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.step-body { flex: 1; }
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.step-desc { color: var(--muted); font-size: 0.875rem; margin-bottom: 0.75rem; line-height: 1.5; }
.step-action { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 0.5rem; }
.step-msg { font-size: 0.875rem; font-weight: 500; margin-top: 0.4rem; min-height: 1.2rem; }
.step-msg-success { color: var(--success); }
.step-msg-error { color: var(--danger); }
.csv-hint { font-size: 0.775rem; color: var(--muted); margin-top: 0.35rem; }
.file-input { font-size: 0.85rem; }

code {
    background: var(--bg);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.82rem;
    font-family: monospace;
}

/* ─── STUDENT BREAKDOWN ──────────────────────── */
.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.breakdown-card {
    background: var(--bg);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}
.breakdown-year { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.breakdown-count { font-size: 1.75rem; font-weight: 800; color: var(--primary); }
.breakdown-label { font-size: 0.7rem; color: var(--muted); }
.house-breakdown { display: flex; gap: 0.4rem; flex-wrap: wrap; }

@media (max-width: 768px) {
    .events-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .house-grid { grid-template-columns: repeat(2, 1fr); }
    .place-grid { grid-template-columns: repeat(3, 1fr); }
    .page-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .breakdown-grid { grid-template-columns: repeat(2, 1fr); }
    .year-end-step { flex-direction: column; }
}

/* ─── AUTH NAV ───────────────────────────────── */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}
.nav-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}
.nav-logout, .nav-login {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 0.3rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
}
.nav-logout:hover, .nav-login:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}
.nav-mobile-auth {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1rem;
    font-size: 0.78rem;
    margin-top: 2rem;
}
.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.footer-content strong {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}
.footer-divider {
    color: rgba(255,255,255,0.25);
}
