body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ededed;
    letter-spacing: 0.01em;
}

.container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-card {
    background: #111;
    border-radius: 28px;
    box-shadow: 0 0 0 2px #222, 0 0 32px 8px #000a, 0 0 0 2px #222 inset;
    padding: 44px 28px 70px 28px;
    max-width: 410px;
    width: 96vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #222;
    animation: cardGlow 2.5s infinite alternate;
}
@keyframes cardGlow {
    from { box-shadow: 0 0 0 2px #222, 0 0 32px 4px #111a, 0 0 0 2px #222 inset; }
    to { box-shadow: 0 0 0 2px #333, 0 0 80px 18px #111a, 0 0 0 4px #111 inset; }
}
.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    background: radial-gradient(circle, #fff2 0%, #0000 80%);
    filter: blur(4px);
    opacity: 0.7;
    animation: starGlow 3.2s infinite alternate;
    z-index: 2;
}
@keyframes starGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 4px solid #222;
    box-shadow: 0 6px 32px 6px #000a, 0 0 0 10px #222;
    background: #181818;
    transition: box-shadow 0.4s, border 0.4s;
    z-index: 3;
    position: relative;
}
.profile-img:hover {
    box-shadow: 0 6px 64px 16px #fff3, 0 0 0 16px #111;
    border: 4px solid #fff;
}
h1 {
    margin: 0 0 8px 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px #0008, 0 0 6px #111;
    letter-spacing: 0.03em;
    border-bottom: 2px solid #333;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

p {
    margin: 0 0 18px 0;
    color: #bdbdbd;
    font-size: 1.08rem;
    text-shadow: 0 1px 4px #0005;
}
.social-links {
    margin: 12px 0 24px 0;
    display: flex;
    justify-content: center;
    gap: 22px;
    filter: drop-shadow(0 2px 8px #0006);
    border-bottom: 1.5px solid #222;
    padding-bottom: 14px;
}
.social-links a img {
    width: 36px;
    height: 36px;
    transition: transform 0.4s, box-shadow 0.4s, filter 0.4s;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 2px 16px #0004;
    filter: grayscale(0.2) brightness(0.93);
    border: 2px solid #222;
}
.social-links a img:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 32px #fff3, 0 0 0 6px #222;
    filter: grayscale(0) brightness(1.12) drop-shadow(0 0 10px #fff2);
    border: 2px solid #fff;
}
.social-links a img:hover {
    transform: scale(1.13) rotate(-7deg);
    box-shadow: 0 4px 16px rgba(42,82,152,0.18);
}
.about, .contact {
    margin-top: 22px;
    background: #181818;
    border-radius: 14px;
    padding: 18px 14px 12px 14px;
    box-shadow: 0 2px 16px #0005;
    border: 1.5px solid #222;
    position: relative;
}
.about::after, .contact::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #0000, #444 40%, #444 60%, #0000);
    border-radius: 1px;
}

.about h2, .contact h2 {
    margin: 0 0 8px 0;
    font-size: 1.18rem;
    color: #ededed;
    text-shadow: 0 2px 12px #0008, 0 0 6px #111;
    letter-spacing: 0.04em;
    border-bottom: 1.5px solid #333;
    padding-bottom: 4px;
}
.about p, .contact p {
    margin: 0;
    color: #bdbdbd;
    font-size: 1.04rem;
    text-shadow: 0 1px 4px #0005;
}
a {
    color: #ededed;
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
    font-weight: 500;
}

a:hover {
    color: #fff;
    text-shadow: 0 2px 14px #fff6, 0 0 6px #000a;
    text-decoration: underline;
}

/* Animasyonlar */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(.77,0,.18,1) forwards;
}
.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1.1s cubic-bezier(.77,0,.18,1) forwards;
}
.animate-pop-in {
    opacity: 0;
    transform: scale(0.6);
    animation: popIn 0.9s cubic-bezier(.77,0,.18,1) forwards;
}

/* Animasyonlu Progress Bar (Yetenekler için) */
.skills-bar {
    margin: 28px 0 0 0;
    padding: 0 0 8px 0;
    border-top: 1.5px solid #333;
}
.skill {
    margin: 12px 0 8px 0;
    color: #ededed;
    font-size: 1.03rem;
    letter-spacing: 0.02em;
    text-align: left;
}
.skill-bar-bg {
    width: 100%;
    background: #222;
    border-radius: 6px;
    height: 12px;
    overflow: hidden;
    margin-top: 3px;
    box-shadow: 0 2px 8px #0005 inset;
}
.skill-bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, #fff 0%, #888 100%);
    box-shadow: 0 0 8px #fff2;
    animation: fillBar 2s cubic-bezier(.77,0,.18,1) forwards;
    width: 0;
}
@keyframes fillBar {
    from { width: 0; }
    to { width: var(--bar-width); }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 600px) {
    .profile-card {
        padding: 28px 6vw;
        max-width: 98vw;
    }
    h1 {
        font-size: 1.5rem;
    }
    .about, .contact {
        padding: 10px 4px;
    }
}
