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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* ==========================
   Header
   ========================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    background: #2c3e50;
    color: white;

    display: flex;
    align-items: center;

    padding: 0 30px;

    box-shadow: 0 2px 8px rgba(0,0,0,.2);

    z-index: 1000;
}

/* ==========================
   Page Layout
   ========================== */

.container {
    display: flex;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* ==========================
   Sidebar
   ========================== */

.sidebar {
    width: 360px;
    background: white;
    border-right: 1px solid #ddd;

    padding: 20px;

    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;

    overflow-y: auto;
}

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

.sidebar ul {
    list-style: none;
}

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

.sidebar a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    border-radius: 4px;
    transition: .2s;
}

.sidebar a:hover {
    background: #3498db;
    color: white;
}

/* ==========================
   Main Content
   ========================== */

.content {
    margin-left: 360px;

    width: 100%;
    max-width: 900px;

    margin-right: auto;
    padding: 40px;

    line-height: 1.7;

    background: white;

    min-height: calc(100vh - 70px);

    box-shadow: 0 0 10px rgba(0,0,0,.08);
}

.content h1,
.content h2 {
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 16px;
}

/* ==========================
   Mobile
   ========================== */

@media (max-width: 768px) {

    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .container {
        flex-direction: column;
    }

    .content {
        margin-left: 0;
        max-width: 100%;
    }

}

.code-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #444;
}

.code-header {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    font-family: sans-serif;
    font-weight: bold;
}

.code-container pre {
    margin: 0;
    padding: 16px;
    background: #1e1e1e;
    color: #dcdcdc;
    overflow-x: auto;
    font-family: Consolas, Monaco, monospace;
}

.usage-container {
    border-radius: 8px;
    background:  #1e1e1e;
    overflow: hidden;
    border: 1px solid #28d56162;
}
.usage-header {
    background: #333;
    color: #fff;
    padding: 10px 15px;
    font-family: sans-serif;
    font-weight: bold;
}

.usage-container pre {
    margin: 0;
    padding: 16px;
    background: #1e1e1e;
    color: #dcdcdc;
    overflow-x: auto;
    font-family: Consolas, Monaco, monospace;
}

/* ==========================
   Social
   ==========================

.social-links {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    font-family: Arial, Helvetica, sans-serif;
}

.social-links h2 {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #333;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li {
    margin: 12px 0;
}

.social-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    padding: 12px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    transition: all .25s ease;
}

.social-list a:hover {
    background: #f5f7fa;
    transform: translateX(5px);
}

.social-list i {
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.fa-facebook { color: #1877F2; }
.fa-instagram { color: #E4405F; }
.fa-x-twitter { color: #000; }
.fa-linkedin { color: #0A66C2; }
.fa-youtube { color: #FF0000; }
.fa-github { color: #333; }
.fa-discord { color: #5865F2; }
.fa-tiktok { color: #000; }

 */