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

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #00ff41;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid #00ff41;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ff41;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    font-style: italic;
}

.content {
    margin-bottom: 4rem;
}

.quote-block {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 4rem;
    color: #00ff41;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: normal;
}

h2 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    border-left: 3px solid #00ff41;
    padding-left: 1rem;
}

h3 {
    color: #00ff41;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.concept {
    margin: 2rem 0;
    padding: 1rem 0;
}

.concept p {
    margin: 1rem 0;
    opacity: 0.9;
}

.matrix-code {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.matrix-code pre {
    overflow-x: auto;
}

.matrix-code code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #00ff41;
    line-height: 1.4;
}

.final-wisdom {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    border: 1px solid #00ff41;
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.02);
}

.large-quote {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 0 5px #00ff41;
}

.call-to-action {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #00ff41;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .quote-block {
        padding: 1.5rem;
    }
    
    blockquote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .large-quote {
        font-size: 1.1rem;
    }
}

/* Subtle glow effect for code blocks */
.matrix-code {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

/* Selection styling */
::selection {
    background: rgba(0, 255, 65, 0.2);
    color: #ffffff;
}