/* =========================================================
   MAFFIACORE LAYOUT CSS (los uit HTML gehaald)
========================================================= */
:root {
    /* Brand kleuren (meer MijnMaffia feeling) */
    --brand-red: #c41221;
    --brand-red-dark: #8b111c;
    --brand-blue: #0a6db7;
    --brand-blue-dark: #064579;
    --brand-gold: #ffc937;
    --brand-gold-soft: rgba(255, 201, 55, 0.16);

    --bg-body: #f3f4f6;
    --bg-card: #ffffff;
    --bg-elevated: rgba(255, 255, 255, 0.9);

    --text-main: #111827;
    --text-muted: #6b7280;

    --border-subtle: #e5e7eb;
    --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 22px 45px rgba(15, 23, 42, 0.12);

    --radius-lg: 18px;
    --radius-xl: 26px;
    --radius-pill: 999px;

    --blur-glass: 18px;
    --transition-fast: 0.18s ease-out;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, #fef3f2 0, #f3f4f6 48%, #e5e7eb 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

ul { list-style: none; }

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================================
   NAVBAR (rood met “speciaal effect”)
========================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(var(--blur-glass));
    background: linear-gradient(to bottom, #e21f30 0%, #c41221 40%, #8b111c 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
    overflow: hidden;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0, transparent 55%),
        radial-gradient(circle at 20% -40%, rgba(255, 255, 255, 0.7) 0, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.25;
    pointer-events: none;
}

.nav-inner {
    position: relative;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Navbar Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.logo-img {
    height: 140px;         /* past exactly in jouw navbar */
    width: auto;
    object-fit: contain;
    display: block;
}

/* Kleine schermen */
@media (max-width: 600px) {
    .logo-img {
        height: 32px;
    }
}

.logo i {
    font-size: 1.4rem;
    color: #ffe47a;
}

.logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #fde7eb;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    opacity: 0.9;
}

.nav-links a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -0.4rem;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(to right, #ffe47a, #ffffff);
    transition: transform var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chip-beta {
    font-size: 0.7rem;
    padding: 0.12rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(249, 250, 251, 0.3);
    color: #fde7eb;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.btn-login {
    border-radius: var(--radius-pill);
    border: 0;
    padding: 0.4rem 1.1rem;
    background: #FB9C8E;
    color: #3b1114;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(181,31,7, 0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-login i { font-size: 0.85rem; }

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fef2f2;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-toggle { display: block; }

    .navbar-expanded .nav-links-mobile {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
    }
}

.nav-links-mobile { display: none; }

@media (max-width: 880px) {
    .nav-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0 1rem;
        color: #fee2e2;
        font-size: 0.9rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.22s ease;
    }
    .nav-links-mobile a {
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.78rem;
    }
}

/* =========================================================
   HERO (donkerblauwe gradient)
========================================================= */
.hero {
    position: relative;
    padding: 3rem 0 4.5rem;
    overflow: hidden;
	position: relative;
	background-image: url('https://mijn-maffia.be/templates/2026/assets/hero_back.png');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, #1a2340 0, #050816 52%, #02030a 100%);
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 3rem;
    color: #f9fafb;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.28rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(248, 250, 252, 0.18);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.hero-pill span { opacity: 0.8; }
.hero-pill i   { font-size: 0.8rem; color: var(--brand-gold); }

.hero-title {
    font-size: clamp(2.4rem, 3vw + 1.5rem, 3.4rem);
    line-height: 1.05;
    margin-bottom: 1.1rem;
}

.hero-title span {
    color: var(--brand-gold);
    text-shadow: 0 0 35px rgba(250, 204, 21, 0.45);
}

.hero-sub {
    max-width: 540px;
    font-size: 1rem;
    color: rgba(249, 250, 251, 0.82);
    margin-bottom: 1.5rem;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.1rem;
    font-size: 0.85rem;
    color: rgba(209, 213, 219, 0.9);
}

.hero-meta-row strong {
    font-weight: 600;
    color: #e5e7eb;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: var(--radius-pill);
    border: 0;
    padding: 0.9rem 1.8rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #f9fafb;
    box-shadow: 0 20px 35px rgba(6, 95, 170, 0.7);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 45px rgba(6, 95, 170, 0.9);
}

.btn-ghost {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(249, 250, 251, 0.38);
    padding: 0.85rem 1.3rem;
    background: rgba(15, 23, 42, 0.75);
    color: #e5e7eb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-ghost i { font-size: 0.8rem; }

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.95);
}

.hero-stats {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    font-size: 0.8rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-stat-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.7rem;
    opacity: 0.65;
}

.hero-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* HERO STATUS-CARD */
.hero-card {
    background: #e4e6ee;
    border-radius: 26px;
    padding: 1.7rem 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #111827;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.hero-card-title {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-card-sub {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.hero-card-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: #fce4ea;
    color: #b91c1c;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-status-row {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 1.3rem;
}

.hero-status-pill {
    flex: 1;
    height: 34px;
    border-radius: 999px;
    background: #f9fafb;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4b5563;
}

.hero-status-pill i {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-card-divider {
    height: 1px;
    margin: 0.6rem 0 1.1rem;
    background: linear-gradient(to right, rgba(148, 163, 184, 0.15), rgba(148, 163, 184, 0.6), rgba(148, 163, 184, 0.12));
}

.hero-card-footer {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 0.9rem 1.1rem;
    font-size: 0.8rem;
}

.hero-card-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    color: #6b7280;
    margin-bottom: 0.15rem;
}

.hero-card-value {
    font-weight: 600;
    color: #111827;
}

.hero-card-badge {
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.75rem;
    background: #f5e0b5;
    color: #92400e;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.hero-card-badge-green {
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.75rem;
    background: #2FD650;
    color: #1B8831;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.hero-card-badge i {
    font-size: 0.8rem;
}

@media (max-width: 880px) {
    .hero {
        padding-top: 2.4rem;
        padding-bottom: 3.2rem;
    }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-card {
        margin-top: 1.8rem;
    }
}

/* =========================================================
   STEPS CARDS ONDER HERO
========================================================= */
.steps-section {
    margin-top: -2.2rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: rgba(209, 213, 219, 0.38);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(15, 118, 178, 0.7);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 24%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #eff6ff 0, #fee2e2 55%, #f9fafb 100%);
    color: var(--brand-blue-dark);
    margin-bottom: 1rem;
}

.step-icon i { font-size: 1.3rem; }

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 880px) {
    .steps-grid { grid-template-columns: minmax(0, 1fr); }
}

/* =========================================================
   MAIN CONTENT LAYOUT
========================================================= */
.content-wrap { margin-bottom: 4.5rem; }

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

@media (max-width: 960px) {
    .content-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* SIDEBAR */
.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.premium-box {
    padding: 1.8rem 1.7rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #fff7d0 0, #fffbeb 40%, #fff7d0 100%);
}

.premium-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(196, 18, 33, 0.16) 0, transparent 45%);
}

.premium-box-inner {
    position: relative;
    z-index: 1;
}

.premium-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.06);
    color: #92400e;
    margin-bottom: 0.9rem;
}

.premium-icon i { font-size: 1.5rem; }

.premium-box h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.premium-box p {
    font-size: 0.88rem;
    color: #78350f;
    margin-bottom: 0.9rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(15, 23, 42, 0.18);
    padding: 0.6rem 1.35rem;
    background: #111827;
    color: #fefce8;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    cursor: pointer;
}

.btn-premium i { font-size: 0.75rem; }

.widget-header {
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(to right, rgba(15, 118, 178, 0.06), rgba(248, 250, 252, 0.92));
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #374151;
}

.widget-content {
    padding: 0.25rem 0.4rem 0.4rem;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #111827;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.list-item span.title { font-weight: 500; }

.list-item i {
    font-size: 0.75rem;
    color: #9ca3af;
}

.list-item + .list-item { margin-top: 0.25rem; }

.list-item:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(148, 163, 184, 0.25);
}

.count-badge {
    min-width: 2.4rem;
    text-align: center;
    padding: 0.15rem 0.65rem;
    border-radius: var(--radius-pill);
    background: #f3f4f6;
    font-size: 0.7rem;
    font-weight: 600;
    color: #111827;
}

.count-badge--online {
    background: #ecfdf5;
    color: #15803d;
}

/* MAIN CONTENT (rechts) */
.main-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.main-section-header h2 {
    font-size: 1.2rem;
    border-bottom: 3px solid var(--brand-red);
    display: inline-block;
    padding-bottom: 0.4rem;
}

.tag-soft {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.news-item {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 1.7rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(196, 18, 33, 0.7);
}

.news-header-strip {
    padding: 0.95rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #fff7f7, #f9fafb);
    border-bottom: 1px solid var(--border-subtle);
}

.news-title {
    font-size: 0.98rem;
    letter-spacing: 0.16em;
}

.date-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    background: #fee2e2;
    color: var(--brand-red-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.news-visual {
    height: 190px;
    background: radial-gradient(circle at center, #f3f4f6 0, #e5e7eb 40%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 3rem;
}

.news-content {
    padding: 1.4rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand-blue-dark);
}

.read-more i { font-size: 0.7rem; }

.read-more:hover { transform: translateX(2px); }

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
    margin-bottom: 1.8rem;
}

@media (max-width: 720px) {
    .updates-grid { grid-template-columns: minmax(0, 1fr); }
}

.roadmap-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.8rem;
}

.roadmap-box h3 {
    font-size: 1rem;
    margin-bottom: 0.9rem;
}

.roadmap-box ul li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.roadmap-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at center, var(--brand-blue) 0, var(--brand-red) 100%);
}

/* EXTRA BOXEN: alerts, form, icons */
.utility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-bottom: 1.7rem;
}

@media (max-width: 720px) {
    .utility-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.alerts-card {
    padding: 1.4rem 1.4rem 1.3rem;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.alert i {
    margin-top: 0.1rem;
    font-size: 0.9rem;
}

.alert--info {
    background: #eff6ff;
    color: #1d4ed8;
}

.alert--info i { color: #1d4ed8; }

.alert--success {
    background: #ecfdf3;
    color: #166534;
}

.alert--success i { color: #16a34a; }

.alert--warning {
    background: #fffbeb;
    color: #92400e;
}

.alert--warning i { color: #eab308; }

.alert--error {
    background: #fef2f2;
    color: #b91c1c;
}

.alert--error i { color: #ef4444; }

.form-card {
    padding: 1.4rem 1.4rem 1.3rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.form-row label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
}

.input-text {
    border-radius: 0.7rem;
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-text:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4);
}

.input-help {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: var(--radius-pill);
    border: 0;
    padding: 0.5rem 1.3rem;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: #f9fafb;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
}

.btn-primary i {
    font-size: 0.8rem;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.icon-card {
    padding: 1.4rem 1.4rem 1.3rem;
}

.icon-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 1rem;
}

.icon-circle--google {
    color: #ea4335;
}

.icon-circle--android {
    color: #3ddc84;
}

.icon-circle--chrome {
    color: #4285f4;
}

.icon-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
}

/* FOOTER */
footer {
    margin-top: auto;
    background: #030515;
    border-top: 1px solid rgba(15, 23, 42, 0.75);
    padding: 2rem 1.5rem 1.8rem;
    color: #9ca3af;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.27em;
    color: #f9fafb;
    margin-bottom: 0.25rem;
}

.footer-inner p {
    font-size: 0.66rem;  /* kleiner */
}

.footer-nav {
    margin-top: 0.6rem;
    display: flex;
    justify-content: center;
    gap: 1.6rem;
}

.footer-nav a {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.64rem;  /* nog iets kleiner */
}

.footer-nav a:hover { color: #e5e7eb; }

/* =========================================================
   2. GENERIC CONTENT VOOR StartContent / EndContent
========================================================= */
.content-page {
    padding: 3rem 0;
    background: #f3f4f6;
}

.content-box {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 1.6rem 1.8rem 1.9rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.content-title {
    margin-top: 0;
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
    border-bottom: 3px solid var(--brand-red);
    padding-bottom: 0.35rem;
}

/* Alerts in content-page kunnen dezelfde classes gebruiken als in hero-utility */
.content-box .alert {
    margin-bottom: 0.6rem;
}

/* =========================================================
   3. LEGACY BACKOFFICE / BEHEER STIJLEN
   (overgenomen uit je vorige style.css, namen aangepast waar nodig)
========================================================= */

/* Kleine formulieren (beheer) */
.form-field {
    margin-bottom: 10px;
}
.form-field label {
    display: block;
    font-size: 11px;
    margin-bottom: 2px;
}
.form-field input,
.form-field select {
    width:100%;
    padding: 6px 8px;
    font-size: 12px;
    border-radius: 3px;
    border:1px solid #999;
}

.small-text { font-size: 11px; color: #555; }

/* Beheer tabel */
.beheer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}
.beheer-table th,
.beheer-table td {
    padding: 6px 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
.beheer-table thead tr {
    background: #e0e0e0;
}

/* Inline formulieren in cellen */
.inline-form {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.input-small {
    font-size: 11px;
    padding: 2px 4px;
}

/* Buttons klein formaat */
.btn-xs {
    padding: 2px 6px;
    font-size: 11px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    background: #d0d0d0;
}

.btn-secondary {
    background: #666;
    color: #fff;
}
.btn-success {
    background: #4caf50;
    color: #fff;
}
.btn-danger {
    background: #e53935;
    color: #fff;
}
.btn-warning {
    background: #f9a825;
    color: #fff;
}

/* Oudere success/error meldingen die je misschien nog in code gebruikt */
.alert-success {
    background:#e2ffe2;
    border:1px solid #6cbf6c;
    padding:8px;
    font-size:12px;
    margin-bottom:10px;
}

.alert-error {
    background:#ffe0e0;
    border:1px solid #bb6060;
    padding:8px;
    font-size:12px;
    margin-bottom:10px;
}


.login-card {
    max-width: 520px;
    margin: 0 auto;
}

.login-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.login-subtext {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.login-subtext a {
    text-decoration: underline;
}

/* =========================================
   HERO VOOR INGESLOGDE OWNERS (Gefeliciteerd)
========================================= */

.hero-owner {
    position: relative;
    background: #050505;
    color: #f9fafb;
    padding: 3.5rem 1.5rem 3.8rem;
    overflow: hidden;
}

.hero-owner::before,
.hero-owner::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(249, 250, 251, 0.15);
    border-radius: 999px;
    width: 340px;
    height: 340px;
    left: -120px;
    top: 0;
    transform: rotate(-8deg);
}

.hero-owner::after {
    left: auto;
    right: -160px;
    top: auto;
    bottom: -140px;
    width: 420px;
    height: 420px;
    transform: rotate(12deg);
}

.hero-owner-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-owner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 0.9rem;
    color: #fbbf24; /* goud */
    text-transform: none;
    letter-spacing: 0.04em;
}

.hero-owner-text {
    font-size: 1rem;
    margin-bottom: 1.6rem;
}

.hero-owner-text strong {
    font-weight: 700;
}

.hero-owner-url {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    background: #e5edf3;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    margin-bottom: 0.8rem;
    min-width: 280px;
}

.hero-owner-url a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #334155;
    font-size: 1.05rem;
    text-decoration: none;
}

.hero-owner-url--empty {
    background: #111827;
    box-shadow: none;
}
.hero-owner-url--empty span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.hero-owner-sub {
    margin-top: 0.2rem;
    margin-bottom: 1.4rem;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.hero-owner-manage {
    font-size: 1rem;
    color: #fbbf24;
    font-weight: 600;
}
.hero-owner-manage span {
    color: #fbbf24;
}

.hero-owner {
    background: #000;
    padding: 3.5rem 1.5rem 4rem;
    text-align: center;
    color: #fff;
}

.hero-owner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #ffcc33;
    margin-bottom: 1rem;
}

.hero-owner-url {
    background: #e4eef5;
    border-radius: 8px;
    padding: 0.9rem 1.4rem;
    margin: 1.2rem auto 0.6rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.45);
    min-width: 280px;
    display: inline-block;
}

.hero-owner-url a {
    color: #3a4a55;
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-owner-manage {
    color: #ffcc33;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.2rem;
}


/* Responsief */
@media (max-width: 700px) {
    .hero-owner {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }
    .hero-owner-title {
        font-size: 2.1rem;
    }
    .hero-owner::before,
    .hero-owner::after {
        opacity: 0.5;
    }
}

/* ==========================================
   OWNER TOPMENU (gold bar)
========================================== */

.owner-topmenu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    background: linear-gradient(to bottom, #ffce38, #e3a419);
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
    position: relative;
    z-index: 20;
}

.owner-topmenu a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #3a2500;
    text-decoration: none;
}

.owner-topmenu a i {
    font-size: 1rem;
}

.owner-topmenu a:hover {
    color: #000;
    opacity: 0.85;
}



/* ============================
   SPEL-BEHEER ICON GRID
============================ */

.beheer-intro {
    max-width: 680px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.beheer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.beheer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    cursor: pointer;
    transition: 0.18s ease;
    text-align: center;
    color: #c41221;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.beheer-item img {
    width: 72px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.beheer-item:hover img {
    transform: scale(1.07);
}

.beheer-item:hover {
    opacity: 0.85;
}

.beheer-locked-title {
    margin: 2rem 0 1rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    font-size: 0.85rem;
}

.beheer-grid.locked .beheer-item {
    opacity: 0.35;
    cursor: not-allowed;
}

.beheer-item span.material-symbols-rounded {
    font-size: 48px;
    margin-bottom: 8px;
    color: #d32f2f; /* rood tintje zoals jouw thema */
}

/* =============== NIEUWSBEHEER FORM =============== */

.news-form {
    margin-top: 1.2rem;
}

.news-form .form-row {
    margin-bottom: 1rem;
}

.news-form .form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
    margin-bottom: 0.2rem;
}

.news-form label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.news-form .input-text,
.news-form select {
    width: 100%;
}

/* inline rij voor type + checkboxes */
.news-form .form-row-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.news-form .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.news-form .checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

/* Nieuwsbeheer formulier alignment */

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 1.5rem;
}

@media (max-width: 960px) {
    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
}

/* Inline group voor checkboxes */
.form-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.form-group-inline label {
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* TinyMCE netjes binnen de card */
.card-body .tox-tinymce {
    width: 100% !important;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    margin-top: 0.2rem;
}

.card-body .tox-editor-header {
    border-bottom: 1px solid #e5e7eb !important;
}

.card-body .tox .tox-edit-area__iframe {
    background-color: #ffffff;
}

.card-body .tox .tox-tbtn {
    padding: 4px 6px;
}


.info-box {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 10px;
    background: #f5f9ff;
    border: 1px solid #d6e4ff;
    margin-bottom: 20px;
}

.info-box__icon {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.info-box__content h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
}

.info-box__content p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
}

.info-box__warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13.5px;
}

.info-box__example {
    margin-top: 10px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
}

.info-box__example span {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    font-weight: 600;
}
/* =========================================
   GAMES OVERZICHT (platform)
========================================= */

.mm-go-toolbar{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    margin: 0.4rem 0 1rem;
}

.mm-go-sort{
    display:flex;
    gap:0.6rem;
    flex-wrap:wrap;
}

/* Sort pills */
.mm-go-pill{
    display:inline-flex;
    align-items:center;
    padding: 0.55rem 0.95rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 10px 18px rgba(15,23,42,0.06);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #374151;
    transition: transform 0.18s ease, background 0.18s ease;
}

.mm-go-pill:hover{
    transform: translateY(-1px);
}

.mm-go-pill.is-active{
    border-color: rgba(196,18,33,0.55);
    background: rgba(196,18,33,0.08);
    color: var(--brand-red-dark);
}

/* Search */
.mm-go-search{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:0.75rem;
}

.mm-go-radio{
    display:inline-flex;
    align-items:center;
    gap:0.35rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.mm-go-input{
    min-width: 220px;
}

/* Pager */
.mm-go-pager{
    display:flex;
    justify-content:center;
    gap:0.45rem;
    padding: 0.9rem 0.2rem 0.1rem;
}

.mm-go-page{
    min-width: 34px;
    height: 32px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color:#111827;
    font-weight:700;
    transition: background 0.18s ease, transform 0.18s ease;
}

.mm-go-page:hover{
    transform: translateY(-1px);
}

.mm-go-page.is-current{
    background: rgba(196,18,33,0.10);
    border-color: rgba(196,18,33,0.35);
    color: var(--brand-red-dark);
}

/* Numbers netjes uitlijnen */
.mm-table .num{
    text-align:right;
    font-variant-numeric: tabular-nums;
}


.forum-head{ padding:14px; margin-bottom:12px; }
.forum-head-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.forum-title{ margin:0; font-size:22px; }

.forum-search{ margin-top:12px; display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.forum-search .in{ height:34px; padding:0 10px; border:1px solid #d7d2c6; border-radius:6px; min-width:260px; }

.forum-table{ padding:0; overflow:hidden; }
.forum-thead{
  display:grid;
  grid-template-columns: 1fr 120px 240px;
  background: linear-gradient(#4b4b4b, #2f2f2f);
  color:#fff;
  padding:10px 14px;
  font-weight:700;
}
.forum-row{
  display:grid;
  grid-template-columns: 1fr 120px 240px;
  padding:14px;
  border-top:1px solid #eee9dd;
  background:#fff;
}
.forum-row:nth-child(even){ background:#faf7f0; }

.forum-cell{ display:flex; align-items:flex-start; gap:10px; }
.forum-forum{ gap:12px; }
.forum-icon{ font-size:20px; line-height:1; margin-top:2px; }
.forum-link{ font-weight:700; text-decoration:none; }
.forum-desc{ margin-top:4px; color:#6b6b6b; font-size:13px; }

.ta-c{ justify-content:center; }
.ta-r{ justify-content:flex-end; text-align:right; }
.muted{ color:#7a7a7a; font-size:13px; }

.btn{ display:inline-flex; align-items:center; height:34px; padding:0 12px; border-radius:6px; border:1px solid #d7d2c6; background:#fff; text-decoration:none; cursor:pointer; }
.btn-red{ background:#b00000; border-color:#8a0000; color:#fff; font-weight:700; }
.btn-lite{ background:#f4f1ea; }


.gm-pager{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  margin:18px 0 0;
  flex-wrap:wrap;
}
.gm-pager__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 10px;
  border-radius:8px;
  border:1px solid #e5e7eb;
  background:#fff;
  color:#0f172a;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.gm-pager__item:hover{ transform: translateY(-1px); }
.gm-pager__item.is-active{
  background:#b91c1c;
  border-color:#b91c1c;
  color:#fff;
  box-shadow:0 8px 22px rgba(185,28,28,.25);
}
.gm-pager__item.is-disabled{
  opacity:.45;
  cursor:not-allowed;
}
.gm-pager__dots{ padding:0 6px; opacity:.65; font-weight:900; }
