@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;800&display=swap');

:root {
    --primary: #ff003c;       
    --primary-dark: #a10026;
    --dark-bg: #050505;
    --glass-bg: rgba(20, 20, 20, 0.85);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-sec: #9ca3af;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    -webkit-user-select: none; 
    -moz-user-select: none;   
    -ms-user-select: none; 
    user-select: none;       
    -webkit-user-drag: none;   
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.9)), 
                url('https://images.unsplash.com/photo-1519074069444-1ba4fff66d16?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* --- HEADER --- */

header {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);    
    border-bottom: 2px solid var(--primary-dim);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 30px rgba(0,0,0,0.9);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 1. LOGO ALANI */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary);
    animation: pulse 3s infinite;
}

.logo-text {
    font-family: 'Teko', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 2px;
}
.logo-text span { color: var(--primary); }

@keyframes pulse {
    0% { text-shadow: 0 0 10px var(--primary); }
    50% { text-shadow: 0 0 25px var(--primary); }
    100% { text-shadow: 0 0 10px var(--primary); }
}

/* 2. MENÜ (NAV) */
.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    color: #aaa;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff;
}
/* Alt çizgi animasyonu */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
.main-nav a:hover::after { width: 100%; }

/* 3. SAĞ TARAF (Kullanıcı Paneli) */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Admin Rozeti */
.admin-badge {
    color: #ffcc00; 
    font-size: 20px;
    transition: 0.3s;
}
.admin-badge:hover { transform: scale(1.1); text-shadow: 0 0 10px #ffcc00; }

/* HUD Kullanıcı Kartı (Asıl Olay Burası) */
.user-hud {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    padding: 5px 15px 5px 5px; 
    border-radius: 50px; +++++++++++
    gap: 12px;
    transition: 0.3s;
}

.user-hud:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 31, 31, 0.3);
}

.hud-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.hud-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hud-logout {
    color: #666;
    font-size: 16px;
    margin-left: 5px;
    transition: 0.3s;
}
.hud-logout:hover { color: var(--primary); }

/* Giriş/Kayıt Butonları (Login Buttons) */
.auth-buttons { display: flex; gap: 10px; }

.btn-login, .btn-register {
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.btn-login:hover { background: #fff; color: #000; }

.btn-register {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}
.btn-register:hover {
    background: var(--primary-dim);
    box-shadow: 0 0 15px var(--primary);
}

/* MOBİL AYARLARI */
@media (max-width: 900px) {
    .header-container { flex-direction: column; height: auto; padding: 15px; }
    .main-nav { margin: 15px 0; }
    .header-right { width: 100%; justify-content: center; }
}
/* 2. ANA LAYOUT */
.main-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    flex: 1; 
}

.page-title {
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.page-title h1 { font-size: 42px; text-transform: uppercase; line-height: 1; margin-bottom: 5px; }
.page-title p { color: var(--text-sec); font-size: 16px; }

/* Grid Sistemi: Sol (%30) ve Sağ (%70) */
.profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr; 
    gap: 30px;
}

/* 3. PANELLER VE KARTLAR */
.panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* Kırmızı Üst Çizgi Efekti */
.panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.panel h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-sec);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

/* --- PROFIL SAYFASI (PROFESSIONAL V2) --- */

/* 1. Sol Kart (Agent Card) */
.user-card {
    padding: 0 !important; 
    overflow: hidden;
}

.profile-cover {
    height: 100px;
    background: linear-gradient(45deg, #111, var(--primary-dark));
    border-bottom: 1px solid var(--primary);
    position: relative;
}

/* --- PROFIL SAYFASI (PROFESSIONAL V2 - HIGH TECH) --- */

/* 1. Sol Kart & Avatar (Radar Efekti) */
.user-card {
    padding: 0 !important;
    overflow: hidden;
}

.profile-cover {
    height: 120px;
    background: 
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(45deg, #0f0f0f, #1a1a1a);
    background-size: 20px 20px, 20px 20px, 100% 100%;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

/* Kapak üzerine kırmızı tarama çizgisi */
.profile-cover::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(255, 0, 60, 0.2), transparent);
    opacity: 0.6;
}

/* Avatarın Etrafına Dönen Halka */
.user-card .avatar-container {
    width: 130px;
    height: 130px;
    margin: -65px auto 15px auto;
    border-radius: 50%;
    background: #050505;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px #050505, 0 0 20px rgba(255, 0, 60, 0.5); 
}

/* Avatar Görseli */
.user-card .avatar-img {
    width: 92%;
    height: 92%;
    border-radius: 50%;
    border: 2px solid #333;
    transition: 0.3s;
}

.user-card .avatar-container:hover .avatar-img {
    border-color: var(--primary);
    filter: brightness(1.2);
}

/* 2. Rozetler (Neon Glow) */
.user-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.badge {
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.badge-admin { 
    background: rgba(255, 215, 0, 0.1); 
    color: #ffd700; 
    border: 1px solid #ffd700; 
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.badge-member { 
    background: rgba(255, 255, 255, 0.05); 
    color: #a0a0a0; 
    border: 1px solid #444; 
}

.badge-date { 
    background: #000; 
    color: var(--primary); 
    border: 1px solid var(--primary-dark); 
}

/* 3. Dosya Yükleme Alanı (Tehlikeli Bölge Deseni) */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    border: 2px dashed #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(0,0,0,0.3),
            rgba(0,0,0,0.3) 10px,
            rgba(0,0,0,0.4) 10px,
            rgba(0,0,0,0.4) 20px
        );
    cursor: pointer;
    overflow: hidden;
}

/* Hover olduğunda çizgiler kırmızıya döner ve hareket eder */
.file-upload-wrapper:hover {
    border-color: var(--primary);
    background-color: rgba(255, 0, 60, 0.05);
    box-shadow: inset 0 0 20px rgba(255, 0, 60, 0.1);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.file-upload-content {
    text-align: center;
    pointer-events: none;
    transition: 0.3s;
    z-index: 5;
}

.file-upload-content i { 
    font-size: 32px; 
    color: #555; 
    margin-bottom: 10px; 
    transition: 0.3s;
}

.file-upload-wrapper:hover .file-upload-content i {
    color: var(--primary);
    transform: scale(1.2);
    text-shadow: 0 0 15px var(--primary);
}

.file-upload-content p { 
    font-size: 12px; 
    color: #888; 
    text-transform: uppercase; 
    margin: 0; 
    font-weight: 700;
}

/* 4. Input İkonları (Focus Effect) */
.input-with-icon {
    position: relative;
    transition: 0.3s;
}

.input-with-icon i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #555;
    font-size: 16px;
    transition: 0.3s;
    z-index: 2;
}

/* Textarea için ikonu yukarı al */
.input-with-icon textarea + i, 
.input-with-icon i:has(+ textarea) { 
    top: 25px; 
}

.input-with-icon input, 
.input-with-icon textarea {
    padding-left: 50px !important;
}

/* Inputa tıklayınca İkon Parlasın */
.input-with-icon:focus-within i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}
.discord-status {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid #5865F2;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* 5. FORMLAR */
.form-group { margin-bottom: 20px; }

label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* BURAYI GÜNCELLEDİK: input[type="email"] EKLENDİ */
input[type="text"], 
input[type="email"], 
input[type="password"], 
textarea, 
input[type="file"] {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid #333;
    padding: 15px; 
    color: #fff;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    transition: 0.3s;
    font-size: 14px; 
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
}

/* --- AUTOFILL FIX (Tarayıcı otomatik doldurunca beyaz olmasın) --- */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important; 
    -webkit-text-fill-color: white !important; 
    transition: background-color 5000s ease-in-out 0s;
}

/* 6. BUTONLAR */
.btn {
    width: 100%;
    padding: 14px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: 'Barlow', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); /* Köşeleri Kesik */
}

.btn-primary:hover {
    background: #ff1f53;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 60, 0.4);
}

.btn-discord {
    background: #5865F2;
    color: white;
    border-radius: 4px;
}

/* 7. FOOTER */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 13px;
    margin-top: auto;
}

/* 8. MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .profile-grid { grid-template-columns: 1fr; }
    .page-title h1 { font-size: 32px; }
}

/* -----------------------------------------------------------
   AUTH PAGES (Giriş & Kayıt Sayfaları Özel Tasarımı)
----------------------------------------------------------- */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; 
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background: rgba(10, 10, 10, 0.85); 
    backdrop-filter: blur(20px);
    border: 1px solid #333;
    padding: 40px;
    position: relative;
    clip-path: polygon(
        20px 0, 100% 0, 
        100% calc(100% - 20px), calc(100% - 20px) 100%, 
        0 100%, 0 20px
    );
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

/* Üst Kısım Kırmızı Çizgi */
.auth-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 60, 0.5));
    animation: float 3s ease-in-out infinite;
}

.auth-header h2 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.auth-header p {
    color: #888;
    font-size: 14px;
    margin-top: 5px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
}
.auth-footer a:hover {
    text-shadow: 0 0 10px var(--primary);
    text-decoration: underline;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* -----------------------------------------------------------
   ANA SAYFA
----------------------------------------------------------- */

/* 1. HERO ALANI  */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;

}

/* Güvenlik Kamerası Tarama Çizgisi Efekti */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(255, 0, 60, 0.1) 50%, rgba(0,0,0,0) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100%; }
}

.hero-content {
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

/* Glitch (Bozuk Sinyal) Başlık Efekti */
.hero-glitch {
    font-size: 80px;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
    color: #fff;
    position: relative;
    text-shadow: 2px 2px var(--primary);
    margin-bottom: 20px;
}

.hero-glitch::before, .hero-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--dark-bg);
}

.hero-glitch::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.hero-glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--primary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(80px, 9999px, 100px, 0); }
    40% { clip: rect(10px, 9999px, 50px, 0); }
    60% { clip: rect(40px, 9999px, 90px, 0); }
    80% { clip: rect(70px, 9999px, 20px, 0); }
    100% { clip: rect(30px, 9999px, 60px, 0); }
}

.hero-desc {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    background: rgba(0,0,0,0.7);
    display: inline-block;
    padding: 10px 20px;
    border-left: 3px solid var(--primary);
}

/* IP Kopyalama Butonu (Gelişmiş) */
.ip-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ip-box {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #444;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.ip-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}

.ip-box i { font-size: 20px; color: var(--primary); }
.ip-address { font-family: 'Barlow', monospace; font-size: 20px; font-weight: 700; color: #fff; }
.click-hint { font-size: 12px; color: #666; text-transform: uppercase; margin-left: 10px; }

/* --- ÖZELLİKLER IZGARASI (V2.5 - KOMPAKT & DENGELİ) --- */

.features-section {
    max-width: 1100px; 
    margin: 20px auto;  
    padding: 20px, 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background: #0a0a0a;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    
    border: 1px solid #222;
    padding: 25px; 
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row; 
    align-items: flex-start;
    gap: 20px;
    clip-path: polygon(
        15px 0, 100% 0, 
        100% 100%, 
        0 100%, 
        0 15px
    );
}

/* Hover Efekti */
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.1);
    background-color: #0e0e0e;
}

/* Alt Çizgi Animasyonu */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px; 
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

/* İkon Kutusu (Küçültüldü ve Sabitlendi) */
.f-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.f-icon i {
    font-size: 22px;
    color: #666;
    transition: 0.4s;
}

.feature-card:hover .f-icon {
    background: rgba(255, 0, 60, 0.1);
    border-color: var(--primary);
    transform: rotate(-10deg);
}

.feature-card:hover .f-icon i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* İçerik Alanı */
.feature-content {
    flex: 1;
}

/* Başlık */
.feature-card h3 {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    transition: 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary);
}

/* Açıklama Metni */
.feature-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-family: 'Barlow', sans-serif;
}

/* Mobil Uyum */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 20px;
    }
}
/* 3. HABERLER (Dossier Style) */
.news-container {
    max-width: 1300px;
    margin: 0 auto 100px auto;
    padding: 0 20px;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}
.section-head h2 { font-size: 42px; font-family: 'Teko', sans-serif; color: #fff; }
.section-head i { font-size: 30px; color: var(--primary); }

.news-card-pro {
    display: flex;
    background: #0f0f0f;
    border: 1px solid #222;
    margin-bottom: 30px;
    transition: 0.3s;
}
.news-card-pro:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.news-img-box {
    flex: 0 0 350px;
    position: relative;
    overflow: hidden;
}
.news-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.news-card-pro:hover .news-img-box img { transform: scale(1.1); }

.news-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-title-pro {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Barlow', sans-serif;
}

.news-btn {
    margin-top: 20px;
    align-self: flex-start;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

/* Mobil */
@media (max-width: 900px) {
    .hero-glitch { font-size: 50px; }
    .news-card-pro { flex-direction: column; }
    .news-img-box { flex: auto; height: 200px; }
    .ip-wrapper { flex-direction: column; width: 100%; }
    .ip-box { width: 100%; justify-content: center; }
}

/* -----------------------------------------------------------
   2. İSTATİSTİKLER 
----------------------------------------------------------- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: -80px; 
    position: relative;
    z-index: 20;
    flex-wrap: wrap;
    padding: 0 20px;
}

.stat-card {
    background: rgba(10, 10, 10, 0.85); /* Koyu Cam */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 280px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(
        20px 0, 100% 0, 
        100% calc(100% - 20px), calc(100% - 20px) 100%, 
        0 100%, 0 20px
    );
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Kartların Altına Renkli Çizgi  */
.stat-card.status-active { border-bottom: 4px solid #00e676; }
.stat-card.status-players { border-bottom: 4px solid var(--primary); }
.stat-card.status-discord { border-bottom: 4px solid #5865F2; }

/* Arka Plandaki Büyük Silik İkon */
.stat-bg-icon {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 100px;
    opacity: 0.05;
    pointer-events: none;
    transition: 0.4s;
    z-index: 0;
}

/* Hover Efektleri */
.stat-card:hover {
    transform: translateY(-10px);
}
.stat-card:hover .stat-bg-icon {
    opacity: 0.15;
    transform: translateY(-50%) rotate(0deg) scale(1.1);
}

/* Status Active Hover */
.stat-card.status-active:hover { box-shadow: 0 10px 40px rgba(0, 230, 118, 0.2); border-color: #00e676; }
/* Players Hover */
.stat-card.status-players:hover { box-shadow: 0 10px 40px rgba(255, 0, 60, 0.2); border-color: var(--primary); }
/* Discord Hover */
.stat-card.status-discord:hover { box-shadow: 0 10px 40px rgba(88, 101, 242, 0.2); border-color: #5865F2; }

/* İçerik Stilleri */
.stat-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-number {
    font-family: 'Teko', sans-serif; 
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Animasyonlu Yeşil Nokta (Status İçin) */
.pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #00e676;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(0, 230, 118, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .stats-bar { margin-top: 20px; gap: 15px; }
    .stat-card { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; padding: 20px; }
    .stat-bg-icon { font-size: 60px; right: 10px; }
    .stat-content { text-align: left; }
    .stat-number { font-size: 36px; }
}

/* --- HABER KATEGORİ ETİKETLERİ (BADGES) --- */

.news-card-pro {
    position: relative; 
}

/* Kategori Etiketi  */
.news-badge {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 8px 15px;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    z-index: 5;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

/* Renk Varyasyonları */
.badge-duyuru {
    background: var(--primary);
    border-left: 3px solid #ff99aa;
}

.badge-guncelleme {
    background: #00e676; 
    border-left: 3px solid #ccffdd;
    color: #000;
}

.badge-etkinlik {
    background: #5865F2;
    border-left: 3px solid #aab1ff;
}

.badge-genel {
    background: #444; /* Gri */
    border-left: 3px solid #888;
}

/* Yazar Alanı Güncellemesi */
.news-author {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-author img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* -----------------------------------------------------------
   HABER DETAY SAYFASI (NEWS DETAIL)
----------------------------------------------------------- */

.news-detail-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.news-category-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.detail-title {
    font-family: 'Teko', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
    line-height: 1.1;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    display: inline-flex;
}

.detail-meta b { color: #fff; margin-left: 5px; }

/* Büyük Resim Kutusu */
.detail-image-box {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.detail-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Metin Kutusu */
.detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    padding: 40px;
    text-align: left;
    border-left: 4px solid var(--primary); 
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .detail-title { font-size: 32px; }
    .detail-image-box { max-height: 250px; }
    .detail-content { padding: 20px; }
}

/* -----------------------------------------------------------
   ADMIN PANELİ 
----------------------------------------------------------- */
.admin-wrapper {
    display: flex;
    min-height: calc(100vh - 80px);
    background: #050505;
}

/* 1. YENİLENMİŞ SIDEBAR (SOL MENÜ) */
.admin-sidebar {
    width: 280px;
    background: #080808;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.sidebar-header {
    padding: 0 25px 20px 25px;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
}

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #888;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: 0.3s;
}

.admin-menu-item i { width: 20px; text-align: center; font-size: 18px; }

.admin-menu-item:hover, .admin-menu-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left-color: var(--primary);
    padding-left: 30px;
}

/* 2. TABLO VE BUTONLAR */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    font-size: 14px;
}
.data-table th { background: #000; color: #fff; padding: 15px; text-align: left; border-bottom: 2px solid var(--primary); }
.data-table td { padding: 15px; border-bottom: 1px solid #222; color: #ccc; }
.data-table tr:hover { background: #151515; }

/* Aksiyon Butonları */
.action-btn {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
}
.btn-edit { background: #f39c12; color: #000; }
.btn-delete { background: #d90429; color: #fff; }
.btn-admin { background: #3498db; color: #fff; }

/* 3. DÜZENLEME FORMU */
.edit-mode-box {
    border: 1px solid #f39c12;
    background: rgba(243, 156, 18, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

/* --- ÜYELER SAYFASI  --- */

/* 1. Arama Alanı (Radar Scanner) */
.search-wrapper {
    background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(20,20,20,0.8));
    border: 1px solid #333;
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Arkada dönen radar efekti */
.search-wrapper::after {
    content: '';
    position: absolute;
    right: -50px; top: -50%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.search-input-box {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    padding-left: 15px;
    outline: none;
    text-transform: uppercase;
}
.search-input-box::placeholder { color: #555; }

.search-icon-box {
    font-size: 24px;
    color: var(--primary);
    animation: blink-red 2s infinite;
}

@keyframes blink-red { 50% { opacity: 0.5; } }

/* 2. Operatör Kartları Grid */
.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Kartın Kendisi */
.op-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    clip-path: polygon(
        20px 0, 100% 0, 
        100% calc(100% - 20px), calc(100% - 20px) 100%, 
        0 100%, 0 20px
    );
}

.op-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.15);
}

/* Kartın Üst Kısmı (Görsel Arka Planı) */
.op-header {
    height: 100px;
    background: 
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%),
        linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%);
    background-color: #080808;
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
    border-bottom: 2px solid var(--primary-dark);
}

/* Avatar Kutusu */
.op-avatar-box {
    width: 90px;
    height: 90px;
    position: absolute;
    bottom: -45px;
    left: 20px;
    padding: 3px;
    background: #050505;
    border: 1px solid #444;
    z-index: 2;
}

.op-avatar-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.4s;
}

/* Hover'da renklenir */
.op-card:hover .op-avatar-box img { filter: grayscale(0%); }
.op-card:hover .op-avatar-box { border-color: var(--primary); }

/* Sağ Üstteki ID Numarası */
.op-id-tag {
    position: absolute;
    top: 10px; right: 10px;
    font-family: 'Black Ops One', cursive;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Kart İçeriği */
.op-body {
    padding: 50px 20px 20px 20px;
}

.op-name {
    font-family: 'Teko', sans-serif;
    font-size: 28px;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.op-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
}

.role-admin { color: #ffd700; border: 1px solid #ffd700; background: rgba(255, 215, 0, 0.1); }
.role-member { color: #888; border: 1px solid #444; }

/* Alt Bilgiler */
.op-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.op-stats span i { color: var(--primary); margin-right: 5px; }

/* Aksiyon Butonları (Gizli, Hover'da çıkar) */
.op-actions {
    position: absolute;
    top: 0; right: 0;
    height: 100%; width: 60px;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: 0.3s;
    border-left: 1px solid var(--primary);
}

.op-card:hover .op-actions { transform: translateX(0); }

.op-btn {
    color: #fff;
    font-size: 20px;
    transition: 0.2s;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #444;
    background: #111;
}
.op-btn:hover { background: var(--primary); border-color: var(--primary); }

/* Üye Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.member-card {
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.member-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}
.member-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #333;
    margin-bottom: 10px;
}
.member-card h3 { font-size: 20px; color: #fff; margin-bottom: 5px; font-family: 'Teko', sans-serif; }
.member-role { font-size: 12px; color: var(--primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }

/* --- SİBER İLETİŞİM SİSTEMİ --- */

.comms-container {
    display: flex;
    height: 700px;
    background: #080808;
    border: 1px solid #333;
    position: relative;
    clip-path: polygon(
        20px 0, 100% 0, 
        100% calc(100% - 20px), calc(100% - 20px) 100%, 
        0 100%, 0 20px
    );
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* Üst ve Alt Dekoratif Çizgiler */
.comms-container::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 10;
}
.comms-container::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 10;
}

/* 1. SOL MENÜ (KİŞİ LİSTESİ) */
.comms-sidebar {
    width: 320px;
    background: #0a0a0a;
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.comms-header {
    padding: 20px;
    border-bottom: 1px solid #222;
    background: rgba(255, 0, 60, 0.05);
}
.comms-header h3 { font-size: 20px; margin: 0; color: #fff; font-family: 'Teko', sans-serif; letter-spacing: 1px; }
.comms-header span { font-size: 11px; color: var(--primary); text-transform: uppercase; }

.contact-list {
    flex: 1;
    overflow-y: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #151515;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.contact-item:hover { background: #111; }

/* Aktif Olan Sohbet */
.contact-item.active {
    background: rgba(255, 0, 60, 0.1);
    border-left: 3px solid var(--primary);
}

.contact-avatar {
    width: 45px; height: 45px;
    position: relative;
}
.contact-avatar img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
    transition: 0.3s;
}
.contact-item:hover img { border-color: var(--primary); }

/* Online Noktası */
.contact-status {
    position: absolute;
    bottom: 0; right: 0;
    width: 10px; height: 10px;
    background: #444;
    border: 2px solid #000;
    border-radius: 50%;
}
.contact-item.active .contact-status { background: #00e676; box-shadow: 0 0 5px #00e676; }

.contact-info h4 { margin: 0; font-size: 16px; color: #eee; font-weight: 600; }
.contact-info p { margin: 2px 0 0 0; font-size: 12px; color: #666; text-transform: uppercase; }

/* 2. SAĞ TARAF (CHAT ALANI) */
.comms-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
}

/* Chat Başlığı */
.chat-top-bar {
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-top-info { display: flex; align-items: center; gap: 10px; }
.chat-top-info i { color: var(--primary); font-size: 18px; }
.chat-top-info h3 { margin: 0; font-size: 18px; color: #fff; text-transform: uppercase; }

/* Mesaj Alanı */
.chat-feed {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Mesaj Balonları */
.msg-row {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    position: relative;
}

.msg-row.incoming { align-self: flex-start; }
.msg-row.outgoing { align-self: flex-end; align-items: flex-end; }

.msg-bubble {
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
    position: relative;
    /* Köşeli Balon */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

/* Gelen Mesaj Stili */
.msg-row.incoming .msg-bubble {
    background: #1a1a1a;
    border: 1px solid #333;
    border-left: 3px solid #666;
}

/* Giden Mesaj Stili */
.msg-row.outgoing .msg-bubble {
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid var(--primary-dark);
    border-right: 3px solid var(--primary);
    color: #fff;
    /* Giden mesajın köşesi ters olsun */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.msg-meta {
    font-size: 10px;
    color: #555;
    margin-top: 5px;
    text-transform: uppercase;
    font-family: 'Barlow', monospace;
    letter-spacing: 1px;
}

/* Yazma Alanı (Command Line) */
.chat-input-wrapper {
    padding: 20px;
    background: #0a0a0a;
    border-top: 1px solid #222;
    display: flex;
    gap: 15px;
}

.chat-input-box {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: 0.3s;
}
.chat-input-box:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.1);
}

.chat-send-btn {
    width: 60px;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
}
.chat-send-btn:hover {
    background: #ff1f53;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .comms-container { flex-direction: column; height: 80vh; }
    .comms-sidebar { width: 100%; height: 30%; border-right: none; border-bottom: 1px solid #333; }
    .comms-body { height: 70%; }
}

/* --- BİLDİRİM ROZETİ --- */
.nav-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    border: 1px solid #fff;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-badge 2s infinite;
    display: none;
}

/* Sayı varsa göster */
.nav-badge.show {
    display: inline-block;
}

/* Yanıp sönme efekti */
@keyframes pulse-badge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(255, 0, 60, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 60, 0); }
}

/* Menü linkinin pozisyonunu ayarla ki badge dışarı taşmasın */
.main-nav ul li a {
    position: relative;
}

/* Mesaj Tik Stili */
.msg-tick {
    font-size: 10px;
    margin-left: 5px;
}
.tick-sent { color: #888; }
.tick-read { color: #0086e6; }

/* --- HABER ETKİLEŞİMİ (BEĞENİ & YORUM) --- */

/* Etkileşim Barı  */
.interaction-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.like-btn {
    background: transparent;
    border: 2px solid #333;
    color: #888;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.like-btn:hover { border-color: var(--primary); color: #fff; }

/* Eğer beğenildiyse */
.like-btn.liked {
    background: rgba(255, 0, 60, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}
.like-btn.liked i { animation: heartbeat 1s; }

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* --- YORUM ALANI  --- */

.comments-section {
    margin-top: 60px;
    background: #080808;
    border: 1px solid #222;
    padding: 40px;
    position: relative;
}

/* Üst Başlık Süsü */
.comments-section::before {
    content: '/// COMMS_LOG_V1.2 ///';
    position: absolute;
    top: -12px; left: 20px;
    background: #080808;
    color: var(--primary);
    font-family: 'Teko', sans-serif;
    padding: 0 10px;
    font-size: 18px;
    letter-spacing: 2px;
}

.comments-header {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

/* Yorum Yazma Alanı */
.comment-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 15px;
    transition: 0.3s;
    border-left: 3px solid #333;
}

.comment-form textarea:focus {
    border-color: var(--primary);
    background: #151515;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
}

/* Yorum Listesi */
.comment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #333;
    animation: fadeIn 0.5s ease;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 60px; height: 60px;
    border-radius: 6px;
    border: 2px solid #333;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-author {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
}
/* --- YORUM PROFİL LİNKLERİ --- */
.comment-author a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.comment-author a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.comment-avatar a {
    display: block; 
}

/* Avatarın üzerine gelince parlama efekti */
.comment-avatar a:hover img {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

/* Rol Rozetleri */
.role-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-admin {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.role-member {
    background: #222;
    color: #888;
    border: 1px solid #444;
}

.comment-date {
    font-size: 12px;
    color: #555;
    margin-left: auto; 
}

.comment-text {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 0 10px 10px 10px;
    border-left: 2px solid var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Ana Sayfa Kartlarındaki İkonlar */
.news-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 10px;
}
.news-stats span { display: flex; align-items: center; gap: 5px; }
.news-stats i { color: #888; }

/* --- ALINTI / CEVAPLAMA SİSTEMİ --- */

/* Cevapla Butonu  */
.reply-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.reply-btn:hover { color: var(--primary); }

/* Alıntı Kutusu  */
.quote-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--primary);
    padding: 10px 15px;
    margin-bottom: 15px;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: #aaa;
    position: relative;
}

.quote-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    color: var(--primary);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
}

.quote-text {
    font-style: italic;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- MESAJ SİLME BUTONU --- */
.msg-actions {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    opacity: 0;
    transition: 0.3s;
}

/* Mesaj balonunun üzerine gelince göster */
.msg-row:hover .msg-actions {
    opacity: 1;
}

.delete-btn {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 12px;
    padding: 0 5px;
    transition: 0.2s;
}

.delete-btn:hover {
    color: #ff003c;
    transform: scale(1.2);
}

/* --- YORUM İŞLEMLERİ (ULTRA TACTICAL V3) --- */

.comment-item {
    position: relative;
    transition: 0.3s;
}

/* Buton Grubu Konumu */
.comment-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
    z-index: 10;
}

/* Yorumun üzerine gelince göster */
.comment-item:hover .comment-actions {
    opacity: 1;
    transform: translateX(0);
}

/* --- ANA BUTON STİLİ (SABİT İKON) --- */
.action-icon {
    width: 36px !important;  
    height: 36px !important;
    
    display: flex !important;
    align-items: center !important;    
    justify-content: center !important;
    
    padding: 0 !important;
    
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid #333;
    color: #777;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative; 
}

/* İkonun Kendisi */
.action-icon i {
    font-size: 14px !important;
    line-height: 1 !important;  
    margin: 0 !important;     
    padding: 0 !important;
    display: block !important;
    width: auto !important;     
}



.action-edit:hover {
    border-color: #f39c12;
    color: #fff;
    background: rgba(243, 156, 18, 0.8);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
    
    transform: translateY(-5px) rotate(15deg); 
}

/* İkonu düzeltme (Ters hareket) */
.action-edit:hover i {

    transform: rotate(-15deg) !important; 
}


/* 2. SİL (ÇÖP KUTUSU) */
.action-delete:hover {
    border-color: #ff003c;
    color: #fff;
    background: rgba(255, 0, 60, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
    transform: translateY(-5px) rotate(-15deg);
}

/* İkonu düzeltme (Ters hareket) */
.action-delete:hover i {
    transform: rotate(15deg) !important;
}


/* --- TOOLTIP (YAZIYI KUTUDAN AYIRMA) --- */

/* Sadece ::after kullanıyoruz (::before ikonun kendisidir) */
.action-icon::after {
    content: attr(title); 

    position: absolute;
    bottom: 140%;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    font-family: sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid #444;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 99;
}

/* Hover olunca Yazıyı Göster ve Yerine Oturt */
.action-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Tooltip Renkleri */
.action-edit:hover::after { border-color: #f39c12; color: #f39c12; }
.action-delete:hover::after { border-color: #ff003c; color: #ff003c; }
/* --- DÜZENLEME MODU (TEXTAREA) GÜNCELLEME --- */
.edit-area {
    display: none;
    margin-top: 15px;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border: 1px dashed var(--primary);
    border-radius: 4px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.edit-textarea {
    width: 100%;
    background: #080808;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    font-family: 'Barlow', sans-serif;
    min-height: 100px;
    margin-bottom: 15px;
    outline: none;
    resize: vertical;
    font-size: 14px;
    line-height: 1.5;
}

.edit-textarea:focus {
    border-color: #f39c12;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.edit-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Mini Butonlar */
.btn-mini {
    padding: 8px 25px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%, 0 10px);
    transition: 0.3s;
}

.btn-save { background: #f39c12; color: #000; }
.btn-save:hover { background: #fff; box-shadow: 0 0 15px #f39c12; }

.btn-cancel { background: #222; color: #ccc; border: 1px solid #333; }
.btn-cancel:hover { background: #333; color: #fff; }

/* --- BAŞVURU SİSTEMİ  --- */

.app-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid #333;
    position: relative;
    clip-path: polygon(
        30px 0, 100% 0, 
        100% calc(100% - 30px), calc(100% - 30px) 100%, 
        0 100%, 0 30px
    );
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    padding: 3px;
}

/* İç Çerçeve (Border Efekti) */
.app-inner {
    background: #080808;
    padding: 40px;
    clip-path: polygon(
        28px 0, 100% 0, 
        100% calc(100% - 28px), calc(100% - 28px) 100%, 
        0 100%, 0 28px
    );
    min-height: 500px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.app-header {
    border-bottom: 2px solid var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.app-title h2 { font-family: 'Black Ops One', cursive; font-size: 32px; margin: 0; color: #fff; letter-spacing: 2px; }
.app-title span { color: var(--primary); font-size: 14px; font-family: 'Barlow', sans-serif; letter-spacing: 4px; display: block; }

.app-id {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    color: #444;
    border: 1px solid #333;
    padding: 0 10px;
}

/* FORM ALANLARI */
.app-group { margin-bottom: 25px; }

.app-group label {
    font-family: 'Teko', sans-serif;
    font-size: 20px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.app-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    transition: 0.3s;
    border-left: 3px solid #333;
}

.app-input:focus {
    background: rgba(0,0,0,0.5);
    border-color: #555;
    border-left-color: var(--primary);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.1);
}

.app-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* --- DURUM KARTLARI (STATUS) --- */
.status-overlay {
    text-align: center;
    padding: 50px;
    border: 2px dashed #333;
    background: rgba(0,0,0,0.6);
}

/* 1. BEKLİYOR */
.st-pending { border-color: #f39c12; background: rgba(243, 156, 18, 0.05); }
.st-pending i { font-size: 60px; color: #f39c12; animation: pulse 2s infinite; margin-bottom: 20px; }
.st-pending h3 { color: #f39c12; font-size: 30px; margin: 0; font-family: 'Teko', sans-serif; }

/* 2. ONAYLANDI (Yeşil Mühür) */
.st-accepted { border-color: #00e676; background: rgba(0, 230, 118, 0.05); }
.st-accepted i { font-size: 60px; color: #00e676; margin-bottom: 20px; }
.st-accepted h3 { color: #00e676; font-size: 30px; margin: 0; font-family: 'Teko', sans-serif; letter-spacing: 2px; }

/* 3. REDDEDİLDİ (Kırmızı Damga) */
.st-rejected { border-color: #ff003c; background: rgba(255, 0, 60, 0.05); position: relative; }
.st-rejected::after {
    content: 'REDDEDİLDİ';
    position: absolute;
    top: 20%; left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 0, 60, 0.2);
    border: 5px solid rgba(255, 0, 60, 0.2);
    padding: 10px 40px;
    pointer-events: none;
    font-family: 'Black Ops One', cursive;
}
.st-rejected h3 { color: #ff003c; font-size: 30px; font-family: 'Teko', sans-serif; }

.admin-feedback {
    background: #111;
    border-left: 4px solid #ff003c;
    padding: 20px;
    text-align: left;
    margin-top: 20px;
    color: #ccc;
    font-family: 'Barlow', monospace;
}

/* Yardımcı Metin */
.hint { font-size: 12px; color: #666; margin-top: 5px; display: block; }

/* --- DESTEK SİSTEMİ (V2: CRITICAL LOGS) --- */

/* Durum Rozetleri */
.ticket-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 2px; /* Köşeleri keskinleştirdik */
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.tb-acik { background: #00e676; color: #000; } /* Açık - Yeşil */
.tb-cevaplandi { background: #f39c12; color: #000; animation: pulse 2s infinite; } /* Cevaplandı - Yanıp sönen Turuncu */
.tb-kapali { background: #222; color: #888; border: 1px solid #444; } /* Kapalı - Gri */

/* Öncelik Renkleri */
.prio-dusuk { color: #555; }
.prio-orta { color: #3498db; }
.prio-yuksek { color: #f39c12; font-weight: bold; }
.prio-kritik { color: #ff003c; font-weight: bold; text-shadow: 0 0 10px rgba(255,0,60,0.8); animation: blink-red 1s infinite; }

/* Ticket Listesi (Grid) */
.ticket-grid {
    display: grid;
    gap: 15px;
}

.ticket-item {
    background: #111; /* Daha koyu zemin */
    border: 1px solid #222;
    border-left: 4px solid #555; /* Varsayılan koyu çizgi */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.ticket-item:hover {
    background: #151515;
    transform: translateX(8px); /* Daha belirgin sağa kayma */
    border-color: #333;
    border-left-color: var(--primary); /* Hover'da kırmızı vurgu */
}

.ticket-info h3 { 
    margin: 0 0 5px 0; 
    font-family: 'Teko', sans-serif; 
    font-size: 24px; /* Başlık fontunu büyüttük */
    color: #fff; 
    letter-spacing: 1px;
}

.ticket-meta { 
    font-size: 13px; 
    color: #444; /* Meta veriyi daha silik yaptık */
    text-transform: uppercase; 
}
.ticket-meta span { margin-right: 15px; }
/* --- MESAJLAŞMA ALANI (TICKET DETAIL) --- */

.ticket-chat-box {
    background: #080808;
    border: 1px solid var(--primary-dark); /* Koyu kırmızı çerçeve */
    height: 550px; /* Yüksekliği artırdık */
    overflow-y: auto;
    padding: 25px;
    margin-bottom: 20px;
    /* Hafif radar deseni */
    background-image: radial-gradient(#1a1a1a 1px, transparent 1px);
    background-size: 25px 25px;
    border-radius: 0;
}

/* Mesaj Balonu (Daha sıkı) */
.t-msg {
    margin-bottom: 15px; /* Boşluğu azalttık */
    padding: 5px; /* İç boşluk ekle */
    max-width: 75%; /* Daha geniş baloncuklar */
}

.t-bubble {
    padding: 12px 18px;
    border-radius: 3px;
    font-size: 15px;
    color: #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* Giden Mesaj (Kullanıcı) */
.t-msg.user .t-bubble { 
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.2), rgba(10, 10, 10, 0.9)); 
    border: 1px solid var(--primary); 
    border-bottom-right-radius: 0;
}

/* Gelen Mesaj (Admin) */
.t-msg.admin .t-bubble { 
    background: #181818; 
    border: 1px solid #444; 
    border-bottom-left-radius: 0;
    border-left: 3px solid #ccc; /* Beyaz çizgi vurgusu */
}

.t-meta { 
    font-size: 10px; 
    color: #444; 
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- KATMANLI İLERLEME ÇUBUKLARI (STACKED BARS) --- */
.story-bars-container {
    display: flex;
    flex-direction: column; 
    gap: 5px; 
    margin-bottom: 15px;
    background: #050505;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 4px;
}

.story-bar-track {
    width: 100%;
    height: 8px; 
    background: #222;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.story-bar-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px currentColor; 
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace; 
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    animation: alertSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.alert-hide {
    opacity: 0;
    transform: translateY(-10px); 
    pointer-events: none;
}

.alert-error {
    background: rgba(45, 10, 10, 0.95); 
    color: #ff5252; 
    border: 1px solid #5c1b1b;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.alert-error::before {
    background: #ff5252;
    box-shadow: 2px 0 10px #ff0000;
}

.alert-error i {
    font-size: 18px;
    animation: shake 0.5s ease-in-out;
}

.alert-success {
    background: rgba(10, 35, 15, 0.95); 
    color: #00e676;
    border: 1px solid #1b5c2d;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
}

.alert-success::before {
    background: #00e676;
    box-shadow: 2px 0 10px #00e676;
}

.alert-success i {
    font-size: 18px;
}

@keyframes alertSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.badge-container {
    position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 5px; align-items: flex-end; z-index: 2;
}

.badge-new {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 800;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.4); text-transform: uppercase; letter-spacing: 1px;
}

.badge-sale {
    background: linear-gradient(45deg, #ff003c, #c0392b);
    color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 800;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.4); text-transform: uppercase; letter-spacing: 1px;
}

.price-area {
    margin-top: 10px; display: flex; align-items: baseline; gap: 10px;
}

.price-old {
    text-decoration: line-through; color: #666; font-size: 14px; font-weight: normal;
}

.price-current {
    color: #00e676; font-size: 20px; font-weight: bold; font-family: 'Teko', sans-serif;
}

/* Market Yönetim Paneli Özel Tasarım */
.market-admin-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.edit-panel {
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-top: 3px solid #f1c40f; /* Varsayılan sarı çizgi */
}

.edit-panel.new-mode {
    border-top-color: #00e676; /* Yeni ekleme modunda yeşil */
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.panel-header h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #888;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Özel Input Tasarımı (Görseldeki Gibi) */
.custom-input-wrapper {
    position: relative;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.custom-input-wrapper:focus-within {
    border-color: #f1c40f;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.1);
}

.custom-input-icon {
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-right: 1px solid #333;
    font-size: 16px;
}

.custom-input {
    width: 100%;
    height: 45px;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.custom-textarea {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    resize: vertical;
    outline: none;
    transition: 0.3s;
}

.custom-textarea:focus {
    border-color: #f1c40f;
}

.custom-select {
    width: 100%;
    height: 45px;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 0 15px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
}

.action-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-save {
    background: #f1c40f;
    color: #000;
}
.btn-save:hover { background: #d4ac0d; }

.btn-create {
    background: #00e676;
    color: #000;
}

.btn-cancel {
    background: #333;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}

/* Önizleme Paneli */
.preview-box {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.preview-image-area {
    height: 180px;
    background: #000;
    position: relative;
    border-bottom: 1px solid #222;
}

.preview-content {
    padding: 20px;
}