:root {
    --gold: #dca750;
    --gold-dark: #b88636;
    --green: #376839;
    --green-dark: #1f4220;
    --bg-tint: #181c15;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-tint);
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 80px;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 22, 15, 0.75);
    z-index: -1;
}

.staff-login {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ccc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.staff-login:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.container {
    text-align: center;
    max-width: 900px;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    flex: 1;
}

.logo {
    width: 250px;
    height: auto;
    margin-bottom: -10px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.9);
    margin-bottom: 5px;
}

.title .highlight {
    color: var(--green);
}

.badge {
    background-color: var(--green-dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.9);
}

.ip-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gold);
    padding: 12px 35px;
    border-radius: 50px;
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 167, 80, 0.15);
}

.ip-box:hover {
    background: rgba(220, 167, 80, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(220, 167, 80, 0.3);
}

.ip-box i {
    color: var(--gold);
}

.action-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(55, 104, 57, 0.8) 0%, rgba(31, 66, 32, 0.9) 100%);
    border: 2px solid var(--green);
    border-radius: 12px;
    width: 180px;
    height: 140px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.card span {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card:hover {
    background: linear-gradient(135deg, rgba(65, 124, 67, 0.9) 0%, rgba(41, 86, 42, 1) 100%);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.card:hover .card-icon {
    transform: scale(1.15);
}

.info-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-link i {
    color: var(--gold);
    opacity: 0.7;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover i {
    opacity: 1;
}

footer {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

.page-content {
    width: 100%;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-box {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 35px;
    width: 100%;
    max-width: 800px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-top: 3px solid var(--gold);
}

.content-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(220, 167, 80, 0.2);
    padding-bottom: 10px;
}

.content-box h2 i {
    font-size: 1.8rem;
}

.content-box h3 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.content-box p {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-box ul, .content-box ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-box li {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-box strong {
    color: var(--gold);
}

.home-intro {
    text-align: center;
}

.home-intro h2 {
    justify-content: center;
}

.important-box, .warning-box {
    background: rgba(231, 76, 60, 0.15) !important;
    backdrop-filter: blur(5px);
    border-left: 4px solid #e74c3c;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.important-box h3, .warning-box h3 {
    color: #e74c3c;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.rules-category {
    background: rgba(10, 12, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--green);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: border-color 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.rules-category:hover {
    border-color: var(--gold);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.category-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.steps-list, .rules-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
}

.steps-list li, .rules-list li {
    list-style: none !important;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ccc;
    text-align: left;
}

.rules-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--gold);
    font-size: 0.9rem;
}

.rules-list.strict li::before {
    content: "\f00d";
    color: #e74c3c;
}

.help-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.help-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn-ticket {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ticket:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.grid-launchers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.launcher-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--green);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.launcher-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.launcher-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.launcher-icon {
    font-size: 1.8rem;
    color: var(--gold);
}

.launcher-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 3px;
    background: rgba(220, 167, 80, 0.2);
    color: var(--gold);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-download:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(220, 167, 80, 0.3);
}

.file-info {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
    text-align: center;
}

/* ==========================================================================
    MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 850px) {
    .grid-launchers {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .title {
        font-size: 2.8rem;
    }
    
    .logo {
        width: 200px;
    }
    
    .action-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 280px;
        height: 100px;
        flex-direction: row;
        gap: 20px;
    }
    
    .card-icon {
        margin-bottom: 0;
        font-size: 2rem;
    }
    
    .info-nav {
        border-radius: 12px;
        padding: 20px;
    }
    
    .content-box, .rules-category {
        padding: 20px;
        width: 100%;
    }
    
    .content-box h2 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
    BANPAGINA / LITEBANS / STAFF TABELLEN STYLING
   ========================================================================== */

.bans-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 35px;
}

.bans-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.95rem;
}

.bans-table th, .bans-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bans-table th {
    background-color: rgba(55, 104, 57, 0.4);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.bans-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* GEFIXT: Eerste cel gedraagt zich nu als een flex-row en dwingt inline gedrag af */
.bans-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* GEFIXT: Verwijderd margin-right en inline-block toegevoegd voor stabiliteit */
.player-head {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
    display: inline-block;
}

.status-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-active {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.status-expired {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.loading-text {
    text-align: center;
    color: #aaa;
    font-style: italic;
    padding: 20px !important;
}

/* ==========================================================================
    FAQ PAGINA STYLING (Dubbele vermelding opgeschoond)
   ========================================================================== */

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 10px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green);
    background: rgba(0, 0, 0, 0.75);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(220, 167, 80, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-answer-content strong {
    color: var(--gold);
}

.faq-answer-content a {
    color: var(--gold);
    text-decoration: underline;
}

.faq-answer-content a:hover {
    color: #fff;
}

/* ==========================================================================
    STATUS PAGINA & GRAFIEK STYLING
   ========================================================================== */

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.status-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.status-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.status-card h4 {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.status-card p {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
}

.live-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(55, 104, 57, 0.15);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 20px 30px;
    width: 100%;
    margin-bottom: 25px;
}

.live-status-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}

.status-indicator.online {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.live-status-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.chart-container {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .live-status-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
    STATS / LEADERBOARD PAGINA STYLING
   ========================================================================== */

.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    width: 100%;
}

.tab-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--green);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 12px rgba(55, 104, 57, 0.3);
}

.stats-table tbody tr:nth-child(1) strong { color: #ffd700; }
.stats-table tbody tr:nth-child(2) strong { color: #c0c0c0; }
.stats-table tbody tr:nth-child(3) strong { color: #cd7f32; }

.stats-table td .rank-badge {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
    font-size: 0.85rem;
}

.stats-table tbody tr:nth-child(1) .rank-badge { background: #ffd700; color: #111; }
.stats-table tbody tr:nth-child(2) .rank-badge { background: #c0c0c0; color: #111; }
.stats-table tbody tr:nth-child(3) .rank-badge { background: #cd7f32; color: #111; }

/* ==========================================================================
    EVENTS & PLANNING PAGINA STYLING
   ========================================================================== */

.featured-event {
    background: linear-gradient(135deg, rgba(55, 104, 57, 0.3) 0%, rgba(220, 167, 80, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(220, 167, 80, 0.1);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    min-width: 75px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    font-family: monospace;
}

.countdown-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 30px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 4px;
    height: 90%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.completed::before {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.timeline-item.upcoming::before {
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 8px var(--gold);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(220, 167, 80, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(220, 167, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 167, 80, 0); }
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.event-card {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    box-sizing: border-box;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.event-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.event-tag {
    background: rgba(220, 167, 80, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-card p {
    color: #ccc;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.event-time {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin: 0;
}

.event-time i {
    color: var(--gold);
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================================================
    AANMELDEN & STAFF PANEL FORMULIEREN STYLING
   ========================================================================== */

.form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 10px rgba(55, 104, 57, 0.3);
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 5px;
}

.radio-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.radio-card input {
    display: none;
}

.radio-card i {
    font-size: 1.5rem;
    color: #aaa;
}

.radio-card:hover {
    border-color: rgba(220, 167, 80, 0.4);
}

.radio-card.selected {
    background: rgba(55, 104, 57, 0.2);
    border-color: var(--green);
}

.radio-card.selected i {
    color: var(--gold);
}

.btn-accept {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
}

.btn-reject {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-accept:hover { background: #27ae60; }
.btn-reject:hover { background: #c0392b; }

.status-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
}
.status-box.pending { background: rgba(241, 196, 15, 0.15); color: #f1c40f; border: 1px solid #f1c40f; }
.status-box.accepted { background: rgba(46, 204, 113, 0.15); color: #2ecc71; border: 1px solid #2ecc71; }
.status-box.rejected { background: rgba(231, 76, 60, 0.15); color: #e74c3c; border: 1px solid #e74c3c; }

@media (max-width: 768px) {
    .radio-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
    LOGIN & STAFF SESSIONS STYLING
   ========================================================================== */

.login-box {
    max-width: 450px;
    margin: 0 auto;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
}

.login-links a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.alert-message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    display: none;
}

.alert-message.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.alert-message.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.form-toggle-btn {
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    padding: 0;
    text-decoration: underline;
}

.form-toggle-btn:hover {
    color: #fff;
}

/* De rij die alle kolommen bevat */
.tabel-rij {
    display: flex;
    align-items: center; /* Zorgt dat alles netjes op één horizontale lijn blijft */
    justify-content: space-between;
    padding: 10px;
}

/* Geef elke kolom een vaste of minimale breedte zodat ze exact onder de koppen uitlijnen */
.kolom-speler { width: 20%; }
.kolom-leeftijd { width: 10%; text-align: center; }
.kolom-stijl { width: 15%; text-align: center; }
.kolom-motivatie { width: 35%; }
.kolom-datum { width: 10%; text-align: center; }
.kolom-acties { width: 10%; text-align: center; }