/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    background-color: #0a0a0a;
    color: #00ff00;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Terminal Styles */
.terminal {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    flex-grow: 1;
}

.terminal-header {
    background-color: #111;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.terminal-title {
    color: #888;
    font-size: 0.8rem;
}

.terminal-body {
    padding: 1.5rem;
    background-color: #000;
    min-height: 500px;
    position: relative;
}

/* Typewriter Effect */
.typewriter {
    margin-bottom: 2rem;
    border-left: 3px solid #00ff00;
    padding-left: 1rem;
}

.typewriter h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00ff00;
}

.typewriter p {
    color: #00aa00;
    font-style: italic;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.content-card {
    padding: 1.5rem;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: rgba(0, 20, 0, 0.3);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.1);
}

.cyber-card {
    border-top: 3px solid #0077ff;
}

.med-card {
    border-top: 3px solid #ff3366;
}

.content-card h2 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-card ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.content-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.content-card li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00ff00;
}

/* Hacker Button */
.hacker-button {
    background-color: transparent;
    color: #00ff00;
    border: 1px solid #00ff00;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hacker-button:hover {
    background-color: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.hacker-button:active {
    transform: translateY(2px);
}

/* Console Output */
.console-output {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(0, 20, 0, 0.2);
    border-left: 3px solid #00ff00;
}

.console-output p {
    margin-bottom: 0.5rem;
    color: #00aa00;
}

/* Command Line */
.command-line {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.prompt {
    margin-right: 0.5rem;
    color: #00ff00;
}

#command-input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #00ff00;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    flex-grow: 1;
    padding: 0.5rem;
    outline: none;
}

/* Matrix Background */
.matrix-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    color: #008800;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal {
        width: 95%;
        margin: 1rem auto;
    }
}
.quote-section {
    background-color: #0a0a0a;
    border: 1px solid #00ff41;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
}

.quote-container {
    margin: 15px 0;
    padding: 10px;
    border-left: 3px solid #00ff41;
}

#quote-text {
    color: #00ff41;
    font-size: 1.1em;
    line-height: 1.5;
}

#quote-author {
    color: #4CAF50;
    text-align: right;
    font-style: italic;
    margin-top: 10px;
}
