:root {
    --primary: #ff0000;
    --secondary: #ff0000;
    --dark-bg: #0d1117;
    --darker-bg: #090c10;
    --text-color: #c9d1d9;
    --code-color: #7ee787;
    --border-color: rgba(0, 220, 130, 0.2);
    --hover-glow: rgba(0, 220, 130, 0.15);
    --code-bg: rgba(0, 220, 130, 0.05);
    --font-primary: 'JetBrains Mono', 'Fira Code', monospace;
    --font-code: 'Fira Code', 'JetBrains Mono', monospace;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --transition-speed: 0.3s;
}

header {
    background: transparent;
    position: relative;
    top: 0;
}

body {
    background: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-top: 0 !important;
    margin: 0 !important;
}

.tutorials-toggle,
.tools-toggle {
    position: fixed;
    top: 20px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 13px;
    transition: all 0.3s ease;
    z-index: 1000;
    height: 28px;
}

.tutorials-toggle {
    right: 110px;
    background: rgba(88, 28, 135, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: rgb(139, 92, 246);
}

.tools-toggle {
    right: 20px;
    background: rgba(13, 17, 23, 0.3);
    border: 1px solid rgba(139, 148, 158, 0.3);
    color: #c9d1d9;
}

.tutorials-toggle i,
.tools-toggle i {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.tutorials-toggle i {
    color: rgb(139, 92, 246);
}

.tools-toggle i {
    color: #c9d1d9;
}

.tutorials-toggle:hover,
.tools-toggle:hover {
    transform: translateX(-3px);
}

.tutorials-toggle {
    position: static;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 13px;
    transition: all 0.3s ease;
}

.toggle-container {
    position: auto;
    top: -7px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.3rem;
    z-index: 1000;
}


.tools-toggle {
    position: static;
    margin: 0;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.tools-toggle:hover {
    background: rgba(88, 28, 135, 0.15);
    transform: translateX(-5px);
}