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

/* Body background */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f0f14; /* Solid outer color */
    color: #e6e6e6;
}

/* Wrapper centers content and limits width */
.page-wrapper {
    display: flex;
    width: 50%;
    min-height: 100vh;
    margin: 0 auto; /* Center horizontally */
    background-color: #1a1b26;
}

/* Sidebar */
.sidebar {
    width: 200px;
    padding: 20px;
    background-color: #16161f;
    border-right: 2px solid #ff4fa3;
}

.sidebar h1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff4fa3;
    text-shadow: 0 0 8px rgba(255,79,163,0.6);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 15px;
}

.sidebar a {
    text-decoration: none;
    color: #e6e6e6;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #7df9ff;
    text-shadow: 0 0 5px #7df9ff;
}

/* Main Content */
.content {
    flex: 1;
    padding: 40px;
}

.content h2 {
    margin-bottom: 20px;
    color: #7df9ff;
}

.content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ff4fa3;
}

article {
    margin-top: 20px;
    padding: 15px;
    background-color: #20212b;
    border-left: 3px solid #7df9ff;
}

/* Responsive */
@media (max-width: 1000px) {
    .page-wrapper {
        width: 80%;
    }
}

@media (max-width: 700px) {
    .page-wrapper {
        flex-direction: column;
        width: 95%;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #ff4fa3;
    }
}