/* GENEL AYARLAR */
:root {
    --bg-dark: #0f172a; /* Slate 900 - Çok kurumsal bir lacivert */
    --primary-color: #6366f1; /* İndigo */
    --accent-color: #8b5cf6; 
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark); /* Canvas yüklenmezse diye */
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* CANVAS AYARLARI (Arka Plan) */
#canvas1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%); /* Derinlik veren geçiş */
}

/* ARKADAKİ PARLAKLIK (GLOW) */
.glow-backdrop {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

/* NAVBAR */
.navbar {
    width: 100%;
    padding: 25px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.5); /* Hafif karartı */
    backdrop-filter: blur(10px); /* Buzlu cam efekti */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 6px; /* Daha keskin, kurumsal köşe */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-container {
    flex-direction: column;
    position: relative;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
    border-radius: 30px;
    color: #c7d2fe;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(to right, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary-lg {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-outline {
    padding: 18px 45px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.1);
}

/* YÜZEN İSTATİSTİK KARTLARI */
.stat-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.7); /* Şeffaf koyu gri */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.card-left {
    left: -50px;
    top: 40%;
    border-left: 4px solid #10b981; /* Yeşil çizgi */
}

.card-right {
    right: -50px;
    bottom: 25%;
    border-right: 4px solid #f59e0b; /* Turuncu çizgi */
    animation-delay: -3s;
}

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

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .stat-card { display: none; }
    .hero-buttons { flex-direction: column; }
}
/* --- BAŞVURU BÖLÜMÜ --- */
.application-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.app-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start; /* Yukarı hizalı */
}

/* Sol Taraf (Bilgi) */
.app-info {
    flex: 1;
    min-width: 300px;
    padding-top: 20px;
}

.app-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.app-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.requirements-box h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.requirements-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.requirements-box li {
    display: flex;
    gap: 15px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2); /* Yeşil opak */
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.requirements-box strong {
    display: block;
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 4px;
}

.requirements-box p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Sağ Taraf (Form Kartı) */
.app-form-card {
    flex: 1.2; /* Form biraz daha geniş olsun */
    min-width: 320px;
    background: rgba(30, 41, 59, 0.6); /* Glassmorphism */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
}

.input-group input {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

/* Dosya Yükleme Alanı */
.file-upload-area {
    margin-bottom: 25px;
}

.file-upload-area input[type="file"] {
    display: none; /* Standart çirkin inputu gizle */
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.upload-icon {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.upload-title {
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.upload-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
}

.link {
    color: var(--primary-color);
    text-decoration: underline;
}

.full-width {
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .app-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .app-form-card {
        padding: 25px;
        width: 100%;
    }
}
/* --- HAKKIMIZDA & VİZYON KARTLARI --- */

/* Section Genel Ayarı */
.about-card-section {
    padding: 120px 0;
    position: relative;
    /* Flex yapısını kaldırdık, içerik alt alta aksın diye normal block yaptık */
    display: block; 
    z-index: 10;
}

/* Kapsayıcı hizalamaları */
.about-card-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* Üst panel ile alt kartlar arası boşluk */
}

/* Boşluk Yardımcısı */
.mb-20 { margin-bottom: 20px; }


/* --- 3'LÜ GRID YAPISI --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Eşit Kolon */
    gap: 30px; /* Kartlar arası boşluk */
    width: 100%;
    max-width: 1200px;
}

/* --- KÜÇÜK CAM KARTLAR (Vizyon/Misyon) --- */
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    
    /* İçeriğe hafif iç gölge */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

/* Kart Hover Efekti */
.glass-card:hover {
    transform: translateY(-10px); /* Yukarı kalksın */
    border-color: rgba(99, 102, 241, 0.3); /* Kenarlık parlasın */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

/* Kart Başlıkları */
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Başlık Altı Çizgisi */
.card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: currentColor; /* Başlık rengi neyse o olsun */
}

/* Özel Renkler (Görseldeki gibi ayırt edici olsun) */
.text-blue { color: #38bdf8; }   /* Vizyon - Açık Mavi */
.text-purple { color: #a855f7; } /* Misyon - Mor */
.text-green { color: #34d399; }  /* Neden Biz - Yeşil */

/* Kart Metinleri */
.glass-card p {
    color: #cbd5e1; /* Gri/Beyaz */
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* MOBİL UYUM */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr; /* Mobilde tek kolon olsun */
        gap: 20px;
    }
    
    .glass-card {
        padding: 25px;
    }
}
/* --- PREMIUM GLASS PANEL (NEONSUZ, SADE) --- */
.about-card-section {
    padding: 120px 0;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.glass-panel {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 80px 60px;
    
    /* 1. Yansımalı Cam Arka Planı */
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.08) 0%,   /* Sol üst parlak */
        rgba(255, 255, 255, 0.01) 40%,  /* Orta şeffaf */
        rgba(255, 255, 255, 0.03) 100%  /* Sağ alt hafif parlak */
    );
    
    /* 2. Buzlanma */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    
    /* 3. 3D Kenarlıklar (Işık sol üstten vuruyor) */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.25); 
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    
    /* 4. Derinlik ve Hacim */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5), /* Gölge */
        inset 0 0 40px rgba(255, 255, 255, 0.02); /* İç dolgunluk */
                
    text-align: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

/* Hover: Hafifçe yukarı süzülme */
.glass-panel:hover {
    transform: translateY(-5px);
}

/* İÇERİK STİLLERİ */
.panel-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.panel-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.panel-text p {
    margin-bottom: 20px;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .glass-panel {
        width: 90%;
        padding: 50px 25px;
    }
    .panel-title { font-size: 2rem; }
}
/* --- HİZMETLERİMİZ BÖLÜMÜ --- */
.services-section {
    padding: 100px 0 150px 0; /* Alt boşluğu geniş tuttum, ferah olsun */
    position: relative;
    z-index: 10;
}

/* Başlık Alanı Düzeni */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 20px;
}

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

/* --- HİZMET KARTI (PREMIUM GLASS) --- */
.service-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanan animasyon */
    position: relative;
    overflow: hidden;
}

/* KART HOVER EFEKTLERİ (COŞKU BURADA) */
.service-card:hover {
    transform: translateY(-15px); /* Yukarı fırlar */
    border-color: rgba(255, 255, 255, 0.2);
    /* İçeriden mor bir ışık patlaması */
    box-shadow: inset 0 0 50px rgba(99, 102, 241, 0.15), 0 20px 40px rgba(0,0,0,0.5); 
}

/* Kartın içindeki "Card Top" alanı (İkon ve Badge) */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

/* --- İKON TASARIMLARI --- */
.s-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.s-icon svg {
    width: 32px;
    height: 32px;
}

/* İkon Renkleri ve Gölgeleri */
.icon-rocket {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.icon-chat {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.icon-gift {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
}

/* Hover olunca ikon dönsün/büyüsün */
.service-card:hover .s-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* --- BADGE (ETİKET) TASARIMLARI --- */
.s-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.badge-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

/* --- METİN ALANLARI --- */
.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .service-card {
        padding: 25px;
    }
}
/* --- HİZMETLERİMİZ BÖLÜMÜ GÜNCELLEME (DAR & UZUN KARTLAR) --- */

.services-section {
    padding: 100px 0 150px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Başlık Alanı */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 300;
}

/* GRID YAPISI (GÜNCELLENDİ) */
.services-grid {
    display: grid;
    /* BURASI ÖNEMLİ: Kart genişliği min 300px, max 380px olsun (Daraltıldı) */
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: 40px; /* Araları biraz daha açtık ferah olsun */
    padding: 0 10px;
    /* Kartlar satıra sığmadığında veya az olduğunda tam ortada dursun */
    justify-content: center; 
}

/* KART TASARIMI (GÜNCELLENDİ) */
.service-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 35px; /* Üst/Alt padding artırıldı */
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    
    /* YENİ EKLENEN: Boyunu uzatıyoruz */
    min-height: 480px; 
    
    /* İçeriği dikeyde güzel dağıtmak için */
    display: flex;
    flex-direction: column;
}

/* Kart Hover */
.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 50px rgba(99, 102, 241, 0.1), 0 20px 40px rgba(0,0,0,0.5); 
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px; /* İkon ile başlık arasını açtık */
}

/* İkonlar */
.s-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* İkonun sıkışmasını engelle */
}
.s-icon svg { width: 32px; height: 32px; }

/* Renkler */
.icon-rocket { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3); }
.icon-chat   { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3); }
.icon-gift   { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3); }

.service-card:hover .s-icon { transform: scale(1.1) rotate(-5deg); }

/* Badges */
.s-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap; /* Yazı alt satıra kaymasın */
}
.badge-blue   { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border-color: rgba(59, 130, 246, 0.3); }
.badge-purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border-color: rgba(139, 92, 246, 0.3); }
.badge-green  { background: rgba(16, 185, 129, 0.15); color: #34d399; border-color: rgba(16, 185, 129, 0.3); }

/* Metinler */
.service-card h3 { 
    font-size: 1.6rem; 
    color: white; 
    margin-bottom: 20px; 
    font-weight: 700; 
    margin-top: auto; /* Başlığı biraz aşağı itmek için opsiyonel */
}

.service-card p { 
    color: var(--text-gray); 
    line-height: 1.7; 
    font-size: 1rem; 
    margin-bottom: auto; /* Alt boşluğu doldursun */
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .services-grid { 
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        max-width: 400px; /* Mobilde de çok genişlemesin */
        margin: 0 auto;
    }
}
/* --- SIKÇA SORULAN SORULAR (SSS) TASARIMI --- */

.faq-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto; /* Ortala */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Sorular arası boşluk */
}

/* SORU KUTUSU (KAPALI HALİ) */
.faq-item {
    background: rgba(30, 41, 59, 0.4); /* Şeffaf Koyu */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden; /* Taşmaları gizle */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* SORU BAŞLIĞI */
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color); /* Hoverda mor olsun */
}

/* İKON (+ / -) */
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* CEVAP KISMI (BAŞLANGIÇTA GİZLİ) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Yumuşak açılma efekti */
    background: rgba(15, 23, 42, 0.3); /* Cevap kısmı biraz daha koyu */
}

.faq-answer p {
    padding: 0 30px 25px 30px; /* İç boşluk */
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- AKTİF (AÇIK) DURUM TASARIMI --- */

.faq-item.active {
    border-color: var(--primary-color); /* Çerçeve mor olsun */
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15); /* Hafif mor parlama */
}

.faq-item.active .faq-question {
    color: var(--primary-color); /* Başlık mor olsun */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + işareti x olsun */
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Yeterince büyük bir değer veriyoruz ki açılsın */
    /* Animasyonlu açılması için max-height kullanıyoruz */
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}
/* --- FOOTER (ALT BİLGİ) TASARIMI --- */

.footer-section {
    position: relative;
    background: rgba(2, 6, 23, 0.95); /* Çok koyu, neredeyse siyah */
    padding-top: 80px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 20; /* Yıldızların üzerinde, en üstte */
}

/* Footer Üst Işık Efekti */
.footer-glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 30px var(--primary-color);
    opacity: 0.5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Sol taraf biraz daha geniş */
    gap: 60px;
    padding-bottom: 60px;
}

/* --- 1. KOLON: MARKA --- */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon.small {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.text-primary { color: var(--primary-color); }

.footer-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    max-width: 350px;
}

/* Sosyal Medya Butonları */
.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s;
}

.social-btn svg { width: 20px; height: 20px; }

/* Özel Renk Hoverları */
.social-btn:hover { transform: translateY(-3px); color: white; border-color: transparent; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tiktok:hover { background: black; border-color: #00f2ea; box-shadow: 2px 2px 0 #ff0050, -2px -2px 0 #00f2ea; }
.social-btn.youtube:hover { background: #FF0000; }
.social-btn.twitter:hover { background: #1DA1F2; }


/* --- 2. KOLON: LİNKLER --- */
.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Başlık altı minik çizgi */
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px); /* Sağa kayma efekti */
}


/* --- 3. KOLON: İLETİŞİM --- */
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.c-icon {
    font-size: 1.1rem;
}

.full-width-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    display: block;
}

/* Buton Nabız Animasyonu */
.pulse-anim {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}


/* --- ALT BAR --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    background: #020617; /* Tam siyah zemin */
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

/* --- FOOTER MOBİL UYUMLULUK AYARI (GÜNCELLENMİŞ) --- */
@media (max-width: 991px) {
    .footer-section {
        padding-top: 60px; /* Mobilde üst boşluğu biraz kıstık */
    }

    .footer-grid {
        display: flex; /* Grid yerine Flex kullandık, kontrolü daha kolay */
        flex-direction: column; /* Alt alta diz */
        align-items: center; /* Her şeyi yatayda ortala */
        gap: 50px; /* Bölümler arası boşluk */
        text-align: center;
    }
    
    /* 1. Logo ve Açıklama Kısmı */
    .brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center; /* Logoyu ortala */
        margin-bottom: 15px;
    }
    
    .footer-desc {
        margin: 0 auto 25px auto; /* Metni ortala */
        padding: 0 20px; /* Kenarlardan biraz pay bırak */
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center; /* İkonları ortala */
    }

    /* 2. Başlıkların Altındaki Çizgiyi Ortalama */
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); /* Tam ortaya çek */
    }

    /* 3. Linkler ve İletişim Listesi */
    .footer-links {
        align-items: center; /* Linkleri ortala */
    }

    .contact-list li {
        justify-content: center; /* İletişim bilgilerini ortala */
    }

    /* 4. Buton Ayarı */
    .full-width-btn {
        max-width: 100%; /* Mobilde tam genişlik */
        margin-top: 10px;
    }
    
    /* Footer Alt Yazısı */
    .footer-bottom {
        padding: 20px 10px;
        font-size: 0.8rem;
    }
}
/* =========================================
   NAVBAR & HEADER (TAM VE GÜNCEL HALİ)
   ========================================= */

/* --- 1. NAVBAR TEMEL YAPISI --- */
.navbar {
    width: 100%;
    /* Başlangıçta geniş ve ferah olsun ki büyük logo sığsın */
    padding: 25px 0; 
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Yumuşak geçiş */
    background: transparent; /* En başta şeffaf */
    border-bottom: 1px solid transparent;
}

/* Scroll Yapılınca (Aşağı inince devreye girer) */
.navbar.scrolled {
    padding: 15px 0; /* Yüksekliği biraz kısıyoruz */
    background: rgba(2, 6, 23, 0.9); /* Koyu buzlu cam */
    backdrop-filter: blur(20px); /* Arka planı flulaştır */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- 2. LOGO AYARLARI (DEVASA VERSİYON 🔥) --- */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002; /* Mobilde menünün üstünde kalsın */
    padding-top: 5px;
    padding-bottom: 5px;
}

.logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
}

/* Logo Resmi */
.brand-logo {
    /* BURASI ÖNEMLİ: Logoyu 90px yaptık (Baya büyük) */
    max-height: 90px; 
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease; /* Boyut değişim animasyonu */
    /* Logoya hafif gölge vererek patlamasını sağlıyoruz */
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.3)); 
}

/* Scroll yapınca logo kibarca küçülsün ki ekranı kapatmasın */
.navbar.scrolled .brand-logo {
    max-height: 60px; 
}

/* Logo Hover Efekti */
.logo-link:hover .brand-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4)); /* Mor parlama */
}

/* --- 3. MENÜ LİNKLERİ (DESKTOP) --- */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1; /* Açık gri */
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: white; /* Hoverda beyaz */
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* --- 4. SAĞ TARAF (BUTON + HAMBURGER) --- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1002;
}

/* Hamburger Menü İkonu (Mobilde Görünür) */
.hamburger-menu {
    display: none; /* Masaüstünde gizli */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    height: 24px;
    z-index: 1002;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger X Olma Animasyonu */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- 5. MOBİL MENÜ OVERLAY (TAM EKRAN SİYAH) --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.98); /* Tam ekran çok koyu zemin */
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Gizli Durum */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 1001;
}

/* Aktif (Açık) Durum */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobil Linkler */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.m-link {
    font-size: 1.8rem; /* Mobilde büyük font */
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.m-link:hover {
    color: #6366f1; /* Mor renk */
}

.mobile-cta {
    margin-top: 20px;
    transform: scale(1.2); /* Butonu biraz büyüt */
}

/* Menü açılınca sayfa kaymasın */
body.no-scroll {
    overflow: hidden;
}

/* --- 6. RESPONSIVE (MOBİL) AYARLARI --- */
@media (max-width: 900px) {
    .nav-links { display: none; } /* Desktop linkleri gizle */
    .desktop-btn { display: none; } /* Desktop butonu gizle */
    .hamburger-menu { display: flex; } /* Hamburgeri aç */
    
    /* Mobilde logo çok da devasa olmasın, ekranı kapatır */
    .brand-logo {
        max-height: 60px; 
    }
    
    /* Scroll yapınca mobilde daha da küçülsün */
    .navbar.scrolled .brand-logo {
        max-height: 50px;
    }
}
.app-logo-container {
    display: flex;
    align-items: center;
    gap: 15px; /* Logo ile yazı arası boşluk */
    margin-bottom: 30px; /* Başlığa yapışmasın */
}

/* Logo Resmi */
.app-logo-img {
    height: 60px; /* Form kısmında logo biraz büyük ve net dursun */
    width: auto;
    object-fit: contain;
    /* Hafif bir gölge verelim ki zeminden ayrılsın */
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

/* Marka İsmi (LivevoraMedia) */
.app-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    /* İstersen yazıya da hafif gölge verebilirsin */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* MOBİL UYUM */
@media (max-width: 768px) {
    .app-logo-container {
        justify-content: center; /* Mobilde logoyu ortala */
        margin-bottom: 20px;
    }
    
    .app-logo-img {
        height: 50px; /* Mobilde bir tık küçült */
    }

    .app-brand-name {
        font-size: 1.5rem;
    }
}
/* --- FOOTER LOGO VE YAZI AYARLARI --- */

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.footer-logo-link {
    display: flex; /* Resim ve yazıyı yan yana koy */
    align-items: center; /* Dikeyde ortala */
    gap: 12px; /* Aralarına boşluk ver */
    text-decoration: none;
}

/* Logo Resmi */
.footer-brand-img {
    height: 40px; /* Yazıyla orantılı olsun diye hafif kıstık */
    width: auto;
    object-fit: contain;
}

/* Marka Yazısı */
.footer-brand-text {
    font-size: 1.5rem; /* Yazı boyutu */
    font-weight: 700;  /* Kalın yazı */
    color: white;
    letter-spacing: -0.5px; /* Harfleri hafif yaklaştır */
}

/* "Media" kelimesinin rengi (Temaya uygun mor) */
.text-primary {
    color: var(--primary-color);
}

/* MOBİL UYUM */
@media (max-width: 991px) {
    .footer-logo {
        justify-content: center; /* Mobilde ortala */
    }
    
    .footer-brand-img {
        height: 35px; /* Mobilde hafif küçült */
    }
    
    .footer-brand-text {
        font-size: 1.3rem;
    }
}
/* =========================================
   3 KOLONLU ETKİNLİK DÜZENİ (Full Responsive)
   ========================================= */

.events-section {
    padding: 80px 0;
}

/* Ana Grid Yapısı */
.events-grid-layout {
    display: flex;
    align-items: flex-start; /* Hepsi yukarıdan başlasın */
    gap: 50px; /* Sütunlar arası geniş boşluk */
    justify-content: center;
}

/* --- 1. SÜTUN: BAŞLIK ALANI --- */
.intro-column {
    flex: 0 0 200px; /* Genişliği sabitledik */
    text-align: right; /* Yazıları sağa yasladık (Tablara yakın olsun diye) */
    padding-top: 15px; /* Butonlarla aynı hizaya gelsin diye hafif aşağı ittik */
}

.intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-highlight {
    color: #6366f1; /* Mor Renk */
}

.intro-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* --- 2. SÜTUN: TAB BUTONLARI --- */
.tabs-column {
    flex: 0 0 320px; /* Orta sütun genişliği */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    width: 100%;
}

.tab-btn:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(99, 102, 241, 0.3);
}

.tab-btn.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.15); /* Hafif parlama */
}

.btn-icon {
    color: #94a3b8;
    transition: color 0.3s;
    flex-shrink: 0;
}

.tab-btn.active .btn-icon {
    color: #6366f1;
}

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.btn-desc {
    font-size: 0.75rem;
    color: #64748b;
}

/* --- 3. SÜTUN: İÇERİK KUTUSU --- */
.content-column {
    flex: 1; /* Kalan tüm alanı kaplasın */
    background: rgba(15, 23, 42, 0.5); /* Koyu Zemin */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    min-height: 350px; /* İçerik değişince zıplamasın diye min yükseklik */
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-body p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* =========================================
   MOBİL UYUMLULUK (RESPONSIVE)
   ========================================= */

@media (max-width: 991px) {
    /* Ana yapıyı alt alta diz */
    .events-grid-layout {
        flex-direction: column;
        gap: 30px;
    }

    /* 1. Başlık Alanı: Ortala ve genişlet */
    .intro-column {
        width: 100%;
        flex: none;
        text-align: center; /* Mobilde ortalı daha güzel durur */
        padding-top: 0;
        margin-bottom: 10px;
    }

    .intro-title br {
        display: none; /* Mobilde başlık yan yana olsun, alt alta kırmasın */
    }

    /* 2. Menü Alanı: Yatay Kaydırma (Scroll) */
    .tabs-column {
        width: 100%;
        flex: none;
        flex-direction: row; /* Yan yana diz */
        overflow-x: auto; /* Taşanları kaydır */
        padding-bottom: 10px;
        gap: 15px;
        
        /* Scrollbar Gizleme */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .tabs-column::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        min-width: 260px; /* Mobilde butonlar ezilmesin */
    }

    /* 3. İçerik Alanı */
    .content-column {
        width: 100%;
        padding: 25px;
    }

    .content-title {
        font-size: 1.5rem;
    }
}
/* Etkinlik İkon Resmi */
.tab-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    /* Eğer ikonların siyahsa ve arka plan koyuysa, beyaza çevirmek için: */
    /* filter: invert(1) brightness(2); */
}
/* --- ACTIVE MENÜ STİLİ --- */

/* Masaüstü Menüde Aktif Olan Link */
.nav-links a.active {
    color: #6366f1; /* Mor renk (Senin temanın rengi) */
    font-weight: 700;
    position: relative;
}

/* Altına ufak bir nokta veya çizgi koyalım */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px #6366f1;
}

/* Mobil Menüde Aktif Olan Link */
.m-link.active {
    color: #6366f1 !important;
    border-left: 3px solid #6366f1;
    padding-left: 15px;
    background: rgba(99, 102, 241, 0.1); /* Hafif mor zemin */
    width: 100%;
    text-align: center;
}
/* =========================================
   YAYINCILAR SAYFASI (GALAXY CARD)
   ========================================= */

.publishers-section {
    padding: 120px 0;
    position: relative;
    min-height: 80vh;
}

/* Grid Yapısı */
.publishers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive */
    gap: 30px;
    margin-top: 50px;
}

/* Yayıncı Kartı */
.publisher-card {
    background: rgba(30, 41, 59, 0.4); /* Şeffaf koyu */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Kart Hover Efekti (Yukarı Kalkma ve Parlama) */
.publisher-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5); /* Mor Çerçeve */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Avatar Alanı */
.p-avatar-box {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
}

.p-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}

.publisher-card:hover .p-img {
    border-color: #6366f1; /* Hoverda mor çerçeve */
}

/* Baş Harf Kutusu (Resim Yoksa) */
.p-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.1);
}

/* Küçük Platform İkonu */
.p-platform-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    border: 2px solid #0f172a; /* Arka plan rengiyle aynı olsun ki kesilmiş gibi dursun */
}

.p-platform-icon.tiktok { background: #000; box-shadow: 0 0 10px rgba(255,0,80,0.5); }
.p-platform-icon.twitch { background: #9146ff; }
.p-platform-icon.youtube { background: #ff0000; }

/* İsim ve Kullanıcı Adı */
.p-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.p-username {
    display: block;
    color: #94a3b8; /* Gri */
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: monospace; /* @kullaniciadi havası */
}

/* Buton */
.btn-glow-outline {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #a5b4fc;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.publisher-card:hover .btn-glow-outline {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
/* =========================================
   YAYINCILAR SAYFASI - DİKEY DÜZEN (ALT ALTA)
   ========================================= */

/* Sayfa Body Ayarı - Kaydırmayı Etkinleştir */
.publishers-page-body {
    overflow-y: auto !important; /* Dikey kaydırmayı zorla aç */
    height: auto !important; /* Yüksekliği içeriğe göre ayarla */
    min-height: 100vh; /* En az ekran boyu kadar olsun */
}

/* Ana Section Ayarı */
.publishers-section-vertical {
    padding: 120px 0; /* Üstten ve alttan boşluk */
    position: relative;
    min-height: 100vh; /* Footer'ı aşağı itmesi için */
    display: block; /* İçerikleri alt alta dizer */
}

/* Arka Plan Efekti */
.nebula-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.15), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Dikey Layout Container */
.vertical-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column; /* Elemanları alt alta diz */
    align-items: center; /* Ortala */
    gap: 60px; /* Başlık ile kartlar arasındaki boşluk */
}

/* Başlık Alanı */
.header-vertical {
    margin-bottom: 0; /* Container'daki gap hallediyor */
    max-width: 800px;
}

/* Kartlar İçin Grid Alanı */
.publishers-grid-vertical {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Responsive Grid */
    gap: 30px; /* Kartlar arası boşluk */
    width: 100%; /* Tam genişlik */
}

/* YAYINCI KARTI TASARIMI */
.publisher-card-vertical {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    /* Mobilde alt alta dizilince taşmasın */
    max-width: 100%;
}

/* Hover Efekti */
.publisher-card-vertical:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Diğer Kart Detayları (Eskisiyle Aynı Kalabilir) */
.publisher-card-vertical::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top, rgba(99, 102, 241, 0.15), transparent 70%); opacity: 0; transition: opacity 0.4s; }
.publisher-card-vertical:hover::before { opacity: 1; }

.p-avatar-box { width: 100px; height: 100px; margin: 0 auto 20px auto; position: relative; z-index: 2; }
.p-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,0.05); box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: border-color 0.3s; }
.publisher-card-vertical:hover .p-img { border-color: #6366f1; }
.p-initials { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(135deg, #4f46e5, #9333ea); color: white; font-size: 2.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3); }
.card-platform-badge { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: white; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.card-platform-badge.tiktok i { color: #fe2c55; text-shadow: 2px 2px 0px #25f4ee; }
.card-platform-badge.twitch i { color: #9146ff; }
.card-platform-badge.youtube i { color: #ff0000; }
.p-info { position: relative; z-index: 2; margin-bottom: 25px; }
.p-name { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 5px; }
.p-username { display: block; font-size: 0.95rem; color: #94a3b8; font-family: 'Courier New', monospace; background: rgba(0,0,0,0.2); padding: 4px 10px; border-radius: 6px; display: inline-block; }
.btn-card-action { display: inline-block; padding: 10px 30px; border-radius: 50px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; position: relative; z-index: 2; }
.btn-card-action:hover { background: #6366f1; border-color: #6366f1; box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); transform: translateY(-2px); }
.no-publisher-box { grid-column: 1/-1; text-align: center; padding: 80px 0; color: #94a3b8; }

/* MOBİL İÇİN EKSTRA AYARLAR */
@media (max-width: 768px) {
    .vertical-layout {
        gap: 40px; /* Mobilde boşluğu azalt */
    }
    .publishers-grid-vertical {
        grid-template-columns: 1fr; /* Mobilde tek sütun (alt alta) */
        padding: 0 15px; /* Kenarlardan boşluk */
    }
}
/* =========================================
   PROFİL İNCELEME MODALI (POPUP)
   ========================================= */

.profile-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: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.profile-modal-box {
    background: #0f172a;
    width: 400px;
    max-width: 90%;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
    padding: 30px;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close-btn {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none; color: #94a3b8;
    font-size: 1.5rem; cursor: pointer;
    transition: color 0.3s;
}
.modal-close-btn:hover { color: white; }

/* Header Kısmı */
.pm-header { margin-bottom: 25px; }

.pm-avatar {
    width: 90px; height: 90px; margin: 0 auto 15px auto;
    border-radius: 50%; border: 3px solid #6366f1;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

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

.pm-initials {
    width: 100%; height: 100%;
    background: #6366f1; color: white;
    font-size: 2.5rem; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
}

.pm-header h3 { font-size: 1.4rem; color: white; margin-bottom: 5px; }
.pm-header span { color: #94a3b8; font-family: monospace; }

/* Linkler Kısmı */
.pm-body p { color: #cbd5e1; margin-bottom: 15px; font-size: 0.9rem; }

.pm-links { display: flex; flex-direction: column; gap: 10px; }

.pm-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: transform 0.2s, filter 0.2s;
}

.pm-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }

.pm-btn.tk { background: #000; border: 1px solid #333; }
.pm-btn.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.pm-btn.tw { background: #9146ff; }
.pm-btn.yt { background: #ff0000; }
/* --- GENEL ALAN --- */
.app-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki taraf eşit veya 400px 1fr */
    gap: 50px;
    align-items: start;
    padding: 60px 0;
}

/* --- SOL KART (ZENOVA STİLİ) --- */
.zenova-card {
    background: rgba(30, 41, 59, 0.6); /* Çok koyu lacivert zemin */
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 195, 0.05); /* Hafif turkuaz gölge */
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Kartın etrafındaki hafif parlama (Glow) */
.zenova-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 50px rgba(0, 255, 195, 0.03);
    pointer-events: none;
}

/* Yuvarlak Logo Alanı */
.z-logo-circle {
    width: 100px;
    height: 100px;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.1);
}
.z-logo-img { width: 50px; height: auto; }

/* Başlık */
.z-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #a855f7; /* Neon Turkuaz Rengi */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Açıklama Metni */
.z-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Gereksinimler Listesi */
.z-requirements { text-align: left; margin-bottom: 30px; }

.z-requirements h3 {
    color: #a855f7; /* Başlık Rengi */
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.z-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.z-requirements li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #e2e8f0; /* Açık gri/beyaz yazı */
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Yeşil/Turkuaz Nokta (Bullet) */
.z-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 5px #a855f7;
}

/* Alt Buton (Görseldeki Yeşil Buton) */
.z-footer-btn {
    background: #00ffc3; /* Neon Turkuaz */
    color: #000; /* Siyah Yazı */
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: default; /* Tıklanabilir değil sadece görsel */
    box-shadow: 0 5px 15px rgba(0, 255, 195, 0.3);
    margin-top: 20px;
}

/* Mobil Uyum */
@media (max-width: 900px) {
    .app-wrapper { grid-template-columns: 1fr; gap: 30px; }
}