body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ff006e;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

h2 {
    font-size: 2.2rem;
    border-bottom: 2px solid #8338ec;
    padding-bottom: 10px;
    margin-top: 40px;
}

h3 {
    font-size: 1.8rem;
    color: #3a86ff;
    margin-top: 30px;
}

h4 {
    font-size: 1.4rem;
    color: #8338ec;
    margin-top: 20px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
}

code {
    background-color: rgba(58, 134, 255, 0.1);
    color: #3a86ff;
    padding: 2px 4px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

pre {
    background-color: rgba(10, 10, 10, 0.7);
    border-left: 3px solid #3a86ff;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.section-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #8338ec;
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 1px 0 #3a86ff;
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(80% 0 0 0); }
    20% { clip-path: inset(20% 0 40% 0); }
    40% { clip-path: inset(60% 0 20% 0); }
    60% { clip-path: inset(10% 0 70% 0); }
    80% { clip-path: inset(30% 0 50% 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 0% 0); }
    40% { clip-path: inset(50% 0 30% 0); }
    60% { clip-path: inset(70% 0 10% 0); }
    80% { clip-path: inset(90% 0 40% 0); }
}

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff006e;
}


