body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0 12px;
    background-color: #181c23;
    color: #e0e3e7;
}

.container {
    min-width: 900px;
    max-width: 100%;
    margin: 12px auto;
    padding: 20px 20px;
    background: rgba(28, 32, 40, 0.98);
    border-radius: 14px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.7);
}

header {
    background: linear-gradient(90deg, #232b38 0%, #1a2230 100%);
    color: #00eaff;
    padding: 18px 0 14px 0;
    text-align: left;
    border-radius: 10px 10px 0 0;
    margin-bottom: 18px;
}

h1 {
    margin: 0;
    font-size: 2.2em;
    color: #00eaff;
    letter-spacing: 1px;
}

header p {
    margin: 6px 0 0 0;
    color: #7fffd4;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

.profile-header {
    display: flex;
    align-items: center;
    margin: 18px;
    position: relative;
}

.profile-pic {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00eaff;
    background: #232b38;
    box-shadow: 0 2px 12px #00eaff33;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section {
    background: #232b38;
    margin: 18px 0;
    padding: 20px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 10px #00eaff11;
    transition: background 0.2s;
}

section h2 {
    color: #00eaff;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

section h2:hover {
    color: #7fffd4;
}

ul, li {
    color: #e0e3e7;
}

a {
    color: #7fffd4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.toggle-button {
    background: #35424a;
    color: #ffffff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.toggle-button:hover {
    background: #2c3e50;
}

.skills-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
    background: #232b38;
    color: #e0e3e7;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px #00eaff11;
    font-size: 1em;
    table-layout: fixed;
}

.skills-table th, .skills-table td {
    padding: 10px 6px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid #2d3644;
    word-break: break-word;
    font-size: 0.98em;
    line-height: 1.4;
}

.skills-table th:last-child,
.skills-table td:last-child {
    border-right: none;
}

.skills-table th {
    background: #1a2230;
    color: #00eaff;
    font-weight: 600;
    font-size: 1.02em;
    padding-top: 8px;
    padding-bottom: 8px;
}

.skills-table ul {
    margin: 4px 0 0 18px;
    padding: 0;
    list-style: disc inside;
}

.skills-table tr:not(:first-child):hover td {
    background: #263043;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

.exp-job {
    background: #232b38;
    border-radius: 8px;
    box-shadow: 0 2px 10px #00eaff11;
    padding: 18px 16px 12px 16px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.exp-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    margin-bottom: 8px;
    font-size: 1.08em;
}

.exp-header strong {
    color: #00eaff;
    font-size: 1.1em;
    margin-right: 8px;
}

.exp-location {
    color: #7fffd4;
    font-weight: 500;
}

.exp-place {
    color: #b0b8c1;
    font-size: 0.98em;
}

.exp-dates {
    color: #b0b8c1;
    font-size: 0.95em;
    margin-left: auto;
    font-style: italic;
}