* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ff00;
    overflow-x: hidden;
    position: relative;
}

.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.05) 2px, rgba(0, 255, 0, 0.05) 4px);
    z-index: -1;
}

/* Header Styles */
header {
    padding: 1rem 2rem;
    border-bottom: 1px solid #00ff00;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    brightness(1.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    text-shadow: 0 0 10px #00ff00;
}


/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 80vh; /* Увеличили чтобы заполнить пространство */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff00ff;
    z-index: -0;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -0;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #88ff88;
}

.description {
    margin: 2rem 0;
    line-height: 1.6;
}

.description p {
    margin-bottom: 1rem;
}

.warning-text {
    color: #ff4444;
    font-weight: bold;
    margin-top: 2rem !important;
    text-shadow: 0 0 5px #ff4444;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: 2px solid #00ff00;
    background: transparent;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background: #00ff00;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ff00;
}

.glitch-btn::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    animation: btn-glitch 2s infinite;
    opacity: 0;
}

/* Footer */
footer {
    border-top: 1px solid #00ff00;
    padding: 2rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

/* Animations */
@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        opacity: 1;
        transform: translate(0);
    }
    15%, 49% {
        opacity: 1;
        transform: translate(-2px, 2px);
    }
}

@keyframes scanline {
    0% { top: 0; }
    100% { top: 100%; }
}

@keyframes btn-glitch {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
.social-links {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.social-links a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px #00ff00;
}
/* About Page Styles */
.about-content {
    padding: 4rem 2rem;
    min-height: 80vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.info-card h2 {
    color: #88ff88;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p, .info-card li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 1.5rem;
}

.info-card li {
    margin-bottom: 0.5rem;
}

.info-card.warning {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.info-card.warning:hover {
    background: rgba(255, 68, 68, 0.1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.status-tags {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-tags .status {
    margin-right: 1rem;
    padding: 0.5rem 1rem;
}

.debunked {
    background: #888888;
    color: #0a0a0a;
}
@media (max-width: 768px) {
    .about-content {
        padding: 2rem 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .status-tags {
        gap: 0.5rem;
    }
}
/* Archive Specific Styles */
.archive-main {
    padding: 4rem 2rem;
    min-height: 80vh;
    text-align: center;
}

.archive-stats {
    max-width: 400px;
    margin: 3rem auto;
}

.stat-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.stat-card h3 {
    color: #88ff88;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stat-level {
    font-size: 2rem;
    font-weight: bold;
    color: #ffff00;
    margin: 1rem 0;
    text-shadow: 0 0 10px #ffff00;
}

.stat-card p {
    font-size: 0.9rem;
    color: #88ff88;
}

.archive-message {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
}

.archive-message h2 {
    color: #ff4444;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.archive-message a {
    color: #00ffff;
    text-decoration: none;
}

.archive-message a:hover {
    text-shadow: 0 0 10px #00ffff;
}
/* Archive Specific Styles */
.archive-main {
    padding: 4rem 2rem;
    min-height: 80vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.archive-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.stat-card h3 {
    color: #88ff88;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #00ff00;
    margin: 1rem 0;
    text-shadow: 0 0 10px #00ff00;
}

.stat-level {
    font-size: 2rem;
    font-weight: bold;
    color: #ffff00;
    margin: 1rem 0;
    text-shadow: 0 0 10px #ffff00;
}

.stat-card p {
    font-size: 0.9rem;
    color: #88ff88;
}

.anomaly-preview {
    margin: 4rem 0;
}

.anomaly-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00ffff;
    font-size: 1.5rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.preview-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    padding: 1.5rem;
    text-decoration: none;
    color: #00ff00;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-card:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.preview-card h4 {
    color: #88ff88;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.preview-card p {
    color: #88ff88;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.preview-card.coming-soon {
    background: rgba(255, 255, 0, 0.05);
    border: 1px solid #ffff00;
    color: #888;
    cursor: not-allowed;
}

.preview-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 0, 0.05);
}

.status {
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 3px;
    align-self: flex-start;
}

.status.documented {
    background: #00ff00;
    color: #000;
}

.status.investigating {
    background: #ffff00;
    color: #000;
}

/* Адаптивность */
@media (max-width: 768px) {
    .archive-stats {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
/* Improved Archive Styles */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.preview-card {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #00ff00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #00ff00;
    display: block;
}

.preview-card.featured {
    border: 2px solid #00ff00;
    background: rgba(0, 255, 0, 0.08);
}

.preview-card:hover {
    background: rgba(0, 255, 0, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
    border-color: #00ffff;
}

.preview-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #00ff00;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.preview-card:hover .preview-image img {
    transform: scale(1.05);
}

.preview-image.placeholder {
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #888;
    font-size: 1.5rem;
    font-style: italic;
}

.preview-content {
    padding: 1.5rem;
}

.preview-card h4 {
    color: #88ff88;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.preview-card p {
    color: #88ff88;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.preview-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.date {
    color: #888;
    font-size: 0.8rem;
}

.click-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 255, 0, 0.2);
    color: #00ffff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.preview-card:hover .click-hint {
    transform: translateY(0);
}

/* Quick Links */
.quick-links {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #00ff00;
}

.quick-links h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #00ffff;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-link {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    padding: 1.5rem;
    text-decoration: none;
    color: #00ff00;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-link:hover {
    background: rgba(0, 255, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
}

.link-icon {
    font-size: 1.5rem;
}

.link-text {
    font-weight: bold;
    font-size: 1rem;
}

.quick-link.reddit:hover {
    border-color: #ff4500;
    color: #ff4500;
}

.quick-link.about:hover {
    border-color: #00ffff;
    color: #00ffff;
}

/* Coming Soon Card */
.preview-card.coming-soon {
    background: rgba(255, 255, 0, 0.05);
    border: 1px solid #ffff00;
    color: #888;
    cursor: not-allowed;
}

.preview-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 0, 0.05);
    border-color: #ffff00;
}

/* Responsive */
@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-image {
        height: 150px;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* Clean Archive List Styles */
.anomaly-list {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anomaly-item {
    background: #ffffff;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.anomaly-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.anomaly-info h3 {
    color: #000;
    font-size: 1.5rem;
    margin: 0;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 0.5rem;
}

.anomaly-description {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.anomaly-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.meta-tag {
    background: #00ff00;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.anomaly-button {
    background: #ff4444;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.anomaly-button:hover {
    background: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.anomaly-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preview-frame {
    border: 3px solid #00ff00;
    border-radius: 6px;
    padding: 0.5rem;
    background: #000;
    width: 100%;
    max-width: 200px;
}

.preview-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.preview-caption {
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
}

.preview-frame.placeholder {
    background: #222;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #888;
    font-size: 1rem;
    font-style: italic;
}

/* Coming Soon Item */
.anomaly-item.coming-soon {
    background: #f8f8f8;
    border-color: #ffff00;
}

.anomaly-item.coming-soon h3 {
    border-color: #ffff00;
    color: #666;
}

.anomaly-item.coming-soon .anomaly-description {
    color: #666;
}

.anomaly-item.coming-soon .meta-tag {
    background: #ffff00;
}

.anomaly-item.coming-soon .anomaly-button {
    background: #888;
}

.anomaly-item.coming-soon .anomaly-button:hover {
    background: #666;
    box-shadow: 0 5px 15px rgba(136, 136, 136, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .anomaly-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .anomaly-preview {
        order: -1;
    }
    
    .preview-frame {
        max-width: 150px;
    }
    
    .anomaly-meta {
        gap: 0.3rem;
    }
    
    .meta-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}