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

@media print {
    body {
        background: #f6ede4 !important;
    }
}

body {
    font-family: 'Courier New', monospace;
    background: #f6ede4;
    color: #000;
    line-height: 1.5;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f6ede4;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border: 3px solid #f6ede4;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

.header {
    border: 4px solid #000;
    padding: 30px;
    margin-bottom: 30px;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
}

.contact-info span {
    white-space: nowrap;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
}

.section {
    border: 4px solid #000;
    padding: 25px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 3px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.job,
.project,
.education-item {
    margin-bottom: 20px;
}

.job-header,
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.job-title,
.project-title {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.company,
.date {
    font-size: 13px;
}

.company {
    margin-bottom: 8px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-tag {
    border: 2px solid #000;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-tag:hover {
    background: #000;
    color: #fff;
}

ul {
    margin-left: 20px;
    margin-top: 8px;
}

li {
    margin-bottom: 5px;
    font-size: 13px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.skill-item {
    border: 2px solid #000;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.skill-item:hover {
    background: #000;
    color: #fff;
}

.print-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border: 3px solid #000;
    background: #f6ede4;
    color: #000;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.print-button:hover {
    background: #000;
    color: #fff;
}

@media print {
    .print-button {
        display: none;
    }

    body {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .section,
    .header {
        padding: 15px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 16px;
    }

    .print-button {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }
}