/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #121212;
    color: #7FFF7F;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    line-height: 1.6;
    padding: 1rem;
}

/* Container */
.container {
    max-width: 56rem;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #7FFF7F;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #7FFF7F;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-weight: bold;
    color: #7FFF7F;
}

p {
    margin-bottom: 0.75rem;
}

/* Links */
a {
    color: #00FF00;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #7FFF7F;
}

/* Header */
header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #7FFF7F;
}

.ascii-border {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    color: #7FFF7F;
    opacity: 0.6;
}

.header-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.avatar-container {
    flex-shrink: 0;
}

.avatar {
    width: 6rem;
    height: 6rem;
    border: 2px solid #7FFF7F;
    padding: 0.25rem;
    background-color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.emoji {
    font-size: 3rem;
}

.header-info {
    flex: 1;
    min-width: 250px;
}

.subtitle {
    font-size: 1.25rem;
    color: #5FFF5F;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links svg {
    flex-shrink: 0;
}

/* Sections */
section {
    margin-bottom: 2rem;
}

.prompt {
    color: #00FF00;
}

.content {
    padding-left: 1.5rem;
    border-left: 2px solid #262626;
}

.muted {
    color: #5FFF5F;
}

/* Experience */
.experience-item {
    margin-bottom: 1rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.date {
    font-size: 0.875rem;
    color: #5FFF5F;
    margin-bottom: 0.5rem;
}

ul {
    list-style: disc;
    list-style-position: inside;
    margin-left: 0;
}

li {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.875rem;
}

.arrow {
    color: #00FF00;
}

/* Projects */
.project-item {
    margin-bottom: 0.75rem;
}

.project-item:last-child {
    margin-bottom: 0;
}

.project-link {
    font-size: 1.125rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.project-item p {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

/* Footer */
footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #7FFF7F;
    font-size: 0.875rem;
    color: #5FFF5F;
}

.center {
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .header-content {
        flex-direction: column;
    }

    .avatar {
        width: 5rem;
        height: 5rem;
    }

    .emoji {
        font-size: 2.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .ascii-border {
        font-size: 0.625rem;
    }
}

@media (min-width: 769px) {
    body {
        padding: 2rem;
    }

    .avatar {
        width: 8rem;
        height: 8rem;
    }

    .emoji {
        font-size: 4rem;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
