/* General Styles */
body {
    background-color: #1a1a1a;
    color: #00ff41;
    font-family: 'Fira Code', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Terminal Window */
.terminal {
    width: 100%;
    max-width: 800px;
    background-color: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Terminal Header */
.terminal-header {
    background-color: #2c2c2c;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-buttons {
    display: flex;
}

.header-buttons .button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

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

.header-title {
    color: #b3b3b3;
    font-size: 14px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Terminal Body */
.terminal-body {
    padding: 15px;
}

/* Navigation Tabs */
.terminal-nav {
    display: flex;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
}

.nav-tab {
    font-family: 'Fira Code', monospace;
    background: none;
    border: none;
    color: #00ff41;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.nav-tab:hover {
    background-color: #2a2a2a;
}

.nav-tab.active {
    color: #ffffff;
    border-bottom: 2px solid #00ff41;
}

/* Content Sections */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.content-section p {
    margin: 0 0 1em 0;
}

/* Button Grid for Links */
.button-grid {
    display: grid;
    gap: 10px;
}

a.link-button {
    background-color: #1c1c1c;
    color: #00ff41;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #333;
    transition: all 0.2s ease-in-out;
    word-wrap: break-word;
}

a.link-button:hover {
    background-color: #00ff41;
    color: #0d0d0d;
    border-color: #00ff41;
}
