html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
body {
    background: radial-gradient(circle, #1a0505 0%, #050505 100%);
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    cursor: url('cursor.png'), auto;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #ff4500; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #ff0000; }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
header {
    border-bottom: 2px solid #ff4500;
    margin-bottom: 30px;
    padding-bottom: 20px;
    text-align: center;
}
h1 { color: #ff4500; text-transform: uppercase; letter-spacing: 2px; }
h2 { color: #ff6600; }
h3, h4 { color: #ff8533; }
a, button {
    color: #ff0000;
    text-decoration: none;
    cursor: url('cursorclick.png'), pointer;
    transition: all 0.3s ease;
}
a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ff4500;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.btn {
    border: 1px solid #ff4500;
    padding: 10px 15px;
    display: inline-block;
    color: #ff4500;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
}
.btn:hover, .btn.active {
    background-color: #ff4500;
    color: #fff;
    box-shadow: 0 0 12px #ff4500;
    text-shadow: 0 0 5px #fff;
}
.layout-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr 280px; 
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}
.main-content {
    min-width: 0; 
}
.toc {
    position: sticky;
    top: 30px; 
    border-left: 2px solid #333;
    padding-left: 15px;
}
.toc h3 { 
    font-size: 1.1em; 
    color: #ff4500; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    margin-top: 0;
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc ul li { margin-bottom: 12px; }
.toc-link {
    font-size: 0.85em;
    color: #888;
    text-decoration: none;
    transition: 0.3s ease;
}
.active-toc {
    color: #ff4500 !important;
    font-weight: bold;
    padding-left: 8px;
    border-left: 2px solid #ff4500;
}
.sidebar {
    position: sticky;
    top: 30px;
    width: 280px; 
    background: #0d0202;
    border: 1px solid #ff4500;
    padding: 20px;
    box-shadow: inset 0 0 15px #000;
    box-sizing: border-box; 
}
.sidebar h3 {
    margin-top: 0;
    border-bottom: 1px dashed #ff4500;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.live-dot {
    height: 10px;
    width: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #ff0000;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
.tracker-box {
    background: #110404;
    border-left: 3px solid #ff4500;
    padding: 10px;
    margin-top: 15px;
    font-size: 0.85em;
}
.tracker-header {
    display: flex;
    justify-content: space-between;
    color: #ff8533;
    margin-bottom: 5px;
}
.tracker-date { color: #888; font-size: 0.9em; }
.tracker-desc { margin: 5px 0; color: #ccc; }
.tracker-meta { font-size: 0.8em; color: #666; font-style: italic; }
.download-zone {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(26, 5, 5, 0.3);
    border: 1px solid #222;
    border-radius: 4px;
}
.download-link-img {
    display: inline-block;
    text-decoration: none;
    color: #ffaa00; 
    font-weight: bold;
    transition: all 0.3s ease;
}
.download-link-img img {
    width: 120px; 
    height: auto;
    display: block;
    margin: 0 auto 10px auto; 
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}
.download-link-img:hover {
    color: #ffffff;
    text-decoration: none;
}
.download-link-img:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px #ff4500);
}
.file-name {
    display: block;
    font-size: 0.9em;
}
.install-steps {
    background: #110404;
    border: 1px solid #333;
    padding: 20px;
    border-left: 4px solid #ff4500;
    margin-bottom: 30px;
}
.install-steps ol { line-height: 1.8; color: #ccc; }
.install-steps strong { color: #ff8533; }
.uninstall-note { font-size: 0.9em; color: #888; border-top: 1px dashed #333; padding-top: 10px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}
.feature-card {
    background: #0a0202;
    border: 1px solid #333;
    padding: 15px;
    transition: transform 0.2s;
}
.feature-card:hover { border-color: #ff4500; transform: translateY(-3px); }
.feature-card strong { color: #ff4500; display: block; margin-bottom: 8px; font-size: 1.1em; }
.feature-card p { margin: 0; font-size: 0.9em; color: #bbb; line-height: 1.4; }
.glove-card { 
    background: #0a0202; 
    border: 1px solid #333; 
    padding: 20px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}
.glove-card h2 { 
    margin-top: 0; 
    color: #ff6600; 
    font-size: 1.5em; 
    border-bottom: 1px dashed #ff4500; 
    padding-bottom: 10px; 
    margin-bottom: 15px;
}
.glove-images { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    gap: 10px; 
    margin-bottom: 20px; 
    flex: 1; 
}
.glove-images img { 
    width: 48%; 
    height: auto; 
    border: 1px solid #222;
    border-radius: 4px;
    margin: 0;
}
.glove-images.single img { width: 90%; }
pre {
    background-color: #1a0a0a;
    border: 1px solid #ff4500;
    padding: 15px;
    overflow-x: auto;
    color: #ffaa00;
}
code { font-family: inherit; }
img { max-width: 100%; height: auto; vertical-align: middle; }
main img {
    border: 1px solid #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin: 10px 0;
}
.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}
@media (max-width: 1100px) {
    .layout-wrapper {
        grid-template-columns: 1fr; 
    }
    .toc, .sidebar { 
        display: none; 
    }
}
@media (max-width: 800px) {
    .top-section {
        flex-direction: column;
    }
    .intro-text, .video-preview-section {
        width: 100%;
        box-sizing: border-box;
    }
}
.top-section {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
.intro-text {
    flex: 1; 
}
.video-preview-section {
    flex: 1; 
    background: #0a0202;
    padding: 15px;
    border: 1px solid #ff4500;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.15);
}
.video-preview-section h2 {
    margin-top: 0;
    border-bottom: 1px dashed #ff4500;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2em;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border: 2px solid #111;
    border-radius: 4px;
    box-shadow: 0 0 10px #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.kanban-board {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    padding-bottom: 10px;
}
.kanban-column {
    flex: 1;
    min-width: 300px;
    background: #0a0202;
    border: 1px solid #333;
    border-top: 4px solid #ff4500;
    padding: 15px;
    border-radius: 4px;
}
.kanban-column h3 {
    margin-top: 0;
    text-align: center;
    color: #ff8533;
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
}
.kanban-card {
    background: #150303;
    border: 1px solid #444;
    border-left: 3px solid #ff0000;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: transform 0.2s;
    cursor: url('cursorclick.png'), pointer;
}
.kanban-card:hover {
    transform: translateY(-3px);
    border-color: #ff4500;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.2);
}
.kanban-card strong { 
    display: block; 
    color: #fff; 
    margin-bottom: 8px; 
    font-size: 1.1em; 
}
.kanban-card p { 
    font-size: 0.9em; 
    color: #bbb; 
    margin: 0; 
    line-height: 1.4; 
}
.tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7em;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.tag-feature { background: #005500; color: #55ff55; border: 1px solid #55ff55; }
.tag-ui { background: #003366; color: #66bbff; border: 1px solid #66bbff; }
.tag-idea { background: #550055; color: #ff66ff; border: 1px solid #ff66ff; }
