/* ─── CV PAGE ────────────────────────────────────────────── */

.cv-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 4% 60px;
    width: 90%;
}

.cv-page-title {
    font-family: 'Press Start 2P', monospace;
    color: #e8ff00;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.9;
    letter-spacing: 2px;
}

/* ─── SECTION BLOCKS ─────────────────────────────────────── */
.cv-section {
    margin-bottom: 32px;
    padding: 28px 32px;
}

.cv-section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.78rem;
    color: #ff2d78;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff2d78;
    line-height: 1.7;
    letter-spacing: 2px;
}

/* ─── SKILLS TABLE ───────────────────────────────────────── */
.skills-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'VT323', monospace;
    font-size: 1.35rem;
}

.skills-table th {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: #e8ff00;
    border: 2px solid #00e5ff;
    padding: 12px 20px;
    text-align: left;
    background-color: #0e001f;
    letter-spacing: 1px;
    line-height: 1.7;
}

.skills-table td {
    border: 1px solid #00e5ff;
    padding: 7px 20px;
    color: #e8e8ff;
}

.skills-table tr:nth-child(even) td {
    background-color: #0a0018;
}

.skills-table tr:hover td {
    background-color: #140030;
    color: #e8ff00;
}

/* ─── ROLE CARDS ─────────────────────────────────────────── */
.cv-role {
    margin-bottom: 28px;
    padding: 24px 28px;
}

.cv-role-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.72rem;
    color: #00e5ff;
    margin: 0 0 10px 0;
    line-height: 1.75;
}

.cv-company {
    display: block;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: #e8ff00;
    margin-bottom: 6px;
}

.cv-dates {
    display: inline-block;
    font-family: 'VT323', monospace;
    font-size: 1.25rem;
    color: #ff2d78;
    border: 1px solid #ff2d78;
    padding: 1px 12px;
    margin-bottom: 14px;
    box-shadow: 2px 2px 0 0 #ff2d78;
}

.cv-company-desc {
    color: #c8c8ff;
    font-size: 1.3rem;
    margin: 0 0 16px 0;
    opacity: 0.75;
}

.cv-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.58rem;
    color: #e8ff00;
    margin: 18px 0 8px 0;
    line-height: 1.7;
    letter-spacing: 1px;
}

.cv-text {
    font-size: 1.35rem;
    color: #e8e8ff;
    line-height: 1.6;
    margin: 0 0 8px 0;
}

/* Override global li styles for cv achievements */
.cv-achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.cv-achievements li {
    float: none;
    height: auto;
    padding: 0 0 0 22px;
    color: #e8e8ff;
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.cv-achievements li::before {
    content: '>';
    color: #ff2d78;
    position: absolute;
    left: 0;
    font-family: 'VT323', monospace;
    font-size: 1.35rem;
    font-weight: bold;
}

/* ─── TOOLSET BAR ────────────────────────────────────────── */
.cv-toolset {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #00e5ff;
    font-size: 1.3rem;
    color: #00e5ff;
    line-height: 1.6;
}

.cv-toolset-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: #e8ff00;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .cv-container {
        width: 94%;
        padding: 12px 3% 40px;
    }

    .cv-section {
        padding: 18px 16px;
    }

    .cv-role {
        padding: 16px;
    }

    .cv-page-title {
        font-size: 0.72rem;
    }

    .skills-table th {
        font-size: 0.5rem;
        padding: 8px 10px;
    }

    .skills-table td {
        padding: 6px 10px;
    }
}
