/* Terminal-specific styles */
.terminal-body {
    background-color: #000;
    color: #0f0;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    position: relative;
}

.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 5;
}

.terminal-header-container {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #0f0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px #0f0;
    letter-spacing: 2px;
}

.terminal-title-highlight {
    color: #f00;
    text-shadow: 0 0 10px #f00;
    margin: 0 10px;
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #333;
}

.status-indicator.active {
    background-color: #0f0;
    box-shadow: 0 0 10px #0f0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.signal-strength {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.signal-bar {
    width: 10px;
    height: 20px;
    background-color: #0f0;
    animation: signal-fluctuate 3s infinite;
}

.signal-bar:nth-child(1) { animation-delay: 0s; height: 10px; }
.signal-bar:nth-child(2) { animation-delay: 0.5s; height: 15px; }
.signal-bar:nth-child(3) { animation-delay: 1s; height: 20px; }
.signal-bar:nth-child(4) { animation-delay: 1.5s; height: 25px; }
.signal-bar:nth-child(5) { animation-delay: 2s; height: 30px; }

@keyframes signal-fluctuate {
    0% { opacity: 1; box-shadow: 0 0 5px #0f0; }
    50% { opacity: 0.5; box-shadow: 0 0 10px #0f0; }
    100% { opacity: 1; box-shadow: 0 0 5px #0f0; }
}

#terminal-container {
    display: flex;
    position: relative;
    z-index: 10;
    margin: 20px;
    gap: 20px;
}

.terminal-sidebar {
    width: 300px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.satellite-animation {
    position: relative;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
}

.satellite {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: satellite-float 5s ease-in-out infinite;
}

@keyframes satellite-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.satellite-body {
    width: 60px;
    height: 30px;
    background-color: #333;
    border: 2px solid #666;
    position: relative;
}

.satellite-dish {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #666;
    background-color: #222;
    position: absolute;
    top: -30px;
    left: 10px;
    transform: perspective(100px) rotateX(45deg);
}

.satellite-panels {
    position: absolute;
    top: 5px;
}

.panel {
    width: 40px;
    height: 20px;
    background-color: #00a;
    border: 1px solid #00f;
    position: absolute;
}

.panel.left {
    left: -45px;
}

.panel.right {
    right: -45px;
}

.signal-waves {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.wave {
    position: absolute;
    border: 2px solid #0f0;
    border-radius: 50%;
    opacity: 0;
    animation: wave-animation 4s infinite;
}

.wave1 {
    width: 30px;
    height: 30px;
    animation-delay: 0s;
}

.wave2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.wave3 {
    width: 90px;
    height: 90px;
    animation-delay: 2s;
}

@keyframes wave-animation {
    0% { transform: translate(-50%, 20px) scale(0.1); opacity: 1; }
    100% { transform: translate(-50%, -50px) scale(3); opacity: 0; }
}

.terminal-categories h3,
.live-data-feed h3 {
    margin-bottom: 10px;
    border-bottom: 1px solid #0f0;
    padding-bottom: 5px;
}

.terminal-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terminal-categories li {
    padding: 8px 10px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.terminal-categories li:hover {
    background-color: rgba(0, 255, 0, 0.1);
    border-left-color: #0f0;
}

.terminal-categories li.active {
    background-color: rgba(0, 255, 0, 0.2);
    border-left-color: #0f0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.data-stream {
    height: 150px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.data-line {
    margin-bottom: 5px;
    animation: data-appear 0.5s ease-out;
}

@keyframes data-appear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.terminal-content {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    padding: 20px;
}

.terminal-search {
    display: flex;
    margin-bottom: 20px;
}

.terminal-input {
    flex: 1;
    background-color: #000;
    border: 1px solid #0f0;
    color: #0f0;
    padding: 10px 15px;
    font-family: 'Courier New', monospace;
}

.search-button {
    background-color: #0f0;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
}

.search-button:hover {
    background-color: #00ff00;
    box-shadow: 0 0 10px #0f0;
}

.conspiracy-articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conspiracy-item {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.conspiracy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #f00, #0f0, #00f);
    animation: rainbow-border 3s linear infinite;
}

@keyframes rainbow-border {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.conspiracy-item:hover {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
    transform: translateY(-5px);
}

.article-header {
    margin-bottom: 15px;
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
}

.article-title {
    color: #f00;
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    text-shadow: 0 0 5px #f00;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #ccc;
}

.classification {
    color: #ff0;
    font-weight: bold;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-image-container {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,0,0,0.1), rgba(0,255,0,0.1), rgba(0,0,255,0.1));
    mix-blend-mode: screen;
    animation: glitch-effect 10s infinite;
    pointer-events: none;
}

@keyframes glitch-effect {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 0.1; }
    20% { transform: translate(-10px, 0); opacity: 0.5; }
    30% { transform: translate(10px, -5px); opacity: 0.3; }
    40% { transform: translate(0, 5px); opacity: 0.1; }
    50% { transform: translate(-5px, 0); opacity: 0.4; }
    60% { transform: translate(5px, 0); opacity: 0.2; }
    70% { transform: translate(0, -5px); opacity: 0.5; }
    80% { transform: translate(0, 0); opacity: 0.3; }
}

.article-text p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.evidence-links {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-left: 3px solid #f00;
}

.evidence-links h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #f00;
}

.evidence-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evidence-links li {
    margin-bottom: 5px;
}

.evidence-links a {
    color: #0ff;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    padding: 3px 0;
}

.evidence-links a:hover {
    color: #fff;
    text-shadow: 0 0 5px #0ff;
    transform: translateX(5px);
}

.article-actions {
    margin-top: 20px;
    position: relative;
}

.action-button {
    background-color: #222;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-button:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 10px #0f0;
}

.share-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #0f0;
    padding: 10px;
    display: none;
    z-index: 100;
    width: 200px;
}

.share-button.active + .share-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.social-button {
    display: inline-block;
    background-color: #000;
    color: #0f0;
    padding: 12px 20px;
    text-decoration: none;
    border: 1px solid #0f0;
    transition: all 0.3s ease;
    font-weight: bold;
    text-align: center;
    flex: 1;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
    text-transform: uppercase;
}

.social-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: all 0.5s;
}

.social-button:hover:before {
    left: 100%;
}

.social-button:hover {
    background-color: #030;
    color: #0f0;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    transform: translateY(-2px);
}

.social-button:active {
    transform: translateY(1px);
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.twitter-button {
    background-color: #001500;
}

.copy-button {
    background-color: #001500;
}

.button-text {
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.copy-button.copied {
    background-color: #004400;
    color: #00FF00;
    animation: pulse-green 0.5s;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.9); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 0, 0.5); }
}

/* Cryptome Message Modal styles */
.cryptome-message-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
    animation: fade-in 0.3s ease-out;
}

.cryptome-message-content {
    background-color: #111;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    border: 2px solid #0f0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: glitch-in 0.5s ease-out;
}

.cryptome-message-header {
    background-color: #000;
    color: #0f0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0f0;
}

.message-title {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 0 0 5px #0f0;
}

.close-message-viewer {
    color: #0f0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-message-viewer:hover {
    color: #f00;
    text-shadow: 0 0 10px #f00;
}

.cryptome-message-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#cryptome-message-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    background-color: #000;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* PDF Viewer styles */
.pdf-viewer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    font-family: 'Courier New', monospace;
}

.pdf-viewer-content {
    background-color: #111;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border: 2px solid #0f0;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: glitch-in 0.5s ease-out;
}

.pdf-viewer-header {
    background-color: #000;
    color: #0f0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0f0;
}

.pdf-title {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 0 0 5px #0f0;
}

.close-pdf-viewer {
    color: #0f0;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-pdf-viewer:hover {
    color: #f00;
    text-shadow: 0 0 10px #f00;
}

.pdf-viewer-body {
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pdf-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border: 1px solid #333;
}

.pdf-nav-button {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.pdf-nav-button:hover {
    background-color: #0f0;
    color: #000;
}

.pdf-page-info {
    color: #0f0;
    font-size: 0.9rem;
}

.pdf-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #000;
    border: 1px solid #333;
    padding: 10px;
}

#pdf-image {
    max-width: 100%;
    max-height: 70vh;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #444;
}

.pdf-badge, .cryptome-badge {
    background-color: #f00;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    animation: blink-animation 2s infinite;
}

.cryptome-badge {
    background-color: #0a0;
    animation: glitch-animation 1.5s infinite;
}

@keyframes glitch-in {
    0% {
        transform: scale(0.9);
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }
    20% {
        clip-path: inset(33% 0 66% 0);
    }
    60% {
        clip-path: inset(66% 0 33% 0);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.glitch-in {
    animation: glitch-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.section-container {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #0f0;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.section-title {
    color: #0f0;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #0f0;
    letter-spacing: 2px;
}

/* Cryptome Archive styles */
.cryptome-archive-access {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #0f0;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.archive-description {
    color: #0f0;
    font-size: 0.9rem;
    margin: 10px 0;
    line-height: 1.4;
}

.archive-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000;
    color: #0f0;
    padding: 10px 15px;
    border: 1px solid #0f0;
    margin-top: 10px;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.archive-status i {
    margin-left: 10px;
    color: #0f0;
    font-size: 1.2rem;
}

.cryptome-badge {
    display: inline-block;
    background-color: #0a0;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 3px;
    margin: 0 3px;
    animation: glitch-animation 1.5s infinite;
}

/* Loading indicator styles */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    text-align: center;
}

.loading-indicator span {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #0f0;
}

.loading-bars {
    display: flex;
    gap: 8px;
}

.loading-bar {
    width: 12px;
    height: 30px;
    background-color: #0f0;
    animation: loading-animation 1.2s ease-in-out infinite;
}

.loading-bar:nth-child(1) { animation-delay: 0s; }
.loading-bar:nth-child(2) { animation-delay: 0.4s; }
.loading-bar:nth-child(3) { animation-delay: 0.8s; }

@keyframes loading-animation {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Error message styles */
.error-message {
    background-color: rgba(50, 0, 0, 0.7);
    border: 1px solid #f00;
    padding: 30px;
    text-align: center;
    margin: 50px auto;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.error-message span {
    color: #f00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 10px #f00;
}

.error-message p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.retry-button {
    background-color: #300;
    color: #f00;
    border: 1px solid #f00;
    padding: 10px 20px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-button:hover {
    background-color: #500;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

/* Load more button styles */
.load-more-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 15px;
    background-color: rgba(0, 50, 0, 0.7);
    color: #0f0;
    border: 1px solid #0f0;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.load-more-button:hover {
    background-color: rgba(0, 70, 0, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.load-more-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Notification styles */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 30, 0, 0.9);
    border: 1px solid #0f0;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
    transition: bottom 0.5s ease;
    width: 90%;
    max-width: 500px;
}

.notification.show {
    bottom: 30px;
}

.notification-content {
    text-align: center;
}

.notification-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
}

.notification-message {
    font-size: 1rem;
    color: #0f0;
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.terminal-button {
    background-color: #000;
    color: #0f0;
    border: 2px solid #0f0;
    padding: 12px 25px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.terminal-button:hover {
    background-color: #0f0;
    color: #000;
    box-shadow: 0 0 20px #0f0;
}

.terminal-footer {
    position: relative;
    z-index: 10;
    margin: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #0f0;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.transmission-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: #ccc;
}

.stat-value {
    font-size: 1.5rem;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.terminal-warning {
    text-align: center;
    color: #f00;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #f00;
}

.notification-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid #0f0;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.notification-popup.show {
    transform: translateY(0);
}

.notification-icon {
    font-size: 2rem;
    color: #0f0;
    animation: pulse 2s infinite;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: bold;
    color: #0f0;
    margin-bottom: 5px;
}

.notification-message {
    color: #ccc;
    font-size: 0.9rem;
}

/* Animations and effects */
.blink-slow {
    animation: blink-animation 2s steps(2) infinite;
}

.blink-fast {
    animation: blink-animation 0.5s steps(2) infinite;
}

@keyframes blink-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.redacted-text {
    background-color: #000;
    color: #000;
    padding: 0 5px;
    position: relative;
    user-select: none;
    transition: all 0.3s;
}

.redacted-text:hover {
    background-color: rgba(255, 0, 0, 0.3);
    color: rgba(255, 0, 0, 0.7);
}

.glitch-small {
    position: relative;
    color: #0f0;
}

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

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

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

@keyframes glitch-anim-1 {
    0% { clip-path: inset(30% 0 40% 0); }
    20% { clip-path: inset(80% 0 1% 0); }
    40% { clip-path: inset(43% 0 27% 0); }
    60% { clip-path: inset(25% 0 58% 0); }
    80% { clip-path: inset(13% 0 75% 0); }
    100% { clip-path: inset(63% 0 37% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(15% 0 49% 0); }
    20% { clip-path: inset(40% 0 14% 0); }
    40% { clip-path: inset(63% 0 36% 0); }
    60% { clip-path: inset(27% 0 31% 0); }
    80% { clip-path: inset(75% 0 19% 0); }
    100% { clip-path: inset(47% 0 43% 0); }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    #terminal-container {
        flex-direction: column;
    }
    
    .terminal-sidebar {
        width: 100%;
    }
    
    .satellite-animation {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .terminal-title {
        font-size: 1.8rem;
    }
    
    .article-content {
        flex-direction: column;
    }
    
    .transmission-stats {
        flex-direction: column;
        gap: 10px;
    }
}
