:root {
    --primary: #8b5cf6;
    --secondary: #3b82f6;
    --bg-dark: #000000;
    --card-bg: rgba(0, 0, 0, 0.65);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
}

/* Hareketli Arka Plan Blobları */
.blob-container {
    display: none;
}

.blob,
.blob:nth-child(1),
.blob:nth-child(2),
.blob:nth-child(3) {
    display: none;
}

@keyframes move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

/* Navigasyon */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.85);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
    overflow: hidden;
}

.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.intro-overlay .intro-content {
    max-width: 700px;
}

.intro-overlay h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.35em;
    color: #c084fc;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.intro-arrow {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition);
}

.intro-arrow i {
    font-size: 2rem;
    color: #fff;
    animation: bounceArrow 1.4s ease-in-out infinite;
}

.intro-arrow:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.intro-overlay p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1.5rem;
}

.intro-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

body.intro-open {
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.hero h2 {
    font-size: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Butonlar */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin: 0 0.5rem;
}

.btn-primary {
    background: #111111;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.06);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.65);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.08);
}

/* Discord Kartı Tasarımı */
.about-discord {
    padding: 100px 10%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.discord-card,
.about-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.discord-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.stats-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.stats-card { display: none !important; }

.stats-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.card-header i {
    color: #5865F2;
    /* Discord Rengi */
    font-size: 1.5rem;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: var(--text-main);
}

.stat.me .stat-icon {
    background: rgba(0, 0, 0, 0.45);
    color: var(--text-main);
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
}

.level-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.level-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.level-name {
    font-size: 0.85rem;
    color: var(--text-main);
    opacity: 0.9;
}

.progress-wrap {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.progress-text {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.floating-visit {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    transition: var(--transition);
}

.floating-visit i {
    color: var(--primary);
    font-size: 16px;
}

.floating-visit span {
    font-weight: 700;
    letter-spacing: 0.4px;
}

.floating-visit:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}

@media (max-width: 480px) {
    .floating-visit {
        right: 12px;
        bottom: 12px;
        padding: 8px 12px;
    }
}

/* Discord Profil İçeriği */
.discord-profiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.discord-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-container {
    position: relative;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.discord-item {
    min-height: 100%;
}

.profile-link {
    margin-top: 1rem;
}

.profile-link a {
    display: inline-block;
    color: var(--text-main);
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    transition: var(--transition);
}

.profile-link a:hover {
    background: rgba(0, 0, 0, 0.55);
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.info h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.discord-tag {
    font-size: 0.8rem !important;
    opacity: 0.6;
    margin-bottom: 8px;
}

.status-name {
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* Spotify Kartı Stilleri */
.spotify-track {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: #1ed760;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.spotify-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotify-info {
    flex: 1;
    min-width: 0;
}

.song-name {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-name {
    font-size: 0.8rem;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Spotify Dalga Animasyonu */
.spotify-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.spotify-wave span {
    width: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.spotify-wave span:nth-child(2) {
    animation-delay: 0.1s;
    height: 60%;
}

.spotify-wave span:nth-child(3) {
    animation-delay: 0.2s;
    height: 80%;
}

.spotify-wave span:nth-child(4) {
    animation-delay: 0.3s;
    height: 40%;
}

@keyframes wave {

    0%,
    100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

/* Genel Aktivite Stilleri */
.activity-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.activity-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.activity-name {
    font-size: 0.9rem;
}

.activity-text {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Hata Mesajı Stili */
.discord-error {
    text-align: center;
    padding: 1rem;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.discord-error i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

/* Sosyal Medya Grid ve Butonları */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.section-header h2,
.section-header h3 {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.8;
}

.projects-section,
.timeline-section,
.stack-section,
.skills-section,
.github-showcase {
    padding: 80px 10%;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stack-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.stack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stack-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.65rem;
}

.stack-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.stack-card p {
    color: var(--text-dim);
    line-height: 1.8;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.project-card,
.repo-item,
.github-showcase,
.timeline-item,
.tech-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.project-card:hover,
.repo-item:hover,
.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.project-icon,
.repo-top {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
}

.project-link,
.repo-link,
.github-profile-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
}

.project-card h3 {
    margin-bottom: 0.85rem;
}

.project-card p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.project-meta,
.repo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.github-showcase {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.github-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.github-header h3 {
    margin-bottom: 0.5rem;
}

.github-profile-link {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.15rem;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.github-profile-link:hover {
    background: rgba(0, 0, 0, 0.55);
}

.repo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.repo-top i {
    font-size: 1rem;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.5rem;
    padding-left: 1rem;
}

..timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #8b5cf6;
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.2);
}

.timeline-date {
    display: inline-block;
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    margin-bottom: 0.6rem;
}

.timeline-item p {
    color: var(--text-dim);
    line-height: 1.8;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
    padding: 1.5rem;
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.45);
    color: var(--text-main);
    font-weight: 800;
}

.tech-card span {
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .section-header {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2,
    .section-header h3 {
        font-size: 2rem;
    }
}

.cta-link:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.15);
}

.cta-link i {
    font-size: 1rem;
    color: var(--primary);
    animation: bounceArrow 1.4s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

.github-showcase {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 1.75rem;
    grid-column: 1 / -1;
}

.github-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.github-header h3 {
    margin-bottom: 0.45rem;
    font-size: 1.05rem;
}

.github-header p {
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 420px;
}

.github-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    transition: var(--transition);
}

.github-profile-link:hover {
    background: rgba(0, 0, 0, 0.55);
}

.repo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.repo-item {
    display: block;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 180px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.repo-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.repo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.repo-item h4 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
}

.repo-description {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    min-height: 46px;
}

.repo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.repo-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.repo-meta i {
    color: #facc15;
}

.repo-loader,
.repo-empty,
.repo-error {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-item span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platform Özel Renkleri ve Glow Efektleri */
.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

..social-item.discord {
    background: rgba(88, 101, 242, 0.18);
    border-color: rgba(88, 101, 242, 0.45);
}

.social-item.youtube {
    background: rgba(255, 0, 0, 0.18);
    border-color: rgba(255, 0, 0, 0.45);
}

.social-item.spotify {
    background: rgba(29, 185, 84, 0.18);
    border-color: rgba(29, 185, 84, 0.45);
}

.social-item.tiktok {
    background: rgba(0, 0, 0, 0.75);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-item.github {
    background: rgba(24, 23, 23, 0.85);
    border-color: rgba(24, 23, 23, 0.9);
}

.social-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-item span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.social-item.discord:hover {
    background: rgba(88, 101, 242, 0.3);
    box-shadow: 0 0 24px rgba(88, 101, 242, 0.45);
}

.social-item.youtube:hover {
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 24px rgba(255, 0, 0, 0.45);
}

.social-item.spotify:hover {
    background: rgba(29, 185, 84, 0.3);
    box-shadow: 0 0 24px rgba(29, 185, 84, 0.45);
}

.social-item.tiktok:hover {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.16));
    box-shadow: 0 0 24px rgba(37, 244, 238, 0.35), 0 0 30px rgba(254, 44, 85, 0.2);
}

.social-item.github:hover {
    background: rgba(24, 23, 23, 0.95);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.16);
}

/* Animasyon Sınıfları */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.skill-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-main);
    border-radius: 10px;
    font-size: 0.8rem;
    margin: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}
