@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600&display=swap');

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

body {
    font-family: 'Source Code Pro', monospace;
    background: #000;
    color: #00ff00;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid #00ff00;
    margin-bottom: 30px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.blink {
    animation: blink 1s infinite;
}

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

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #00ff00;
    font-size: 14px;
}

.btn-post {
    color: #000 !important;
    background: #00ff00;
    padding: 5px 15px;
}

.terminal-window {
    background: #111;
    border: 2px solid #00ff00;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    background: #222;
    padding: 10px 15px;
    border-bottom: 1px solid #00ff00;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

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

.terminal-content {
    padding: 25px;
}

.command {
    margin-bottom: 20px;
    opacity: 0.7;
}

.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.category-card {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #00ff00;
    border: 1px solid #00ff00;
    transition: all 0.2s;
    font-size: 14px;
}

.category-card:hover {
    background: rgba(0, 255, 0, 0.1);
    padding-left: 20px;
}