* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #1e1e1e;
    color: #d4d4d4;
    line-height: 1.6;
}

.language-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: #3e3e42;
    background: none;
    color: #dcdcaa;
    text-align: center;
    z-index: 999;
}

/* For screens 900px and wider */
@media (min-width: 900px) {
    .language-button {
        right: 50%;
        transform: translateX(500px);
    }
}

.loading-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #1e1e1e;
    z-index: 9999;
    text-align: center;
    padding-top: 250px;
    color: #4e5e5e;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
}

.hero-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3e3e42;
    align-items: start;
}

.profile-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    border: 3px solid #0e639c;
}

.info-column h1 {
    color: #4ec9b0;
    margin-bottom: 5px;
    font-size: 32px;
}

.role {
    font-size: 18px;
    margin-bottom: 5px;
}

.location {
    color: #808080;
    font-size: 14px;
    margin-bottom: 20px;
}

.about {
    margin-top: 20px;
}

.about h2 {
    color: #569cd6;
    margin-bottom: 10px;
    font-size: 20px;
}

.section {
    margin-bottom: 35px;
}

.section:not(.contact-section) {
    padding-bottom: 20px;
    border-bottom: 1px solid #3e3e42;
}

h2 {
    color: #569cd6;
    margin-bottom: 15px;
    font-size: 20px;
}

h3 {
    color: #dcdcaa;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-section {
    border-top: 1px solid #3e3e42;
    padding-top: 20px;
}

.email-display {
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding: 8px 12px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 3px;
}

.email-display:hover {
    background: #3e3e42;
}

.email-text {
    color: #4ec9b0;
}

.copy-indicator {
    margin-left: 10px;
    color: #808080;
    font-size: 12px;
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.skill-item {
    background: #2d2d30;
    padding: 12px;
    border: 1px solid #3e3e42;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
}

.skill-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Links section - styled similarly to skills */
#link-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.link-item {
    background: #2d2d30;
    padding: 12px;
    border: 1px solid #3e3e42;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    color: #d4d4d4;
    text-decoration: none;
}

.link-item:hover {
    background: #333337;
}

.link-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.experience-item {
    background: #252526;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid #0e639c;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.experience-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.experience-item p {
    color: #9cdcfe;
    font-size: 14px;
    margin-bottom: 10px;
}

.experience-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.experience-links a {
    color: #4ec9b0;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 8px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 3px;
}

.experience-links a:hover {
    text-decoration: underline;
}

.copy-msg {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0e639c;
    color: white;
    padding: 12px 20px;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-weight: bold;
}

.copy-msg.show {
    opacity: 1;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    background: #252526;
    padding: 15px;
    border-left: 3px solid #0e639c;
}

.info-name {
    color: #dcdcaa;
    font-weight: bold;
    margin-bottom: 5px;
}

.info-content {
    color: #9cdcfe;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .avatar-image {
        width: 140px;
        height: 140px;
    }
    
    .skills {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}