/* ============================
   GO BACK HEADER (NEON DARK)
============================ */
.go-back-header {
    width: 100%;
    background: linear-gradient(180deg, #2d8be8, #1f6fc4);
    padding: 15px 20px;
    border-bottom: 1px solid #154a7f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* Perfect spacing naar jouw page-title */
}

.go-back-btn {
    padding: 8px 14px;
    background: #ffffff22;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    border: 1px solid #ffffff55;
    transition: 0.2s;
}

.go-back-btn:hover {
    background: #ffffff33;
    border-color: #ffffff88;
}

/* Mobile */
@media (max-width: 600px) {
    .go-back-header {
        padding: 12px 15px;
    }

    .go-back-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 16px;
    }
}

/* ============================
   GLOBAL RESET & BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    color: #e6e6e6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 20px;
}
.wrapper {
    max-width: 1100px;
    width: 600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* ============================
   PAGE TITLE
============================ */
.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00eaff;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 10px #00eaff;
}

/* ============================
   SECTION BLOCKS
============================ */
.section {
    background: #111;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.15);
}

.section h2 {
    font-size: 1.6rem;
    color: #00eaff;
    margin-bottom: 15px;
    text-shadow: 0 0 8px #00eaff;
}

.section p {
    margin-bottom: 12px;
    color: #cccccc;
}

/* ============================
   QUICK NAVIGATION BUTTONS
============================ */
.quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.quick-nav a {
    background: #0f0f0f;
    border: 1px solid #00eaff;
    padding: 10px 18px;
    border-radius: 6px;
    color: #00eaff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
    text-shadow: 0 0 6px #00eaff;
}

.quick-nav a:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 12px #00eaff;
}

/* ============================
   LISTS
============================ */
.section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.section ul li {
    margin-bottom: 8px;
    color: #d1d1d1;
}

.page {
    width: 600px;
    margin: 0 auto;
}

/* ============================
   INFO CARDS
============================ */
.card {
    background: #141414;
    border: 1px solid #00eaff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;

    /* Neon glow */
    box-shadow:
        0 0 8px rgba(0, 234, 255, 0.4),
        0 0 15px rgba(0, 234, 255, 0.3),
        inset 0 0 8px rgba(0, 234, 255, 0.2);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.card h3 {
    color: #00eaff;
    margin-bottom: 10px;
    text-shadow: 0 0 6px #00eaff;
}

/* ============================
   TABLES
============================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #1f1f1f;
}

table th {
    background: #00eaff;
    color: #000;
    font-weight: 700;
}

table tr:nth-child(even) {
    background: #121212;
}

table tr:nth-child(odd) {
    background: #181818;
}

/* ============================
   MOBILE FIRST
============================ */
@media (max-width: 600px) {
    .page-title {
        font-size: 1.8rem;
    }

    .quick-nav {
        flex-direction: column;
    }

    .quick-nav a {
        width: 100%;
        text-align: center;
    }
}
