:root {
    --terminal-bg: #000000;
    --terminal-text: #00FF00;
    --terminal-pink: #FF1493;
    --terminal-gray: #333333;
    --terminal-light-gray: #666666;
    --font-mono: 'Fira Code', monospace;
}

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

body {
    background-color: #111;
    color: var(--terminal-text);
    font-family: var(--font-mono);
    line-height: 1.6;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal-container {
    width: 95%;
    max-width: 1200px;
    background-color: var(--terminal-bg);
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2),
                0 0 40px rgba(255, 20, 147, 0.1);
    overflow: hidden;
}

.terminal-header {
    background-color: var(--terminal-gray);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--terminal-light-gray);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

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

.terminal-button.close { background-color: #ff5f56; }
.terminal-button.minimize { background-color: #ffbd2e; }
.terminal-button.maximize { background-color: #27c93f; }

.terminal-title {
    color: var(--terminal-text);
    margin-left: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.terminal-content {
    padding: 1rem;
    overflow-y: auto;
    max-height: 90vh;
}

.terminal-line {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.2em;
}

.prompt {
    color: var(--terminal-pink);
}

.command {
    color: var(--terminal-text);
    position: relative;
    min-width: 1ch;
    display: inline-block;
}

.command.typing::after {
    content: "▋";
    position: absolute;
    right: -1ch;
    animation: blink 1s infinite;
}

.output {
    margin: 0.75rem 0 1.5rem 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.ascii-art {
    margin: 1.5rem 0;
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
}

.ascii-art.logo {
    color: var(--terminal-pink);
}

.ascii-art.target {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.man-page h1, .man-page h2 {
    color: var(--terminal-pink);
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.5rem;
    border: 1px solid var(--terminal-gray);
    border-radius: 4px;
}

.feature-item .icon {
    font-size: 1.5rem;
}

.feature-item .name {
    color: var(--terminal-pink);
    font-weight: bold;
}

.feature-item .description {
    color: #fff;
    opacity: 0.8;
}

.terminal-form {
    background-color: var(--terminal-gray);
    padding: 1.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group label {
    color: var(--terminal-pink);
    min-width: 100px;
}

.form-group input,
.form-group select {
    background-color: var(--terminal-bg);
    border: 1px solid var(--terminal-text);
    color: var(--terminal-text);
    padding: 0.5rem;
    font-family: var(--font-mono);
    width: 100%;
    max-width: 300px;
}

button {
    background-color: var(--terminal-pink);
    color: var(--terminal-bg);
    border: none;
    padding: 0.5rem 2rem;
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--terminal-text);
    box-shadow: 0 0 10px var(--terminal-text);
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--terminal-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--terminal-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--terminal-pink);
}

/* Remove the old cursor animation */
.terminal-line::after {
    content: none;
}

.about-section,
.features-section,
.join-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    margin-bottom: 2rem;
}

.about-section.visible,
.features-section.visible,
.join-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure sections are visible but transparent initially */
.about-section,
.features-section,
.join-section {
    display: block;
    visibility: visible;
}

/* Terminal line spacing and cursor */
.terminal-line {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 1.2em;
}

.command {
    color: var(--terminal-text);
    position: relative;
    min-width: 1ch;
    display: inline-block;
}

.command.typing::after {
    content: "▋";
    position: absolute;
    right: -1ch;
    animation: blink 1s infinite;
}

/* Feature window styles */
.feature-window {
    background-color: var(--terminal-bg);
    border: 1px solid var(--terminal-gray);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.feature-window .terminal-content {
    padding: 1rem;
    overflow-y: auto;
    max-height: calc(80vh - 40px);
}

.feature-window .feature-details {
    opacity: 1;
    transform: none;
    display: block;
    margin-top: 1rem;
}

.feature-content {
    color: #fff;
    padding: 1rem;
}

.feature-content h1 {
    color: var(--terminal-pink);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-content h2 {
    color: var(--terminal-text);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    border-bottom: 1px solid var(--terminal-gray);
    padding-bottom: 0.3rem;
}

.feature-content section {
    margin: 1.5rem 0;
}

.feature-content ul, 
.feature-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.feature-content li {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.feature-content .note {
    color: var(--terminal-pink);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

.feature-content pre {
    background-color: var(--terminal-gray);
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    white-space: pre;
}

.feature-content .specs-list li {
    font-family: var(--font-mono);
}

/* Ensure the command in the feature window is visible */
.feature-window .terminal-line {
    margin-bottom: 1rem;
    opacity: 1;
}

.feature-window .command {
    color: var(--terminal-text);
}

/* Add some hover effects to the close button */
.feature-window .terminal-button.close:hover {
    background-color: #ff3333;
    box-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
} 