/* --------------------------------------------------
   NAVIGATION — Soft Dark + Yellow Hover + Watermark
-------------------------------------------------- */
.ms-nav {
    position: relative;
    background: #111;
    border-bottom: 1px solid #333;
    padding: 14px 20px;
    display: flex;
    gap: 24px;
    align-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
}

.ms-nav a {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.ms-nav a:hover {
    color: #ffeb3b;
    text-shadow: 0 0 6px rgba(255, 235, 59, 0.6);
}

.ms-nav .classified-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 235, 59, 0.08);
    pointer-events: none;
    user-select: none;
    letter-spacing: 4px;
    white-space: nowrap;
}

/* --------------------------------------------------
   GLOBAL SOFT DARK MODE
-------------------------------------------------- */
body {
    margin: 0;
    background: #111317;
    color: #e6e6e6;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial;
    line-height: 1.55;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px;
}

/* --------------------------------------------------
   TWO-COLUMN LAYOUT
-------------------------------------------------- */
@media (min-width: 980px) {
    .layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 32px;
        align-items: start;
    }

    .sidebar {
        position: sticky;
        top: 24px;
        padding-left: 24px;
        border-left: 1px solid rgba(255,255,255,0.08);
    }
}

@media (max-width: 979px) {
    .layout {
        display: block;
    }
    .sidebar {
        margin-top: 32px;
        padding-left: 0;
        border-left: none;
    }
}

/* --------------------------------------------------
   CARDS
-------------------------------------------------- */
.card {
    background: #181b22;
    border-radius: 8px;
    padding: 16px 18px 18px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #232633, 0 10px 24px rgba(0,0,0,0.55);
    position: relative;
    overflow: hidden;
}


.card::before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    font-size: 3.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    letter-spacing: 0.25em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.card h2, .card h3 {
    margin-top: 0;
    color: #fff;
}

.muted {
    color: #9aa0a6;
}

/* --------------------------------------------------
   FORM ELEMENTS
-------------------------------------------------- */
form input,
form textarea,
form select {
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #303545;
    background: #101218;
    color: #e5e5e5;
    font-weight: 500;
}

form button {
    margin-top: 4px;
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid #f5d46b;
    background: #f5d46b;
    color: #2b2b2b;
    font-weight: 700;
    cursor: pointer;
}

form button:hover {
    background: #ffe38a;
}
