:root {
    --primary-color: #33FF33;
    --bg-dark: #000000;
    --bg-dark-alt: #111111;
    --text-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    padding-top: 56px;
}

/* Navbar */
.navbar {
    background-color: var(--bg-dark-alt);
    border-bottom: 1px solid var(--primary-color);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-light) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Header/About */
header {
    padding-top: 50px;
    background-color: var(--bg-dark);
}

.profile-img-container {
    text-align: center;
}

.profile-img-container img {
    border: 3px solid var(--primary-color);
    max-width: 250px;
}

.terminal-header {
    background-color: var(--bg-dark-alt);
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.terminal-button:nth-child(1) {
    background-color: #FF5F56;
}

.terminal-button:nth-child(2) {
    background-color: #FFBD2E;
}

.terminal-button:nth-child(3) {
    background-color: #27C93F;
}

.terminal-title {
    color: #cccccc;
    margin-left: 10px;
    font-family: 'Courier New', Courier, monospace;
}

.terminal-body {
    background-color: var(--bg-dark-alt);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    border: 1px solid #333;
}

.typewriter h1 {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    overflow: hidden;
    border-right: .15em solid var(--primary-color);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.bg-light {
    background-color: var(--bg-dark-alt) !important;
}

.card {
    background-color: var(--bg-dark);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
}

.card-title {
    color: var(--primary-color);
}

/* Social Links */
.social-links a {
    margin: 0 5px;
    border-color: var(--primary-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

/* Footer */
footer {
    background-color: var(--bg-dark-alt);
    color: var(--text-light);
    border-top: 1px solid var(--primary-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Skills Icons */
.feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
    background-color: var(--primary-color) !important;
}

/* Buttons */
.btn-outline-primary, .btn-outline-secondary, .btn-outline-success, .btn-outline-info {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-secondary:hover, 
.btn-outline-success:hover, .btn-outline-info:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}