@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

:root {
    --bg-dark: #10002b;
    --bg-medium: #240046;
    --primary: #9d4edd;
    --highlight: #c77dff;
    --text-light: #e0c3fc;
    --text-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--bg-dark); color: var(--text-light); overflow-x: hidden; position: relative; }

.background-shapes { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.background-shapes::before, .background-shapes::after { content: ''; position: absolute; width: 50vw; height: 50vw; border-radius: 50%; filter: blur(150px); animation: pulse 20s infinite alternate; }
.background-shapes::before { background: rgba(157, 78, 221, 0.3); top: -20%; left: -20%; }
.background-shapes::after { background: rgba(60, 9, 108, 0.4); bottom: -20%; right: -20%; animation-delay: -10s; }
@keyframes pulse { 0% { transform: scale(0.8) rotate(0deg); } 100% { transform: scale(1.2) rotate(30deg); } }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Header & Navigasyon */
.header { padding: 20px 0; position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; background: rgba(16, 0, 43, 0.5); backdrop-filter: blur(10px); transition: all 0.4s ease; }
.header.scrolled { background: rgba(16, 0, 43, 0.85); padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8em; font-weight: 900; text-decoration: none; background: linear-gradient(90deg, var(--text-white) 50%, var(--highlight) 50%); background-size: 200% 100%; background-position: 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: background-position 0.5s ease-in-out; }
.logo:hover { background-position: 0%; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { color: var(--text-light); text-decoration: none; font-weight: 700; transition: color 0.3s; position: relative; padding-bottom: 5px; }
.main-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: var(--highlight); transform: scaleX(0); transform-origin: bottom right; transition: transform 0.3s ease-out; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: bottom left; }
.main-nav a.active { color: var(--text-white); }
.main-nav a:hover { color: var(--highlight); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5em; cursor: pointer; }

/* Yeniden Tasarlanmış Hero Bölümü */
.hero { padding-top: 150px; padding-bottom: 100px; min-height: 100vh; display: flex; align-items: center; text-align: center; }
.hero-container-centered { width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-image { margin-bottom: 20px; width: 250px; height: 250px; position: relative; }
.hero-image img { width: 100%; height: 100%; border-radius: 50%; border: 5px solid var(--bg-medium); object-fit: cover; box-shadow: 0 0 30px var(--primary); }
.hero-text h1 { font-size: 4.5rem; font-weight: 900; color: var(--text-white); line-height: 1.2; }
.hero-text h1 .highlight { display: block; color: var(--primary); background: linear-gradient(90deg, var(--primary), var(--highlight)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.subtitle { font-size: 1.2rem; margin: 20px auto 40px; max-width: 600px; }
.btn-primary { background: var(--primary); color: var(--text-white); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: all 0.3s; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4); }
.stats-container { margin-top: 50px; }
.stats { display: inline-flex; gap: 40px; padding: 20px 40px; background: rgba(0,0,0,0.2); border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.stat-item h3 { font-size: 2.5rem; font-weight: 900; color: var(--highlight); }
.stat-item p { color: var(--text-light); font-weight: 700; }

/* Diğer İçerik Bölümleri */
.content-section { padding: 80px 0; }
.content-section.dark { background: rgba(0,0,0,0.2); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 3rem; font-weight: 900; color: var(--text-white); margin-bottom: 10px; }
.section-title p { font-size: 1.1rem; color: var(--text-light); }
.about-content { max-width: 800px; margin: 0 auto; text-align: center; line-height: 1.8; }
.about-content h1, .about-content h2, .about-content h3 { color: var(--text-white); margin-bottom: 15px; }
.social-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.social-link-card { background: var(--bg-medium); padding: 25px; border-radius: 10px; display: flex; align-items: center; gap: 20px; color: var(--text-light); text-decoration: none; transition: all 0.3s; border: 1px solid var(--primary); }
.social-link-card:hover { transform: translateY(-5px); background: var(--primary); color: var(--text-white); }
.social-link-card i { font-size: 2.5rem; flex-shrink: 0; width: 50px; text-align: center; }
.card-content { display: flex; flex-direction: column; }
.card-content span { font-size: 1.2rem; font-weight: 700; }
.card-content strong { font-size: 1rem; color: var(--highlight); font-weight: 400; }
.social-link-card:hover .card-content strong { color: var(--text-white); }
.sponsors-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.sponsor-logo { flex-basis: 150px; text-align: center; }
.sponsor-logo img { max-width: 100%; filter: grayscale(100%) brightness(2); opacity: 0.7; transition: all 0.3s; }
.sponsor-logo:hover img { filter: none; opacity: 1; }
.contact-container { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--bg-medium); padding: 50px; border-radius: 10px; }
.contact-info { line-height: 1.8; }
.contact-info h3 { font-size: 2rem; color: var(--text-white); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid var(--primary); border-radius: 5px; color: var(--text-white); font-size: 1rem; font-family: 'Poppins', sans-serif; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }
.form-message { padding: 15px; border-radius: 5px; font-weight: 700; text-align: center; margin-top: -10px; margin-bottom: 10px; display: none; }
.form-message.success { background-color: rgba(46, 204, 113, 0.8); color: #fff; }
.form-message.error { background-color: rgba(231, 76, 60, 0.8); color: #fff; }

/* Footer */
.footer { text-align: center; padding: 40px 0; background: #0b001a; }
.footer p { margin: 5px 0; }
.dev-credit { margin-top: 15px !important; background: linear-gradient(90deg, var(--primary), var(--highlight)); padding: 8px 15px; border-radius: 50px; display: inline-block; transition: transform 0.3s, box-shadow 0.3s; }
.dev-credit:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(157, 78, 221, 0.4); }
.dev-credit a { color: var(--text-white); text-decoration: none; font-weight: 700; }

/* Scroll Animasyonu */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.social-link-card.fade-in-up, .sponsor-logo.fade-in-up { transition-delay: calc(0.1s * var(--i)); }

/* Mobil Uyumluluk */
@media (max-width: 900px) { .contact-container { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .main-nav { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--bg-medium); flex-direction: column; justify-content: center; align-items: center; transition: left 0.5s ease-in-out; z-index: 1000; }
    .main-nav.active { left: 0; }
    .mobile-menu-btn { display: block; z-index: 1001; }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-image { width: 200px; height: 200px; }
    .stats { gap: 20px; flex-direction: column; background: none; border: none; padding: 0; }
}

/* ... (Mevcut tüm stiller aynı) ... */

/* ============================================= */
/*          LİNKS SAYFASI ÖZEL STİLLERİ          */
/* ============================================= */
.links-page-body {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* İçeriği yukarıdan başlat */
    padding: 40px 20px;
    min-height: 100vh;
}

.links-container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links-header {
    text-align: center;
    color: var(--text-white);
}

.links-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

.links-header h1 {
    font-size: 2em;
    font-weight: 700;
}

.links-header p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-top: 5px;
}

.links-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    background: var(--bg-medium);
    color: var(--text-white);
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
}

.link-card:hover {
    transform: scale(1.05);
    background: var(--primary);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.4);
}

.link-card i {
    font-size: 1.5em;
    width: 30px; /* İkonların hizalı durması için */
}

.link-card span {
    flex-grow: 1; /* Yazıyı ortalamak için */
}

.link-card.special {
    background: var(--highlight);
    color: var(--bg-dark);
    font-weight: 900;
}

.link-card.special:hover {
    background: var(--primary);
    color: var(--text-white);
}

.links-footer {
    text-align: center;
    margin-top: 20px;
}