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

body {
    background: #0a0a0a;
    color: #e6e6e6;
    font-family: monospace;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

h1,
h2,
h3 {
    font-weight: 400;
    margin-bottom: 10px;
}

section {
    margin-bottom: 60px;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

section:nth-child(1) {
    animation-delay: 0s;
}

section:nth-child(2) {
    animation-delay: 0.1s;
}

section:nth-child(3) {
    animation-delay: 0.2s;
}

section:nth-child(4) {
    animation-delay: 0.3s;
}

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

a:hover {
    text-decoration: underline;
}

.lang {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #555;
    color: #fff;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.lang:hover {
    background: #222;
}

.terminal {
    font-size: 18px;
    padding: 100px 20px;
}

.hidden {
    display: none;
}

.prompt {
    color: #7ee787;
}

.intro-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    flex-shrink: 0;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 24px;
    color: #7ee787;
}

.social-links a {
    font-size: 24px;
    color: #7ee787;
    transition: transform 0.2s, color 0.2s;
}

.social-links svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-links img {
    width: 24px;
    height: 24px;
    display: block;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #fff;
}

.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    border: 1px solid #222;
    padding: 20px;
    margin-top: 20px;
}

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

.card i {
    font-size: 20px;
}

.project {
    border: 1px solid #222;
    margin-top: 20px;
}

.project-content {
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border: 1px solid #222;
    border-radius: 4px;
    background: transparent;
    border: none;
}

.gallery img:hover {
    transform: scale(1.03);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .intro-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }
}