* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #1a1a1a,  #0f0f0f);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

.navbar {
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20,20,20,0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999999999999999999999;
}

.navbar h1 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
}

.navbar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.navbar ul li a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.5s;
}

.navbar ul li a:hover {
    color: #6f00ff;
    text-shadow: 0 0 12px #6f00ff;
}

.hero {
    max-width: 60rem;
    margin: 6rem auto 0;
    text-align: center;
    padding: 0 1rem;
}

.rozet {
    background: rgba(111, 0, 255, 0.2);
    padding: .4rem .9rem;
    border-radius: 20px;
    font-size: .8rem;
    margin-bottom: 1rem;
    color: #9453e7;
    border: 1px solid rgba(133, 40, 255, 0.39);
    display: inline-block;
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    color: #c5c5c5;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 45rem;
    margin: auto;
}

.profile {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    border: 3px solid #6f00ff;
    box-shadow: 0 0 25px #9900ff44;
}

.profile h3 {
    font-size: 1.6rem;
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
}

.profile h4 {
    color: #bbb;
    font-weight: 400;
}

.glow {
    position: absolute;
    width: 100%;
    height: 600px;
    background: radial-gradient(circle, #4c00ff33, transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.cizgi {
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    width: 50%;
    height: 0.2rem;
    margin: 3rem auto;
    opacity: 0.1;
    border-radius: 100%;
}

.yetenekler {
    max-width: 70rem;
    margin: 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

.yetenekler-title {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
}

.yetenekler-desc {
    color: #c5c5c5;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.yetenekler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.yetenek-kart {
    background: rgba(25, 25, 25, 0.6);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(111, 0, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.3s ease;
    position: relative;
    box-shadow: 0 0 12px #00000066;
}

.yetenek-kart:hover {
    transform: translateY(-6px);
    border-color: #6f00ff;
    box-shadow: 0 0 25px #6f00ff55;
}

.yetenek-kart img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.yetenek-kart h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
}

.yetenek-kart p {
    font-size: 0.9rem;
    color: #bdbdbd;
    line-height: 1.4;
}

.morneon {
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 6px #8d3bffcc, 0 0 24px #a64dffcc; /* ← FINAL neon efekti */
    animation: flicker 3s ease-out 1;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57% {
        text-shadow: 0 0 6px #8d3bffcc, 0 0 24px #a64dffcc;
        opacity: 1;
    }

    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.45;
    }

    100% {
        text-shadow: 0 0 6px #8d3bffcc, 0 0 24px #a64dffcc; /* ← bitince neon açık */
        opacity: 1;
    }
}


img, svg {
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }

    .navbar ul {
        gap: 1rem;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .navbar ul li a {
        font-size: .9rem;
    }
}

.hakkimda-section {
    padding: 140px 0;
    display: flex;
    justify-content: center;
}

.hakkimda-container {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.hakkimda-yazi {
    width: 50%;
    opacity: 0;
    animation: slideLeft 0.9s ease forwards;
}

.hakkimda-yazi h2 {
    font-size: 2.7rem;
    font-weight: 800;
    background: linear-gradient(90deg, #5b66ff, #6f00ff);
    -webkit-background-clip: text;
    color: transparent;
}

.hakkimda-yazi p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d8d2ff;
    margin-bottom: 16px;
}

.hakkimda-etiketler {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hakkimda-etiketler span {
    background: rgba(120, 40, 255, 0.15);
    border: 1px solid rgba(160, 80, 255, 0.4);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.hakkimda-sag {
    width: 40%;
    display: flex;
    justify-content: center;
}

.küre-container {
    width: 260px;
    height: 260px;
    position: relative;
    perspective: 1000px;
}

.küre {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: spin 10s linear infinite;
    transform-origin: center center;
}

.küre span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;

    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(120, 30, 255, 0.12);
    border: 1px solid rgba(150, 80, 255, 0.45);
    box-shadow: 0 0 15px #8d3bff80;
    color: #e0d4ff;
    font-weight: 600;
    transform-origin: 0 0;
}

.küre span:nth-child(1) { transform: rotateY(0deg) translateZ(130px); }
.küre span:nth-child(2) { transform: rotateY(60deg) translateZ(130px); }
.küre span:nth-child(3) { transform: rotateY(120deg) translateZ(130px); }
.küre span:nth-child(4) { transform: rotateY(180deg) translateZ(130px); }
.küre span:nth-child(5) { transform: rotateY(240deg) translateZ(130px); }
.küre span:nth-child(6) { transform: rotateY(300deg) translateZ(130px); }

@keyframes spin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

@keyframes slideLeft {
    from { transform: translateX(-60px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@media (max-width: 600px) {

    .hakkimda-section {
        padding: 80px 0;
    }

    .hakkimda-container {
        width: 90%;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .hakkimda-yazi {
        width: 100%;
        text-align: left;
    }

    .hakkimda-yazi h2 {
        font-size: 2rem;
    }

    .hakkimda-yazi p {
        font-size: 1rem;
        line-height: 1.55;
        color: #e9e4ff;
    }

    .hakkimda-etiketler {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hakkimda-etiketler span {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    .hakkimda-sag {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .küre-container {
        width: 200px;
        height: 200px;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #491d81;
    border: 2px solid #000;
}

.footer {
    width: 100%;
    background: rgba(20, 20, 20, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    margin-top: 120px;
}

.footer-container {
    width: 75%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-left h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #6f00ff, #9d4bff);
    -webkit-background-clip: text;
    color: transparent;
}

.footer-left p {
    margin-top: 10px;
    color: #cfc8ff;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-links a,
.footer-social a {
    color: #cfc8ff;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #9b5bff;
    text-shadow: 0 0 5px #c5c5c5;
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #bfb6e8;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .footer-container {
        width: 90%;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left p {
        max-width: 100%;
    }
}