html {
    color: #fff;
    background: #000;
}

body {
    margin: 0;
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.bg-video-wrapper {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: #000;
}

.bg-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(115%) brightness(55%) saturate(40%) hue-rotate(330deg);
}

.bg-video-wrapper:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 88%);
    pointer-events: none;
}

.content-panel {
    max-width: 48em;
    margin: 32px 0 64px 40px;
    background: rgba(0, 0, 0, 0.87);
    border: 2px solid #ffffff;
    padding: 20px 28px 28px;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.12), 0 10px 28px -6px rgba(0, 0, 0, 0.85);
    position: relative;
    backdrop-filter: saturate(140%) blur(3px);
}

.content-panel:before {
    content: "";
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

pre, code {
    font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
}

pre {
    display: none;
}

a {
    color: #d946ef;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(217, 70, 239, 0.6), 0 0 16px rgba(217, 70, 239, 0.4);
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.2), rgba(168, 85, 247, 0.2));
    padding: 2px 6px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d946ef, #a855f7, #d946ef);
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(217, 70, 239, 0.8);
    transition: all .3s;
}

a:hover {
    color: #f0abfc;
    text-shadow: 0 0 12px rgba(240, 171, 252, 0.9), 0 0 24px rgba(217, 70, 239, 0.6), 0 0 36px rgba(168, 85, 247, 0.4);
    background: linear-gradient(90deg, rgba(217, 70, 239, 0.4), rgba(168, 85, 247, 0.4));
}

a:hover:after {
    opacity: 1;
    height: 3px;
    box-shadow: 0 0 16px rgba(217, 70, 239, 1), 0 0 24px rgba(168, 85, 247, 0.8);
}

blockquote {
    font-family: 'Orbitron', sans-serif;
    border-left: 3px solid #fff;
    color: #e6e6e6;
    margin-left: 0;
    padding-left: 1em;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 1.5px;
}

hr {
    border-color: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: 1.6em;
    font-weight: 700;
}

h3 {
    font-size: 1.1em;
    font-weight: 600;
}

p {
    font-size: 0.95em;
    margin: 0.8em 0;
}

strong {
    font-weight: 600;
    letter-spacing: 0.5px;
}

ul, ol {
    padding-left: 1.4em;
    font-size: 0.92em;
}

li {
    margin: 0.4em 0;
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    .bg-video-wrapper video {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 14px;
    }

    .content-panel {
        margin: 20px 0 48px 0;
        padding: 28px 24px 36px;
    }

    pre {
        font-size: 9px;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1em;
    }
}

