body {
    background-color: #1a1a1a;
    color: #ffa500;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
}

a {
    color: #ffcc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.soft-card {
    border: 2px dotted #ffcc00;
    padding: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
}

h1, h2, .position {
    color: #ff9900;
    border-bottom: 1px dashed #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.lang___flag-icon {
    width: 24px;
    height: 16px;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.contact strong {
    margin-right: 10px;
}

.contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px dashed #ffcc00;
    border-radius: 50%;
    transition: background 0.3s;
}

.contact a:hover {
    background: #ffcc00;
}

.contact img {
    width: 18px;
    height: 18px;
}

ul li {
    list-style: square;
    margin-left: 20px;
    margin-bottom: 5px;
}

.skills span {
    display: inline-block;
    background: rgba(255, 204, 0, 0.1);
    border: 1px dashed #ffcc00;
    padding: 4px 8px;
    margin: 3px;
}

#to__top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    color: #1a1a1a;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.home-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 204, 0, 0.1);
    border: 2px dashed #ffcc00;
    color: #ffcc00;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
}

.home-icon:hover {
    background: #ffcc00;
    color: #1a1a1a;
}