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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    color: #00d9ff;
    position: relative;
}

/* CRT Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
        );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
    animation: scanlines 8s linear infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
    pointer-events: none;
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

@keyframes flicker {
    0% { opacity: 0.97; }
    5% { opacity: 1; }
    10% { opacity: 0.97; }
    15% { opacity: 1; }
    20% { opacity: 0.97; }
    25% { opacity: 1; }
    30% { opacity: 0.97; }
    35% { opacity: 0.99; }
    40% { opacity: 1; }
    45% { opacity: 0.97; }
    50% { opacity: 1; }
    55% { opacity: 0.98; }
    60% { opacity: 0.97; }
    65% { opacity: 1; }
    80% { opacity: 0.97; }
    85% { opacity: 1; }
    95% { opacity: 0.98; }
    100% { opacity: 1; }
}

.split-container,
.pane {
    animation: flicker 0.3s infinite;
}

/* Minimalistic Header */
.header {
    height: 36px;
    background: #0a0a0a;
    border-bottom: 1px solid #00d9ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.header h1 {
    font-size: 14px;
    font-weight: 400;
    color: #00d9ff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 217, 255, 1),
                 0 0 15px rgba(0, 217, 255, 0.8),
                 0 0 25px rgba(0, 217, 255, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
    margin: 0;
}

/* Floating Eye */
.floating-eye {
    position: fixed;
    top: 18px;
    left: 23%;
    z-index: 100;
    pointer-events: none;
    transition: left 0.1s ease-out;
    transform: translateX(-50%);
}

.eye {
    width: 50px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.eye::before,
.eye::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 32px;
    border: 2px solid #00d9ff;
    border-radius: 50%;
    background: #000000;
    box-shadow: none;
}

.eye::before {
    top: 0;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.eye::after {
    bottom: 0;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.pupil {
    width: 15px;
    height: 15px;
    background: #00d9ff;
    border-radius: 50%;
    transition: transform 0.08s ease-out;
    box-shadow: 0 0 10px rgba(0, 217, 255, 1),
                0 0 18px rgba(0, 217, 255, 0.8);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pupil::after {
    content: '';
    width: 5px;
    height: 5px;
    background: #000000;
    border-radius: 50%;
}

/* Visitor Ticker */
.visitor-ticker {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    margin-left: 40px;
    overflow: hidden;
}

.ticker-label {
    font-size: 11px;
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 20px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    gap: 20px;
    will-change: transform;
}

.ticker-item {
    font-size: 12px;
    color: #00d9ff;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6),
                 0 0 10px rgba(0, 217, 255, 0.3);
    white-space: nowrap;
}

.ticker-separator {
    color: #00d9ff;
    opacity: 0.5;
    padding: 0 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 8px rgba(0, 217, 255, 0.8),
                     0 0 15px rgba(0, 217, 255, 0.6),
                     0 0 25px rgba(0, 217, 255, 0.4);
    }
    to {
        text-shadow: 0 0 10px rgba(0, 217, 255, 1),
                     0 0 20px rgba(0, 217, 255, 0.8),
                     0 0 35px rgba(0, 217, 255, 0.6);
    }
}

/* Split View Container */
.split-container {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
}

.split-view-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Panes */
.pane {
    overflow: auto;
    background: #0a0a0a;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.left-pane {
    border-right: 1px solid #00d9ff;
    box-shadow: 1px 0 5px rgba(0, 217, 255, 0.3);
    background-color: #000000;
    background-image: url('david3.png');
    background-position: 100% bottom;
    background-repeat: no-repeat;
    background-size: auto 60%;
    background-attachment: local;
    min-width: 200px;
    
}

.right-pane {
    background-color: #000000;
    background-image: url('as2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
}

.contact-scroll-container {
    position: fixed;
    bottom: 37px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center;
}

.contact-scroll-text {
    font-size: 24px;
    font-weight: 400;
    color: #00d9ff;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.9),
                 0 0 20px rgba(0, 217, 255, 0.6),
                 0 0 30px rgba(0, 217, 255, 0.4);
    white-space: nowrap;
    font-family: 'Courier New', 'Consolas', 'Monaco', monospace;
    animation: scrollContactLeft 60s linear infinite;
    will-change: transform;
}

.contact-scroll-container:hover .contact-scroll-text {
    text-shadow: 0 0 15px rgba(0, 217, 255, 1),
                 0 0 30px rgba(0, 217, 255, 0.8),
                 0 0 45px rgba(0, 217, 255, 0.6);
}

@keyframes scrollContactLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Card Modal */
.contact-card-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.contact-card {
    background: #0a0a0a;
    border: 2px solid #00d9ff;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.8),
                0 0 100px rgba(0, 217, 255, 0.5),
                inset 0 0 30px rgba(0, 217, 255, 0.1);
    animation: cardAppear 0.3s ease-out;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #00d9ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 217, 255, 0.05);
}

.contact-card-header h2 {
    font-size: 18px;
    font-weight: 400;
    color: #00d9ff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8),
                 0 0 20px rgba(0, 217, 255, 0.5);
}

.contact-card-close {
    background: transparent;
    border: 1px solid #00d9ff;
    color: #00d9ff;
    font-size: 28px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
    line-height: 1;
    padding: 0;
}

.contact-card-close:hover {
    background: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
    transform: rotate(90deg);
}

.contact-card-content {
    padding: 24px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 11px;
    color: #00d9ff;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: #00d9ff;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.7),
                 0 0 15px rgba(0, 217, 255, 0.4);
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-value:hover {
    text-shadow: 0 0 12px rgba(0, 217, 255, 1),
                 0 0 25px rgba(0, 217, 255, 0.7);
    transform: translateX(4px);
}

.pgp-key-container {
    position: relative;
}

.pgp-key {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00d9ff;
    padding: 16px;
    font-size: 7%;
    color: #00d9ff;
    overflow-x: auto;
    max-height: 200px;
    overflow-y: auto;
    margin: 6px 0;
    
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
    line-height: 1.4;
}

.copy-btn {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid #00d9ff;
    color: #00d9ff;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
    width: 100%;
}

.copy-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6),
                0 0 25px rgba(0, 217, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 217, 255, 1);
}

.pane h2 {
    font-size: 14px;
    font-weight: 400;
    color: #00d9ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.9),
                 0 0 15px rgba(0, 217, 255, 0.6),
                 0 0 25px rgba(0, 217, 255, 0.3);
    position: relative;
    z-index: 2;
}

/* Resizer Handle */
.resizer {
    width: 4px;
    background: #00d9ff;
    cursor: ew-resize;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 15px rgba(0, 217, 255, 1),
                0 0 25px rgba(0, 217, 255, 0.6);
}

.resizer:hover {
    background: #00d9ff;
    box-shadow: 0 0 25px rgba(0, 217, 255, 1),
                0 0 40px rgba(0, 217, 255, 0.8),
                0 0 60px rgba(0, 217, 255, 0.5);
}

.resizer:active {
    background: #00d9ff;
    box-shadow: 0 0 30px rgba(0, 217, 255, 1),
                0 0 50px rgba(0, 217, 255, 0.8);
}

/* Content Styling */
.pane h2 {
    font-size: 14px;
    font-weight: 400;
    color: #00d9ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.9),
                 0 0 15px rgba(0, 217, 255, 0.6),
                 0 0 25px rgba(0, 217, 255, 0.3);
}

/* Footer */
.footer {
    height: 32px;
    background: #0a0a0a;
    border-top: 1px solid #00d9ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    flex-shrink: 0;
    font-size: 12px;
    color: #00d9ff;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.7),
                 0 0 10px rgba(0, 217, 255, 0.4);
}

.footer-info {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer .separator {
    color: #00d9ff;
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    gap: 6px;
}

.now-playing-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
}

.track-name-container {
    max-width: 300px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

.track-name {
    font-size: 12px;
    color: #00d9ff;
    white-space: nowrap;
    display: inline-block;
    animation: scroll-track 20s linear infinite;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.7),
                 0 0 10px rgba(0, 217, 255, 0.4);
    will-change: transform;
}

.track-separator {
    padding: 0 20px;
    opacity: 0.5;
}

@keyframes scroll-track {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

.player-controls {
    display: flex;
    gap: 3px;
}

.control-btn {
    padding: 0 8px;
    background: transparent;
    color: #00d9ff;
    border: none;
    border-radius: 0;
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Courier New', 'Consolas', monospace;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.7),
                 0 0 10px rgba(0, 217, 255, 0.4);
    min-width: 26px;
}

.control-btn:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6),
                0 0 25px rgba(0, 217, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 217, 255, 1),
                 0 0 20px rgba(0, 217, 255, 0.6);
}

.control-btn:active {
    transform: translateY(1px);
}

#play-pause-btn,
#next-btn {
    margin: 0;
}

#audio-player {
    display: none;
}

/* Categories Directory */
.categories-container {
    padding: 0;
}

.categories-container h2 {
    font-size: 11px;
    font-weight: 500;
    color: #00d9ff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.8),
                 0 0 15px rgba(0, 217, 255, 0.5);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-wrapper {
    margin-bottom: 4px;
}

.category-item {
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s ease;
    user-select: none;
    border: 1px solid transparent;
    border-left: 2px solid #00d9ff;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    font-size: 10px;
    color: #00d9ff;
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6),
                 0 0 10px rgba(0, 217, 255, 0.3);
}

.category-item:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
    transform: translateX(4px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6),
                0 0 35px rgba(0, 217, 255, 0.4);
    text-shadow: 0 0 8px rgba(0, 217, 255, 1),
                 0 0 15px rgba(0, 217, 255, 0.6);
}

.category-item:hover .category-icon {
    text-shadow: 0 0 10px rgba(0, 217, 255, 1),
                 0 0 20px rgba(0, 217, 255, 0.7);
}

.category-item.category-all {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-left: 2px solid #00d9ff;
    margin-bottom: 10px;
    font-weight: 400;
}

.category-item.category-all:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: #00d9ff;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.category-name {
    font-size: 14px;
    color: #00d9ff;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6),
                 0 0 10px rgba(0, 217, 255, 0.3);
    flex: 1;
}

.category-item:hover .category-name {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 1),
                 0 0 20px rgba(0, 217, 255, 0.7);
}

.category-item.category-all:hover .category-name {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 1),
                 0 0 20px rgba(0, 217, 255, 0.7);
}

/* Post List (Dropdown) */
.post-list {
    margin-top: 4px;
    margin-left: 16px;
    padding-left: 12px;
    border-left: 1px solid rgba(0, 217, 255, 0.3);
}

.post-link {
    padding: 8px 12px;
    margin: 3px 0;
    font-size: 13px;
    color: #00d9ff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border-left: 2px solid transparent;
    text-shadow: 0 0 4px rgba(0, 217, 255, 0.4),
                 0 0 8px rgba(0, 217, 255, 0.2);
}

.post-link:hover {
    background: rgba(0, 217, 255, 0.08);
    border-left-color: #00d9ff;
    transform: translateX(2px);
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.5),
                0 0 20px rgba(0, 217, 255, 0.3);
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.8),
                 0 0 15px rgba(0, 217, 255, 0.5);
}

/* Posts Styling */
.posts-container {
    padding: 0;
}

.post-item {
    margin-bottom: 16px;
    border: 1px solid #00d9ff;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
    position: relative;
}

.post-item:hover {
    border-color: #00d9ff;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 
                0 0 50px rgba(0, 217, 255, 0.5),
                0 0 80px rgba(0, 217, 255, 0.3),
                inset 0 0 25px rgba(0, 217, 255, 0.08);
    transform: translateY(-2px);
}

.post-header {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.post-header:hover {
    background: rgba(0, 217, 255, 0.05);
    border-bottom: 1px solid rgba(0, 217, 255, 0.3);
}

.post-title-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-category {
    font-size: 10px;
    font-weight: 500;
    color: #00d9ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.8),
                 0 0 15px rgba(0, 217, 255, 0.5);
}

.post-title {
    font-size: 15px;
    font-weight: 400;
    color: #00d9ff;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.6),
                 0 0 15px rgba(0, 217, 255, 0.3);
}

.toggle-icon {
    font-size: 12px;
    color: #00d9ff;
    transition: all 0.2s ease;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.7),
                 0 0 10px rgba(0, 217, 255, 0.4);
}

.post-item:hover .toggle-icon {
    color: #00d9ff;
    text-shadow: 0 0 15px rgba(0, 217, 255, 1),
                 0 0 25px rgba(0, 217, 255, 0.7);
}

.post-content {
    padding: 0 20px 20px 20px;
    color: #00d9ff;
    line-height: 1.7;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.5),
                 0 0 10px rgba(0, 217, 255, 0.25);
}

.post-content h1 {
    font-size: 22px;
    margin: 18px 0 14px 0;
    color: #00d9ff;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.8),
                 0 0 20px rgba(0, 217, 255, 0.5);
}

.post-content h2 {
    font-size: 18px;
    margin: 16px 0 12px 0;
    color: #00d9ff;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.7),
                 0 0 15px rgba(0, 217, 255, 0.4);
}

.post-content h3 {
    font-size: 15px;
    margin: 14px 0 10px 0;
    color: #00d9ff;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.6),
                 0 0 12px rgba(0, 217, 255, 0.3);
}

.post-content p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.7;
}

.post-content ul, .post-content ol {
    margin: 10px 0;
    padding-left: 28px;
}

.post-content li {
    margin: 6px 0;
    padding: 4px 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.7;
}

.post-content code {
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 0;
    font-size: 13px;
    font-family: 'Courier New', 'Consolas', monospace;
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.3);
    letter-spacing: 0;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.7),
                 0 0 15px rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.post-content pre {
    background: rgba(0, 0, 0, 0.8);
    padding: 18px;
    border-radius: 0;
    overflow-x: auto;
    margin: 14px 0;
    border: 1px solid #00d9ff;
    box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.1);
}

.post-content pre code {
    background: none;
    padding: 0;
    border: none;
    color: #00d9ff;
}

.post-content blockquote {
    border-left: 3px solid #00d9ff;
    padding-left: 18px;
    margin: 14px 0;
    color: #00d9ff;
    font-style: italic;
    line-height: 1.7;
    text-shadow: 0 0 3px rgba(0, 217, 255, 0.4);
}

.post-content strong {
    font-weight: 700;
    color: #00d9ff;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
}

.no-posts {
    color: #00d9ff;
    font-size: 14px;
    padding: 24px;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.5);
    border-radius: 0;
    transition: background 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid #00d9ff;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    padding: 4px;
}

.mobile-toggle:hover {
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.hamburger-line {
    width: 18px;
    height: 2px;
    background: #00d9ff;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.6);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    /* Body adjustments for mobile */
    html, body {
        overflow: auto;
    }
    
    body::before {
        background-size: 100% 2px;
    }
    
    /* Header mobile layout */
    .header {
        height: 50px;
        padding: 0 16px;
        flex-wrap: nowrap;
    }
    
    .header h1 {
        font-size: 12px;
        letter-spacing: 2px;
        margin: 0 auto;
        text-align: center;
        flex: 1;
    }
    
    /* Hide visitor ticker on mobile */
    .visitor-ticker {
        display: none;
    }
    
    /* Floating eye adjustments */
    .floating-eye {
        display: none; /* Hide eye on mobile for better UX */
    }
    
    /* Split container mobile layout */
    .split-container.mobile-layout {
        flex-direction: column;
    }
    
    .split-container.mobile-layout .pane {
        width: 100% !important;
        height: auto !important;
        min-height: calc(100vh - 130px);
        padding: 16px;
    }
    
    .split-container.mobile-layout .resizer {
        display: none;
    }
    
    .split-container.mobile-layout .left-pane {
        border-right: none;
        border-bottom: 1px solid #00d9ff;
    }
    
    /* Category styling for mobile */
    .categories-container h2 {
        font-size: 14px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .category-item {
        padding: 16px;
        margin: 8px 0;
    }
    
    .category-name {
        font-size: 16px;
    }
    
    .category-icon {
        font-size: 12px;
    }
    
    /* Post styling for mobile */
    .post-item {
        margin-bottom: 20px;
    }
    
    .post-header {
        padding: 20px 16px;
    }
    
    .post-title {
        font-size: 16px;
    }
    
    .post-category {
        font-size: 11px;
    }
    
    .post-content {
        padding: 0 16px 20px 16px;
        font-size: 15px;
        line-height: 1.8;
    }
    
    .post-content h1 {
        font-size: 20px;
    }
    
    .post-content h2 {
        font-size: 18px;
    }
    
    .post-content h3 {
        font-size: 16px;
    }
    
    .post-content pre {
        overflow-x: auto;
        font-size: 13px;
    }
    
    /* Footer mobile layout */
    .footer {
        height: 60px;
        flex-direction: column;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .footer-info {
        display: none; /* Hide technical info on mobile */
    }
    
    .audio-player {
        width: 100%;
        justify-content: center;
    }
    
    .now-playing-label {
        font-size: 10px;
    }
    
    .track-name-container {
        max-width: 200px;
    }
    
    .track-name {
        font-size: 11px;
    }
    
    .control-btn {
        padding: 0 6px;
        font-size: 12px;
        min-width: 24px;
    }
    
    /* Scrollbar adjustments for mobile */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(0, 217, 255, 0.3);
    }
}

@media screen and (max-width: 480px) {
    /* Extra small mobile devices */
    .header {
        height: 45px;
        padding: 0 12px;
    }
    
    .header h1 {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .pane {
        padding: 12px !important;
    }
    
    .category-item {
        padding: 14px;
    }
    
    .category-name {
        font-size: 15px;
    }
    
    .post-header {
        padding: 16px 12px;
    }
    
    .post-content {
        padding: 0 12px 16px 12px;
    }
    
    .footer {
        height: 55px;
        padding: 6px 12px;
    }
    
    .track-name-container {
        max-width: 150px;
    }
    
    .mobile-toggle {
        width: 28px;
        height: 28px;
    }
    
    .hamburger-line {
        width: 16px;
    }
}

@media screen and (max-width: 320px) {
    /* Very small devices */
    .header h1 {
        font-size: 10px;
    }
    
    .category-name {
        font-size: 14px;
    }
    
    .post-title {
        font-size: 15px;
    }
    
    .track-name-container {
        max-width: 120px;
    }
}
