:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Inter', sans-serif; /* Font tanımlandı */
    --primary-gradient: linear-gradient(90deg, #FF3B30 0%, #FF2C55 100%); /* TikTok renklerine yakın */
    --text-gradient: linear-gradient(90deg, #FF2C55, #69c5ff, #FF2C55);
    --grid-color: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Navbar yüksekliği kadar pay bırak */
    overflow-x: hidden; /* Yatay taşmayı engelle */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative; /* Bazı mobil tarayıcılar için */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Mobile toggle için referans */
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: #FF2C55; }

/* Logo Resim Ayarı */
.logo img {
    height: 65px; /* Büyük dursun istendi */
    width: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .logo img { height: 45px; } /* Mobilde çok devasa olmasın */
}

/* Masaüstü Menü Ortalaması */
.nav-links { 
    display: flex; 
    gap: 30px; 
    position: absolute; /* Ortaya sabitle */
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a { font-size: 15px; color: var(--text-muted); font-weight: 500; font-family: var(--font-main); }
.nav-links a:hover { color: #fff; }

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 44, 85, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-left: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn:hover { transform: translateY(-2px); }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden; /* Taşmayı engelle */
}

/* Arkaplan Efektleri */
.bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(68, 86, 255, 0.15) 0%, rgba(255, 44, 85, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    z-index: -2;
}

/* Metin Stilleri */
.badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 25px 0;
    font-weight: 700;
}

.text-gradient {
    background: var(--text-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

.social-proof p { font-size: 14px; margin-bottom: 20px; }

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.6;
}

.logos span {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Yüzen Objeler (Süsleme) */
/* Yüzen İkonlar (Süsleme) */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px; /* Karemsi yuvarlak */
    z-index: 10; /* Yazıların üstünde değil ama arka planda belirgin */
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.3s;
}

.floating-icon a {
    color: #fff;
    display: flex;
    width: 100%; height: 100%;
    align-items: center; justify-content: center;
}

.floating-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    border-color: rgba(255, 44, 85, 0.5);
}

.obj-1 { 
    top: 20%; left: 10%; 
    animation-delay: 0s;
    color: #fff; /* TikTok */
}

.obj-2 { 
    bottom: 25%; right: 10%; 
    animation-delay: 2s; 
    color: #69c5ff; /* User - Mavi */
}

.obj-3 { 
    top: 25%; right: 15%; 
    animation-delay: 1s; 
    color: #FF2C55; /* Live - Kırmızı */
}

.obj-4 { 
    bottom: 30%; left: 15%; 
    animation-delay: 3s; 
    color: #FFD700; /* Panel - Altın/Sarı */
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 36px; }
    .nav-links { display: none; } /* Mobil menü JS ile açılır */
    .logos { flex-wrap: wrap; gap: 20px; }
}
/* --- HİZMETLER BÖLÜMÜ --- */
.services-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-color); /* Siyah zemin */
}

/* Başlık Ortalaması */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* KART TASARIMI */
.service-card {
    background: #0a0a0a; /* Çok koyu gri */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px 0 30px; /* Alttan padding yok, görsel taşsın */
    position: relative;
    overflow: hidden; /* Işık taşmasın */
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 450px; /* Kart yüksekliği */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 44, 85, 0.3);
}

.card-content {
    z-index: 2;
    position: relative;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- ALT IŞIK EFEKTİ (GLOW) --- */
/* Burası görseldeki o alttan vuran ışığı yapar */
.bottom-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 44, 85, 0.4) 0%, rgba(255, 44, 85, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.service-card:hover .bottom-glow {
    opacity: 1; /* Mouse gelince parlasın */
}

/* --- GÖRSEL GRAFİK SİMÜLASYONLARI (CSS İle Çizim) --- */
.card-visual {
    flex-grow: 1;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px 12px 0 0;
    margin-top: auto; /* En alta it */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px; /* Kenarlardan biraz boşluk kalsın */
}

/* Visual 1: Strateji (Daireler ve Çizgiler) */
.visual-1 .circle-node {
    width: 40px; height: 40px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}
.visual-1 .center-node { 
    width: 50px; height: 50px; 
    border-color: #FF2C55; 
    color: #FF2C55;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255,44,85,0.1);
}
.visual-1 .sub-node.n1 { top: 30px; left: 40px; width: 30px; height: 30px; }
.visual-1 .sub-node.n2 { top: 30px; right: 40px; width: 30px; height: 30px; }
.visual-1 .line {
    position: absolute;
    background: rgba(255,255,255,0.05);
    height: 1px; width: 50px;
}
.visual-1 .l1 { transform: rotate(-45deg); top: 50px; left: 70px; }
.visual-1 .l2 { transform: rotate(45deg); top: 50px; right: 70px; }

/* Visual 2: Kod Penceresi */
.visual-2 .mock-window {
    width: 180px; height: 100px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.visual-2 .dots { display: flex; gap: 4px; margin-bottom: 10px; }
.visual-2 .dots span { width: 6px; height: 6px; background: #333; border-radius: 50%; }
.visual-2 .code-lines span {
    display: block; height: 4px; background: #222; margin-bottom: 6px; border-radius: 2px;
}
.visual-2 .w-80 { width: 80%; } .visual-2 .w-60 { width: 60%; } .visual-2 .w-40 { width: 40%; }
.visual-2 .floating-badge {
    position: absolute; bottom: -10px; right: -10px;
    background: #FF2C55; color: #fff; font-size: 10px;
    padding: 4px 8px; border-radius: 4px; font-weight: bold;
}

/* Visual 3: Bağlantı */
.visual-3 .connect-box {
    padding: 8px 16px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 12px;
    color: #ccc;
    position: relative;
    z-index: 2;
}
.visual-3 .box-left { margin-right: 40px; transform: translateY(10px); }
.visual-3 .box-right { margin-left: 40px; transform: translateY(-10px); border-color: #FF2C55; color: #fff; }
.visual-3 .connect-line {
    position: absolute;
    width: 100px; height: 2px;
    background: linear-gradient(90deg, #333 0%, #FF2C55 100%);
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 { font-size: 28px; }
    .service-card { height: auto; padding-bottom: 40px; }
    .card-visual { display: none; } /* Mobilde görselleri gizleyip sade tutabiliriz */
}
/* --- YAYINCI YORUMLARI (TESTIMONIALS) --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #080808; /* Biraz daha farklı bir ton */
    position: relative;
    overflow: hidden;
}

/* Düzen: Sol Metin - Sağ Kart */
.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.testimonial-info {
    flex: 1;
    max-width: 500px;
}

.testimonial-info h2 {
    font-size: 48px;
    margin: 20px 0;
    line-height: 1.2;
}

.testimonial-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* İstatistikler */
.stats-row {
    display: flex;
    gap: 60px;
}

.stat-item h3 {
    font-size: 36px;
    color: #FF2C55; /* Zenova Kırmızısı */
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item span {
    color: var(--text-muted);
    font-size: 14px;
}

/* --- SAĞ TARAF: KART TASARIMI --- */
.testimonial-card-area {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

/* Arkadaki Gölge Kart (Dekor) */
.card-backdrop {
    position: absolute;
    top: 20px;
    right: 0;
    width: 450px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transform: rotate(5deg);
    z-index: 1;
}

/* Ana Yorum Kartı */
.testimonial-card {
    position: relative;
    z-index: 2;
    width: 450px;
    /* Görseldeki Turuncu -> Lacivert Gradient */
    background: linear-gradient(135deg, #FF6B4A 0%, #6B3056 50%, #1E3A8A 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: #fff;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.user-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    border: 2px solid rgba(255,255,255,0.3);
}

.user-details h4 {
    font-size: 18px;
    font-weight: 700;
}

.user-details span {
    font-size: 13px;
    opacity: 0.8;
}

.quote-icon {
    margin-left: auto;
    font-size: 32px;
    opacity: 0.3;
}

.card-body p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    min-height: 100px; /* Yazı değişince zıplama yapmasın */
}

/* Slider Noktaları */
.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #fff;
    width: 25px; /* Aktif olan uzasın */
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-row {
        justify-content: center;
    }

    .testimonial-card-area {
        justify-content: center;
        padding-right: 0;
        width: 100%;
    }

    .testimonial-card, .card-backdrop {
        width: 100%;
        max-width: 400px;
    }
    
    .card-backdrop {
        right: auto; /* Mobilde ortala */
    }
}
/* --- DESTEKLER BÖLÜMÜ (Supports) --- */
.supports-section {
    padding: 100px 0;
    position: relative;
    background-color: #050505; /* Ana zemin rengi */
}

/* Sağ üst köşe dekoratif ışık */
.glow-spot {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}
.top-right {
    top: -100px; right: -50px;
    background: radial-gradient(circle, #7000ff 0%, transparent 70%);
}

/* Grid Yapısı */
.supports-grid {
    display: grid;
    /* Masaüstünde 4 sütun */
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

/* KART TASARIMI */
.support-box {
    background: #0f0f0f; /* Görseldeki gibi koyu gri */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.support-box:hover {
    transform: translateY(-5px);
    background: #141414;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* İkon Kutucukları */
.icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* İkon Renkleri (Görseldeki gibi çeşitli renkler) */
.c-blue   { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.c-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.c-green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.c-red    { background: rgba(239, 68, 68, 0.1);  color: #ef4444; }
.c-cyan   { background: rgba(6, 182, 212, 0.1);  color: #06b6d4; }
.c-pink   { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.c-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.c-yellow { background: rgba(234, 179, 8, 0.1);  color: #eab308; }

/* Kart İçeriği */
.support-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.support-box p {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0; /* P margin sıfırlama */
}

/* Responsive (Mobil/Tablet) */
@media (max-width: 1024px) {
    .supports-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 600px) {
    .supports-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .support-box {
        align-items: center;
        text-align: center;
    }
}
/* --- HAKKIMIZDA (ABOUT) BÖLÜMÜ --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
}

.text-center { text-align: center; }
.text-white { color: #fff; }
.text-highlight { color: #FF2C55; font-weight: 600; }

/* Grid Yapısı */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan Yana */
    gap: 30px;
    margin-top: 60px;
}

/* KART TASARIMI */
.about-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
    z-index: 1;
}

/* Kart İçerikleri */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

.about-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-card p em {
    color: #fff;
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
}

/* --- ANİMASYONLAR VE RENKLER --- */

/* Kart 1: Vizyon (Camgöbeği/Mavi) */
.card-vision .card-icon { color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
.card-vision:hover { border-color: rgba(6, 182, 212, 0.4); transform: translateY(-10px); }
.card-vision:hover .card-icon { background: #06b6d4; color: #fff; transform: rotateY(180deg); }

/* Kart 2: Misyon (TikTok Kırmızısı) */
.card-mission .card-icon { color: #FF2C55; background: rgba(255, 44, 85, 0.1); }
.card-mission:hover { border-color: rgba(255, 44, 85, 0.4); transform: translateY(-10px); }
.card-mission:hover .card-icon { background: #FF2C55; color: #fff; transform: scale(1.1) rotate(-10deg); }

/* Kart 3: Farkımız (Mor) */
.card-difference .card-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
.card-difference:hover { border-color: rgba(139, 92, 246, 0.4); transform: translateY(-10px); }
.card-difference:hover .card-icon { background: #8b5cf6; color: #fff; transform: rotate(360deg); }

/* Alt Işık Çizgisi (Hover Line) */
.hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0); /* Başlangıçta gizli */
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-vision .hover-line { background: #06b6d4; box-shadow: 0 -10px 20px #06b6d4; }
.card-mission .hover-line { background: #FF2C55; box-shadow: 0 -10px 20px #FF2C55; }
.card-difference .hover-line { background: #8b5cf6; box-shadow: 0 -10px 20px #8b5cf6; }

.about-card:hover .hover-line {
    transform: scaleX(1); /* Mouse gelince dolar */
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 20px;
    }
    .about-card {
        text-align: center;
        padding: 30px;
    }
    .card-icon {
        margin: 0 auto 20px auto; /* Mobilde ikonu ortala */
    }
}
/* --- DESTEKLER BÖLÜMÜ ANİMASYONLARI --- */

/* Kartın Temel Ayarları */
.support-box {
    position: relative; /* Çizgi için referans */
    overflow: hidden;   /* Işık taşmasın */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yumuşak yaylanma */
    z-index: 1;
}

/* 1. Kartın Altındaki Kayan Çizgi (Başlangıçta gizli) */
.support-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff; /* Varsayılan renk */
    transform: scaleX(0); /* Gizli */
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 -5px 10px rgba(255,255,255,0.5);
    z-index: 2;
}

/* Hover Durumu: Çizgi dolsun ve Kart yukarı çıksın */
.support-box:hover {
    transform: translateY(-7px); /* Yukarı kalkma */
}

.support-box:hover::after {
    transform: scaleX(1); /* Çizgi soldan sağa dolsun */
}

/* 2. İkon Hareketi */
.support-box .icon-wrap {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.support-box:hover .icon-wrap {
    transform: scale(1.15) rotate(5deg); /* Büyüme ve hafif dönme */
    box-shadow: 0 0 15px currentColor; /* İkon renginde kendi gölgesini yay */
}

/* --- RENK HARİTASI (Her rengi tek tek tanımlıyoruz) --- */
/* :has seçicisi sayesinde, içindeki ikon maviyse kartın dışı da mavi parlar */

/* MAVİ (Panel) */
.support-box:has(.c-blue):hover { border-color: #3b82f6; box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15); }
.support-box:has(.c-blue)::after { background: #3b82f6; box-shadow: 0 -5px 15px #3b82f6; }

/* MOR (Keşfet) */
.support-box:has(.c-purple):hover { border-color: #8b5cf6; box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15); }
.support-box:has(.c-purple)::after { background: #8b5cf6; box-shadow: 0 -5px 15px #8b5cf6; }

/* YEŞİL (Hukuk) */
.support-box:has(.c-green):hover { border-color: #10b981; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15); }
.support-box:has(.c-green)::after { background: #10b981; box-shadow: 0 -5px 15px #10b981; }

/* KIRMIZI (OBS) */
.support-box:has(.c-red):hover { border-color: #ef4444; box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15); }
.support-box:has(.c-red)::after { background: #ef4444; box-shadow: 0 -5px 15px #ef4444; }

/* CYAN (Mail) */
.support-box:has(.c-cyan):hover { border-color: #06b6d4; box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15); }
.support-box:has(.c-cyan)::after { background: #06b6d4; box-shadow: 0 -5px 15px #06b6d4; }

/* PEMBE (Bio) */
.support-box:has(.c-pink):hover { border-color: #ec4899; box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15); }
.support-box:has(.c-pink)::after { background: #ec4899; box-shadow: 0 -5px 15px #ec4899; }

/* TURUNCU (Ban) */
.support-box:has(.c-orange):hover { border-color: #f97316; box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15); }
.support-box:has(.c-orange)::after { background: #f97316; box-shadow: 0 -5px 15px #f97316; }

/* SARI (Eğitim) */
.support-box:has(.c-yellow):hover { border-color: #eab308; box-shadow: 0 10px 30px rgba(234, 179, 8, 0.15); }
.support-box:has(.c-yellow)::after { background: #eab308; box-shadow: 0 -5px 15px #eab308; }
/* --- FAQ (Sıkça Sorulan Sorular) BÖLÜMÜ --- */
.faq-section {
    padding: 100px 0;
    background-color: #050505; /* Arkaplan rengi */
}

.faq-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Taraf (Metin) */
.faq-content {
    flex: 1;
    max-width: 400px;
    position: sticky; /* Sayfa kayarken sol taraf sabit kalsın istersen */
    top: 100px;
}

.faq-content h2 {
    font-size: 42px;
    margin: 20px 0;
    line-height: 1.2;
}

.faq-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* Sağ Taraf (Liste) */
.faq-list {
    flex: 1.5; /* Sağ taraf daha geniş olsun */
    width: 100%;
}

/* FAQ Kutusu */
.faq-item {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Aktif olduğunda kenarlık parlasın */
.faq-item.active {
    border-color: rgba(255, 44, 85, 0.3);
    background: #121212;
}

/* Soru Başlığı */
.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none; /* Metin seçilmesin */
}

.faq-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: 0.3s;
}

.faq-header i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

/* Hover ve Aktif Durumda Renkler */
.faq-header:hover h3, 
.faq-item.active .faq-header h3 {
    color: #FF2C55; /* Zenova Kırmızısı */
}

.faq-item.active .faq-header i {
    transform: rotate(180deg); /* Ok yukarı dönsün */
    color: #FF2C55;
}

/* Cevap Alanı (Başlangıçta gizli) */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out; /* max-height transition */
    background: rgba(0,0,0,0.2);
}

.faq-item.active .faq-body {
    max-height: 300px; /* Açıldığında yükseklik */
}

.faq-text {
    padding: 0 25px 25px 25px;
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

.faq-text strong {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-wrapper {
        flex-direction: column;
    }
    .faq-content {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .faq-content a {
        display: inline-block; /* Mobilde ortalansın diye */
    }
}
/* --- SCROLL ANIMASYONLARI (REVEAL) --- */

/* 1. Başlangıç Durumu (Görünmez ve Aşağıda) */
.reveal-item {
    opacity: 0;
    transform: translateY(50px); /* 50px aşağıda başlasın */
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); /* Yumuşak geçiş */
    will-change: opacity, transform; /* Performans ayarı */
}

/* 2. Aktif Durum (Görünür ve Yerinde) */
.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Sıralı Geliş (Stagger Delay) */
/* Kartlar peş peşe gelsin diye gecikme süreleri */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
/* --- BAŞVURU FORMU (APPLICATION) BÖLÜMÜ --- */
.application-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-color);
}

/* Arka Plan Glow Efekti */
.center-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(circle, rgba(255, 44, 85, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.application-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* --- SOL KART: BİLGİLENDİRME --- */
.app-info-card {
    flex: 1;
    background: linear-gradient(145deg, #0f0f0f 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-logo {
    width: 60px; height: 60px;
    background: rgba(255, 44, 85, 0.1);
    color: #FF2C55;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.app-header h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.app-header p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Gereksinimler Listesi */
.requirements-list ul {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.5;
}

.requirements-list li i {
    color: #FF2C55; /* Tik Rengi */
    margin-top: 4px;
}

.requirements-list li strong {
    color: #fff;
}

.requirements-list .note-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid #FF2C55;
    margin-top: 30px;
}

.requirements-list .note-item i { color: #fff; }

.app-footer-note {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--text-muted);
}
.app-footer-note a { color: #FF2C55; font-weight: 600; }

/* --- SAĞ KART: FORM --- */
.app-form-card {
    flex: 1.4;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütun */
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2; /* Tam genişlik */
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    margin-left: 5px;
}

/* Input Alanları Tasarımı */
.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: 0.3s;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 15px 14px 45px; /* İkon payı */
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

/* Input Focus Efekti */
.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: #FF2C55;
    box-shadow: 0 0 0 4px rgba(255, 44, 85, 0.1);
    background: #1a1a1a;
}

.input-wrapper input:focus + i,
.input-wrapper input:focus ~ i { /* İkon rengi değişsin */
    color: #FF2C55;
}

/* Checkbox */
.form-check {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 25px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.form-check input {
    accent-color: #FF2C55;
    width: 16px; height: 16px;
    cursor: pointer;
}

.form-check a { color: #fff; text-decoration: underline; }

/* Buton */
.btn-block {
    grid-column: span 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .application-wrapper {
        flex-direction: column;
    }
    .form-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .form-group.full-width, .btn-block, .form-check {
        grid-column: span 1;
    }
    .app-info-card, .app-form-card {
        padding: 30px;
    }
}
/* --- SCROLL ANİMASYON SINIFLARI (GÜNCELLENDİ) --- */
/* Başlangıç (Görünmez) */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Ekrana Girince (Görünür - 'active' yerine 'in-view' yaptık) */
.reveal-item.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* --- PARTNERLER (SPONSORS) BÖLÜMÜ --- */
.partners-section {
    padding: 100px 0;
    position: relative;
    background-color: #050505;
    overflow: hidden;
}

/* Mor Arka Plan Işıltısı */
.center-glow-purple {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

/* Grid Yapısı */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Yan yana 2 tane */
    gap: 40px;
    margin-top: 50px;
    max-width: 900px; /* Çok geniş olmasın, ortalı dursun */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* KART TASARIMI */
.partner-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hover Efekti: Kart yukarı kalkar ve kenarlık parlar */
.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5); /* Mor Kenarlık */
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.1);
}

/* Logo Alanı */
.partner-logo-area {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 25px;
}

/* Logo Yerine Geçici Yazı Stili (Resim koyunca bunları silebilirsin) */
.logo-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
}
.logo-text span { font-size: 12px; font-weight: 400; letter-spacing: 2px; display: block; margin-top: 5px;}
.logo-text.tikfinity { color: #FF2C55; font-style: normal; } /* TikFinity rengi */

/* Kart İçeriği */
.partner-content h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-content p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Link Butonu */
.btn-link {
    color: #FF2C55; /* Zenova Kırmızısı */
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-link i { transition: 0.3s; }

.partner-card:hover .btn-link { color: #fff; }
.partner-card:hover .btn-link i { transform: translateX(5px); }

/* Responsive */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
}

/* --- MODAL (POPUP) STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #FF2C55;
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.modal-body p {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 16px;
}
/* --- FOOTER BÖLÜMÜ --- */
.site-footer {
    background-color: #000; /* Tam siyah zemin */
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: #a0a0a0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Sütun genişlikleri */
    gap: 40px;
    margin-bottom: 60px;
}

/* 1. Sütun: Logo ve Açıklama */
.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.footer-logo span { color: #FF2C55; }

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-btn:hover {
    background: #FF2C55;
    transform: translateY(-3px);
}

/* 2. ve 3. Sütun: Başlıklar ve Linkler */
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a, 
.footer-col ul li span {
    color: #a0a0a0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px; /* Hover'da hafif sağa kayma */
}

/* 4. Sütun: CTA Kutusu */
.cta-box {
    background: #0f0f0f; /* Koyu gri kutu */
    border: 1px solid rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 16px;
}

.cta-box h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-white {
    background: #fff;
    color: #000;
    text-align: center;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    display: block;
    width: 100%;
    transition: 0.3s;
}

.btn-white:hover {
    background: #FF2C55;
    color: #fff;
}

/* Footer Alt Kısım */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: #888;
}
.footer-bottom-links a:hover { color: #fff; }

/* Responsive */
/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* Tablette 2 sütun */
    }
}

@media (max-width: 768px) {
    .logo a { font-size: 20px; }
}

@media (min-width: 769px) {
    .mobile-toggle { display: none; }
}

/* --- NAVBAR & HEADER --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
    background: transparent; /* JS ile scroll edilince renklenir */
}

/* FOOTER ALANI */
.site-footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

/* YASAL METİN SAYFALARI (Legal Content) */
.legal-box {
    line-height: 1.8;
    color: var(--text-muted);
}
.legal-box h2, .legal-box h3, .legal-box h4 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
.legal-box p { margin-bottom: 20px; }
.legal-box ul { margin-left: 20px; margin-bottom: 20px; }
.legal-box ul li { margin-bottom: 10px; list-style-type: disc; }

/* COOKIE POPUP */
.cookie-popup {
    position: fixed;
    bottom: -100px; /* Başlangıçta gizli */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; /* Flex düzeni başlangıçta da olsun */
}

.cookie-popup.show {
    bottom: 30px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cookie-icon {
    font-size: 32px;
    color: #eab308; /* Sarı çerez rengi */
}

.cookie-text h4 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 16px;
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
}

.cookie-text a {
    color: #FF2C55;
    text-decoration: underline;
}

.cookie-buttons {
    margin-left: auto; /* Butonu sağa it */
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { margin: 0; width: 100%; }
    .cookie-buttons .btn { width: 100%; }
}


.footer-logo { margin-bottom: 20px; }
.footer-logo img {
    height: 50px; /* Footer için ideal boyut */
    width: auto;
    object-fit: contain;
}
.footer-logo a {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    z-index: 1002; /* Mobilde menünün üstünde kalsın */
    position: relative;
}
.logo span { color: #FF2C55; }

/* Masaüstü Menü Yapısı */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-size: 14px;
    color: var(--text-muted, #a0a0a0);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: #fff;
}

/* Dropdown (Masaüstü) */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #a0a0a0;
    font-size: 13px;
}
.dropdown-item:hover {
    color: #FF2C55;
    background: rgba(255,255,255,0.05);
}

/* Butonlar Grubu */
.nav-btn {
    display: flex;
    gap: 15px;
}

/* Hamburger Butonu (Varsayılan Gizli) */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 1002; /* Menünün üstünde kalsın */
}

/* --- RESPONSIVE / MOBİL MENÜ --- */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block; /* Mobilde göster */
        /* position: absolute; REMOVED untuk flex layout */
        /* right: 20px; */
        /* top: 24px; */
        margin-left: auto; /* Logo solda, bu sağda kalsın */
    }

    /* Menü Kapsayıcısı (Slide-in Panel) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0; 
        width: 80%; /* Ekranın %80'ini kaplasın */
        max-width: 400px;
        height: 100vh;
        background: #050505; /* Koyu zemin */
        border-left: 1px solid rgba(255,255,255,0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Transition sadece transform ve visibility için olsun */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.4s; 
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        transform: translateX(100%); /* Ekrann dışına it */
        visibility: hidden; /* Kapalıyken görünmez yap */
    }

    /* Menü Açıldığında */
    .nav-menu.active {
        transform: translateX(0); /* Geri getir */
        visibility: visible; /* Açılınca görünür yap */
    }

    /* Linkler ve Butonlar Mobilde Alt Alta */
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* Boşluğu biraz azalttık */
        margin-bottom: 30px;
        width: 100%;
        position: static; /* Masaüstü absolute'unu iptal et */
        transform: none; /* Masaüstü transform'unu iptal et */
        display: flex; /* Masaüstü display'ini koru/ez */
    }

    .nav-item {
        font-size: 16px; /* Font boyutunu biraz küçülttük daha kibar dursun */
        font-family: 'Inter', sans-serif; /* Fontu garantiye al */
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .nav-btn .btn {
        width: 100%;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        padding: 12px 0;
        border-radius: 50px; /* Yuvarlak hatlar */
        font-weight: 600;
        display: flex; /* Flex yaptım ki yazı ortalansın */
        justify-content: center; /* Yatay ortala */
        align-items: center; /* Dikey ortala */
        margin: 0 !important; /* Masaüstünden gelen marginleri sıfırla */
        width: 100% !important; /* Genişliği zorla */
    }
    
    .nav-btn .btn-secondary {
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
    }

    .nav-btn {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%; /* Kapsayıcı %100 olsun */
        max-width: 220px; /* Butonlar çok genişlemesin, ideal boyut */
        margin: 20px auto 0; /* Ortala */
    }

    /* Dropdown Mobilde */
    .dropdown:hover .dropdown-menu {
        /* Mobilde hover ile açılmasın, JS ile kontrol edilebilir veya hep açık durabilir */
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        text-align: center;
        padding-top: 10px;
        display: none; /* JS ile açacağız */
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Mobilde Yüzen İkonları Düzenle */
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        opacity: 0.7; /* Biraz daha silik olsun */
    }

    /* Mobilde Konumları Kenarlara İt */
    .obj-1 { top: 15%; left: 5%; }
    .obj-2 { bottom: 20%; right: 5%; }
    .obj-3 { top: 20%; right: 5%; }
    .obj-4 { bottom: 15%; left: 5%; }
}
/* --- YAYINCILAR SAYFASI (Publishers) --- */

/* Sayfa Başlığı Alanı */
.page-header-section {
    padding: 140px 0 60px 0; /* Header payı */
    position: relative;
    background-color: var(--bg-color);
}
.page-header-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.page-header-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.top-center {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 400px;
    background: radial-gradient(circle, rgba(255, 44, 85, 0.1) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}

/* Yayıncılar Grid */
.publishers-section {
    padding: 0 0 100px 0;
    background-color: var(--bg-color);
}

.publishers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive Grid */
    gap: 30px;
}

/* YAYINCI KARTI TASARIMI */
.publisher-card {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
    text-align: center;
    padding-bottom: 30px;
}

.publisher-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 44, 85, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Kartın Üstündeki Renk */
.pub-cover {
    height: 80px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}
/* Hover yapınca cover rengi değişsin */
.publisher-card:hover .pub-cover {
    background: var(--primary-gradient);
}

/* Profil Resmi */
.pub-avatar {
    width: 120px;
    height: 120px;
    margin: -60px auto 20px; /* Yarısı yukarı taşsın */
    position: relative;
    padding: 4px;
    background: #0f0f0f; /* Kart rengiyle aynı çerçeve */
    border-radius: 50%;
}

.pub-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.publisher-card:hover .pub-avatar img {
    border-color: #FF2C55;
}

/* TikTok Rozeti */
.tiktok-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    border: 2px solid #0f0f0f;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Bilgiler */
.pub-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.username {
    display: block;
    color: var(--text-muted); /* Gri renk */
    font-size: 14px;
    margin-bottom: 20px;
    font-family: monospace; /* @kullaniciadi havası */
}

/* İstatistikler (Takipçi/Beğeni) */
.pub-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
}

.stat { display: flex; flex-direction: column; }
.stat strong { color: #fff; font-size: 18px; }
.stat span { font-size: 12px; color: #666; }

/* Buton */
.btn-outline-pub {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-outline-pub:hover {
    background: #FF2C55;
    border-color: #FF2C55;
    color: #fff;
}

/* CTA Section */
.join-cta-section {
    padding: 80px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.join-cta-section h2 { margin-bottom: 15px; }
.join-cta-section p { color: var(--text-muted); margin-bottom: 30px; }

/* Responsive */
@media (max-width: 768px) {
    .page-header-section h1 { font-size: 32px; }
    .publishers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
/* --- ETKİNLİKLER SAYFASI --- */

/* Showcase Kutusu (Büyük Kutu) */
.event-showcase-wrapper {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Sol Taraf (Medya) */
.event-media {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-frame {
    width: 100%;
    height: 400px; /* Büyük resim yüksekliği */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.main-image-frame img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}

/* Sol Üstteki Badge (Aktif Etkinlik) */
.status-badge {
    position: absolute; top: 20px; left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #FF2C55;
    border: 1px solid #FF2C55;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(5px);
    z-index: 2;
}

/* Küçük Resimler (Thumbnails) */
.event-thumbnails {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px; height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.thumb:hover, .thumb.active {
    border-color: #FF2C55;
    opacity: 1;
    transform: translateY(-3px);
}

/* Sağ Taraf (Detaylar) */
.event-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.event-tag {
    color: #8b5cf6; /* Mor renk */
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex; align-items: center; gap: 5px;
}

.event-details h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.event-details p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Sarı Not Kutusu */
.event-note {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 4px solid #eab308; /* Sarı çizgi */
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.note-icon {
    font-size: 24px;
    color: #eab308; /* Sarı ikon */
}

.note-content h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.note-content p {
    font-size: 13px;
    margin: 0;
    color: #aaa;
}

/* Butonlar */
.event-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timer {
    display: flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px; border-radius: 50px;
}

/* Geçmiş Etkinlikler (Past Events) */
.past-events-section { padding-bottom: 100px; }
.section-title { font-size: 24px; margin-bottom: 30px; border-left: 4px solid #FF2C55; padding-left: 15px; }

.past-events-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

.past-event-card {
    background: #0f0f0f; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.past-event-card:hover { transform: translateY(-5px); }

.pe-image { height: 180px; position: relative; }
.pe-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.3s; }
.past-event-card:hover .pe-image img { filter: grayscale(0%); }

.badge-ended {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.8); color: #fff; font-size: 10px; padding: 4px 10px; border-radius: 4px;
}

.pe-content { padding: 20px; }
.pe-content h4 { font-size: 16px; margin-bottom: 5px; color: #fff; }
.pe-content p { font-size: 12px; color: #666; }

/* Responsive */
@media (max-width: 992px) {
    .event-showcase-wrapper { flex-direction: column; padding: 20px; }
    .event-details h2 { font-size: 28px; }
    .main-image-frame { height: 250px; }
    .past-events-grid { grid-template-columns: 1fr; }
}