* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: monospace;
    padding-top: 72px;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ── Sidebar toggle button ── */
.sidebar-toggle {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1000;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle:hover {
    border-color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

/* ── Sidebar panel ── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background: #0d0d0d;
    border-right: 1px solid rgba(167, 139, 250, 0.2);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sidebar-header span {
    font-size: 13px;
    color: #a78bfa;
    font-weight: bold;
    letter-spacing: 0.04em;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.sidebar-close:hover {
    color: #fff;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.sidebar-link {
    padding: 13px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-family: monospace;
    transition: color 0.2s, background 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

.sidebar-link.active {
    color: #a78bfa;
    border-left-color: #a78bfa;
    background: rgba(167, 139, 250, 0.07);
}

/* ── Overlay behind sidebar ── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
}

.sidebar-overlay.open {
    display: block;
}

/* ── Page content ── */
h1 {
    font-size: 42px;
    text-align: center;
    color: #a78bfa;
    margin: 10px 0 20px;
}

h2 {
    text-align: center;
    font-size: 20px;
}

h3 {
    text-align: center;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.7;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 24px;
}

.linkimages {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
}

.linkimages:hover {
    transform: scale(1.15);
}

.title {
    text-align: center;
    margin-bottom: 10px;
}
