/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff41;
    --secondary-color: #0066ff;
    --accent-color: #ff0080;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-gray: #888888;
    --border-color: #333333;
    --glow-color: #00ff41;
    --warning-color: #ffaa00;
    --error-color: #ff3366;
}

body {
    font-family: 'Share Tech Mono', 'Orbitron', monospace;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-darker);
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    animation: matrixGlow 8s ease-in-out infinite alternate;
}

@keyframes matrixGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Russo One', 'Electrolize', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Matrix Glitch Effect for Titles */
.glitch {
    position: relative;
    color: var(--text-light);
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: titleGlitch 12s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before {
    color: var(--secondary-color);
    z-index: -1;
    animation: titleGlitchBefore 12s infinite;
}

.glitch::after {
    color: var(--accent-color);
    z-index: -2;
    animation: titleGlitchAfter 12s infinite;
}

@keyframes titleGlitch {
    0%, 96% {
        transform: translate(0);
    }
    97% {
        transform: translate(-1px, 1px);
    }
    98% {
        transform: translate(1px, -1px);
    }
    99%, 100% {
        transform: translate(0);
    }
}

@keyframes titleGlitchBefore {
    0%, 96% {
        opacity: 0;
        transform: translate(0);
    }
    97% {
        opacity: 0.8;
        transform: translate(-2px, 2px);
    }
    98%, 100% {
        opacity: 0;
        transform: translate(0);
    }
}

@keyframes titleGlitchAfter {
    0%, 96% {
        opacity: 0;
        transform: translate(0);
    }
    98% {
        opacity: 0.6;
        transform: translate(2px, -2px);
    }
    99%, 100% {
        opacity: 0;
        transform: translate(0);
    }
}

/* Matrix Glitch Text */
.neon-text {
    color: var(--primary-color);
    text-shadow: 
        0 0 2px var(--primary-color),
        0 0 4px var(--primary-color);
    animation: matrixGlitch 8s infinite;
}

@keyframes matrixGlitch {
    0%, 95% {
        transform: translate(0);
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
    96% {
        transform: translate(-1px, 1px);
        text-shadow: 
            0 0 2px var(--secondary-color),
            0 0 4px var(--secondary-color);
    }
    97% {
        transform: translate(1px, -1px);
        text-shadow: 
            0 0 2px var(--accent-color),
            0 0 4px var(--accent-color);
    }
    98% {
        transform: translate(-1px, -1px);
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
    99%, 100% {
        transform: translate(0);
        text-shadow: 
            0 0 2px var(--primary-color),
            0 0 4px var(--primary-color);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Russo One', 'Electrolize', sans-serif;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
}

.typing-text {
    border-right: 2px solid var(--primary-color);
    animation: typing 3s steps(40) infinite, blink 1s infinite;
}

@keyframes typing {
    0%, 50% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: var(--primary-color); }
    51%, 100% { border-color: transparent; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Cyber Buttons */
.btn-cyber {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    font-family: 'Bungee', 'Electrolize', monospace;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s;
}

.btn-cyber:hover::before {
    left: 100%;
}

.btn-cyber:hover {
    color: var(--bg-dark);
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-cyber.secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-cyber.secondary::before {
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.btn-cyber.secondary:hover {
    color: var(--text-light);
    background: var(--secondary-color);
    box-shadow: 0 0 20px var(--secondary-color);
}

.btn-cyber.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-cyber.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--text-gray);
    color: var(--text-gray);
}

.btn-cyber.disabled:hover {
    background: transparent;
    color: var(--text-gray);
    box-shadow: none;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary-color);
    background: rgba(0, 255, 65, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-cube:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-cube:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.floating-cube:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.terminal-window {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: var(--border-color);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background: #ff5f56; }
.terminal-button.yellow { background: #ffbd2e; }
.terminal-button.green { background: #27ca3f; }

.terminal-title {
    margin-left: auto;
    font-family: 'Share Tech Mono', 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
}

.terminal-line {
    margin-bottom: 10px;
}

.prompt {
    color: var(--primary-color);
}

.command {
    color: var(--secondary-color);
}

.terminal-output {
    color: var(--text-light);
    margin-bottom: 10px;
}

.cursor {
    animation: blink 1s infinite;
}

/* Run Button Styles */
.run-button {
    background: linear-gradient(45deg, var(--primary-color), #00cc33);
    border: none;
    color: var(--bg-dark);
    padding: 8px 16px;
    font-family: 'Bungee', 'Electrolize', monospace;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.run-button:hover {
    background: linear-gradient(45deg, #00cc33, var(--primary-color));
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
}

.run-icon {
    font-size: 1rem;
    color: var(--bg-dark);
}

/* Company Output Styles */
.company-output {
    margin-top: 15px;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 0 4px 4px 0;
}

.terminal-output.generating {
    color: var(--warning-color);
    animation: pulse 1.5s infinite;
}

.terminal-output.success {
    color: var(--primary-color);
    font-weight: 600;
}

.output-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.status-active {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 5px var(--primary-color);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    background: rgba(0, 255, 65, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.stat-number {
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.stat-label {
    font-family: 'Russo One', 'Electrolize', sans-serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

/* Projects Section */
.projects {
    background: rgba(0, 0, 0, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.project-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 255, 65, 0.05);
}

.project-card.coming-soon {
    opacity: 0.7;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-status.tba {
    background: var(--warning-color);
    color: var(--bg-dark);
}

.project-status.coming {
    background: var(--text-gray);
    color: var(--bg-dark);
}

.project-type {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-family: 'Russo One', 'Electrolize', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-title {
    font-family: 'Bungee', 'Audiowide', monospace;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-description {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(0, 102, 255, 0.2);
    color: var(--secondary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', 'Orbitron', monospace;
    letter-spacing: 1px;
    font-weight: 400;
}

.project-footer {
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.project-footer .btn-cyber {
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.project-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-glow {
    opacity: 1;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Black Ops One', 'Audiowide', monospace;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-text p {
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

/* White Paper Styles */
.whitepaper-main {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.whitepaper-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.whitepaper-projects {
    margin-top: 40px;
}

.subsection-title {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: #00ff41;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.whitepaper-card {
    background: rgba(0, 20, 0, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.whitepaper-card:hover {
    border-color: rgba(0, 255, 65, 0.6);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.whitepaper-card.coming-soon {
    opacity: 0.7;
}

.whitepaper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.whitepaper-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whitepaper-status.available {
    background: rgba(0, 255, 65, 0.2);
    color: #00ff41;
    border: 1px solid #00ff41;
}

.whitepaper-status.coming {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid #ffa500;
}

.whitepaper-type {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whitepaper-content-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    color: #00ff41;
    margin-bottom: 15px;
}

.whitepaper-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whitepaper-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    color: #888;
    font-size: 14px;
    padding: 5px 10px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.whitepaper-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* White Paper Document Styles */
.whitepaper-document {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.breadcrumb {
    margin-bottom: 30px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
}

.breadcrumb-link {
    color: #00ff41;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: #888;
    margin: 0 10px;
}

.breadcrumb-current {
    color: #fff;
}

.document-title {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: #00ff41;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.document-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.document-placeholder {
    background: rgba(0, 20, 0, 0.8);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    padding: 40px;
    margin-top: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.placeholder-content h2 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    font-size: 28px;
    margin-bottom: 10px;
}

.placeholder-content h3 {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: normal;
}

.document-status, .document-version, .document-date {
    color: #888;
    margin: 10px 0;
    font-family: 'Share Tech Mono', monospace;
}

.status-tba {
    color: #ffa500;
    font-weight: bold;
}

.placeholder-message {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.placeholder-message p {
    color: #ccc;
    margin: 10px 0;
    font-size: 16px;
}

/* Navigation active state */
.nav-link.active {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41;
}

/* Alien Text Styling */
.alien-text {
    font-family: 'Orbitron', monospace !important;
    color: #ff0080 !important;
    text-shadow: 
        0 0 5px #ff0080,
        0 0 10px #ff0080,
        0 0 15px #ff0080;
    letter-spacing: 4px;
    animation: alienGlow 3s ease-in-out infinite alternate;
}

@keyframes alienGlow {
    0% {
        text-shadow: 
            0 0 5px #ff0080,
            0 0 10px #ff0080,
            0 0 15px #ff0080;
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 8px #ff0080,
            0 0 16px #ff0080,
            0 0 24px #ff0080,
            0 0 32px #ff0080;
        transform: scale(1.02);
    }
}

/* Enhanced project description for alien projects */
.project-card.coming-soon .project-description {
    font-family: 'Share Tech Mono', monospace;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.8;
}

/* Alien tech tags */
.project-card.coming-soon .tech-tag {
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
    border: 1px solid rgba(255, 0, 128, 0.3);
    font-family: 'Orbitron', monospace;
    letter-spacing: 2px;
}

/* Alien project type */
.project-card.coming-soon .project-type {
    color: #ff0080;
    font-family: 'Orbitron', monospace;
    letter-spacing: 3px;
    text-shadow: 0 0 5px #ff0080;
}

/* Classified Status Styling */
.whitepaper-status.classified {
    background: linear-gradient(45deg, #ff0000, #8b0000);
    color: #fff;
    animation: pulse-red 2s infinite;
    text-shadow: 0 0 10px #ff0000;
    border: 1px solid #ff0000;
}

@keyframes pulse-red {
    0%, 100% { 
        box-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000;
    }
    50% { 
        box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
    }
}

/* Whitepaper Output Styling */
.whitepaper-output {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00ff41;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
}

.whitepaper-output .terminal-output {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.whitepaper-output .terminal-output.classified-data {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.whitepaper-output .terminal-output.alien-data {
    color: #ff0080;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px #ff0080;
    letter-spacing: 2px;
}

/* Responsive Design for White Paper */
@media (max-width: 768px) {
    .whitepaper-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .whitepaper-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .document-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .placeholder-content h2 {
        font-size: 20px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .alien-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}
