/* Faceless Hacker Page Styles */

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

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #00ff41;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Rain Background */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

/* Hack Overlay */
.hack-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(transparent, #00ff41, transparent);
    animation: scan 6s linear infinite;
    opacity: 0.3;
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
.hack-header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid #00ff41;
    margin-bottom: 2rem;
}

.logo-faceless {
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hack-header h1 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
}

.subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: rgba(0, 255, 65, 0.7);
    letter-spacing: 0.1em;
}

/* Glitch Text */
.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

.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-before 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    color: #ff0000;
}

.glitch-text::after {
    animation: glitch-after 0.3s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    color: #00ffff;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-before {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(-3px, 0);
    }
    66% {
        transform: translate(3px, 0);
    }
}

@keyframes glitch-after {
    0%, 100% {
        transform: translate(0);
    }
    33% {
        transform: translate(3px, 0);
    }
    66% {
        transform: translate(-3px, 0);
    }
}

/* Alert Banner */
.alert-banner {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    padding: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    letter-spacing: 0.1em;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.7;
    }
}

.alert-icon {
    color: #ff0000;
    font-size: 1.2rem;
    margin: 0 1rem;
}

.alert-text {
    color: #fff;
}

/* Sections */
.hack-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.02);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 4px;
}

.section-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    color: #00ff41;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px #00ff41;
}

.terminal-prompt::before {
    content: '> ';
    color: rgba(0, 255, 65, 0.5);
}

/* Text Blocks */
.text-block {
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-block p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff41;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px #00ff41;
}

.highlight-red {
    color: #ff0000;
    font-weight: 700;
    text-shadow: 0 0 5px #ff0000;
}

.highlight-green {
    color: #00ff41;
    font-weight: 700;
    text-shadow: 0 0 5px #00ff41;
}

/* File Container */
.file-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.file-header {
    background: rgba(0, 255, 65, 0.1);
    padding: 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    border-bottom: 1px solid #00ff41;
}

.file-icon {
    margin-right: 0.5rem;
}

.file-content {
    padding: 1.5rem;
}

.leak-list {
    list-style: none;
    margin: 0;
}

.leak-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 0, 0, 0.05);
    border-left: 3px solid #ff0000;
    color: rgba(255, 255, 255, 0.9);
}

.leak-list li:last-child {
    margin-bottom: 0;
}

.leak-icon {
    margin-right: 0.5rem;
}

.leak-list strong {
    color: #ff0000;
    font-weight: 700;
}

.file-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    justify-content: space-between;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: rgba(0, 255, 65, 0.6);
}

.status {
    color: #00ff41;
}

/* Stat Box */
.stat-box {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff0000;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.stat-large {
    font-size: 4rem;
    font-weight: 900;
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Code Block */
.code-block {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Share Tech Mono', monospace;
    overflow-x: auto;
}

.code-block code {
    color: #00ff41;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Brotherhood Section */
.brotherhood-section {
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

.manifesto {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid #00ff41;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.manifesto p {
    margin-bottom: 0.5rem;
    color: #00ff41;
}

.quote {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid #00ff41;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #00ff41;
    font-size: 0.95rem;
}

.principles {
    margin: 2rem 0;
}

.principles h3 {
    color: #00ff41;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.principles ul {
    list-style: none;
}

.principles li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00ff41;
    color: rgba(255, 255, 255, 0.9);
}

/* Action List */
.action-list {
    list-style: none;
    margin: 1.5rem 0;
}

.action-list li {
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid #00ff41;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Hashtags */
.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.hashtags span {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00ff41;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: #00ff41;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-hack {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ff41;
    color: #00ff41;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hack::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #00ff41;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-hack:hover::before {
    left: 0;
}

.btn-hack:hover {
    color: #000;
    box-shadow: 0 0 20px #00ff41;
}

.btn-secondary {
    border-color: rgba(0, 255, 65, 0.5);
    color: rgba(0, 255, 65, 0.8);
}

.btn-secondary::before {
    background: rgba(0, 255, 65, 0.2);
}

.btn-secondary:hover {
    border-color: #00ff41;
    color: #00ff41;
}

/* Final Section */
.final-section {
    text-align: center;
    border-color: #ff0000;
}

.corporate-quote {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 102, 255, 0.3);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: rgba(0, 102, 255, 0.7);
}

.corporate-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(0, 102, 255, 0.5);
}

.counter-quote {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

/* Footer */
.hack-footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    margin-bottom: 2rem;
}

.footer-signature {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.95rem;
    color: rgba(0, 255, 65, 0.7);
    margin-bottom: 1rem;
}

.faceless-tag {
    color: #00ff41;
    font-weight: 700;
    text-shadow: 0 0 5px #00ff41;
}

.footer-meta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: rgba(0, 255, 65, 0.5);
    margin-bottom: 2rem;
}

.terminal-cursor {
    animation: cursor-blink 1s infinite;
}

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

.exit-link {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    color: rgba(0, 255, 65, 0.5);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.exit-link:hover {
    color: #00ff41;
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hack-header h1 {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .alert-banner {
        font-size: 0.85rem;
    }

    .alert-icon {
        margin: 0 0.5rem;
    }

    .hack-section {
        padding: 1.5rem;
    }

    .text-block {
        font-size: 1rem;
    }

    .emphasis {
        font-size: 1.1rem;
    }

    .stat-large {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-hack {
        width: 100%;
        text-align: center;
    }

    .hashtags {
        gap: 0.5rem;
    }

    .hashtags span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
