/* HERDLING ULTIMATE v2.0 - Professional & Trust Oriented 
*/

:root {
    /* Ana Renkler - Daha Kurumsal ve Okunaklı */
    --bg-main: #06070a;
    --bg-darker: #040508;
    --card-surface: rgba(13, 15, 22, 0.98);
    
    /* Vurgu Renkleri */
    --cyan: #00d2ff;
    --gold: #ffb800;
    --success: #00ff88;
    
    /* Metin Renkleri */
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Efektler */
    --glass-border: rgba(255, 255, 255, 0.06);
    --glow-cyan: rgba(0, 210, 255, 0.3);
    --glow-gold: rgba(255, 184, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rajdhani', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- Background Doku --- */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 210, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 184, 0, 0.05) 0%, transparent 40%),
        var(--bg-main);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Navigasyon --- */
header {
    background: rgba(6, 7, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span { color: var(--cyan); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--cyan);
}

/* --- Hero --- */
.hero {
    padding: 160px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 75px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(to right, #fff, var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 500;
}

/* --- Product Cards --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.product-card {
    background: var(--card-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
}

.product-card.premium:hover { border-color: rgba(255, 184, 0, 0.3); }

/* Durum Göstergesi */
.status {
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.product-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

/* Özellik Listesi */
.feature-list {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.feature-list li::before {
    content: '→';
    margin-right: 12px;
    color: var(--cyan);
    font-weight: 700;
}

.premium .feature-list li::before { color: var(--gold); }

/* --- Buton Düzelteesi (Yazı Görünürlüğü) --- */
/* --- GÜNCELLENMİŞ BUTONLAR VE AKSİYON ALANLARI --- */

.btn-download {
    position: relative;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cyan) 0%, #0088ff 100%);
    color: #000 !important; /* Yazı rengi her zaman siyah ve net */
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}

/* Butonun içindeki parlayan ışık efekti */
/* --- BUTON HATALARINI DÜZELTEN GÜNCEL KOD --- */

/* 1. Linklerin varsayılan stilini temizle (Alt çizgi ve renk hatası için kritik) */
.product-card a {
    text-decoration: none !important; /* Alt çizgiyi zorla kaldırır */
    display: block;
    width: 100%;
}

.btn-download {
    position: relative;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    
    /* Standart Buton Rengi (Mavi) */
    background: linear-gradient(135deg, var(--cyan) 0%, #0088ff 100%);
    color: #000000 !important; /* Yazı siyah ve net */
    
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* İçeriği tam ortala */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    outline: none;
}

/* Premium (Gold) Buton - Rengi sabitle */
.product-card.premium .btn-download {
    background: linear-gradient(135deg, var(--gold) 0%, #ff8800 100%) !important;
    color: #000000 !important;
}

/* Spoofer Buton - Rengi sabitle */
.product-card.spoofer .btn-download {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Hover Efektleri - Üzerine gelince parlama ve temizlenme */
.btn-download:hover {
    transform: translateY(-3px);
    background: #ffffff !important; /* Üzerine gelince hepsi temiz beyaz olur */
    color: #000000 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
}

/* Butonun içindeki parlayan efekt (Işık süzmesi) */
.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s;
}

.btn-download:hover::before {
    left: 100%;
}

/* Responsive Düzenleme */
@media (max-width: 480px) {
    .btn-download {
        padding: 14px;
        font-size: 14px;
    }
}

/* Premium (Gold) Buton Güncellemesi */
.premium .btn-download {
    background: linear-gradient(135deg, var(--gold) 0%, #ff8800 100%);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.premium .btn-download:hover {
    background: #fff;
    box-shadow: 0 12px 25px rgba(255, 184, 0, 0.5);
}

/* Spoofer Buton Güncellemesi */
.spoofer .btn-download {
    background: #fff;
    color: #000 !important;
    border: 1px solid var(--glass-border);
}

.spoofer .btn-download:hover {
    background: var(--text-secondary);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
}

/* Tıklama Efekti (Active) */
.btn-download:active {
    transform: translateY(1px) scale(0.98);
}

/* --- RAR ŞİFRESİ ALANI GÜNCELLEME --- */
.rar-pass {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 8px;
    border: 1px dashed var(--glass-border);
}

.rar-pass strong {
    color: var(--text-primary);
    font-family: monospace;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.rar-pass strong { color: #fff; }

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsiveness */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 45px; }
}
/* Hero Üst Badge */
.top-badge {
    background: rgba(0, 210, 255, 0.1);
    color: var(--cyan);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.trust-bar span {
    font-size: 14px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-bar i { color: var(--cyan); }

/* Stats Section */
/* --- PROFESYONEL İSTATİSTİK PANALİ --- */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(13, 15, 22, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    position: relative;
}

/* Aralardaki ayırıcı çizgiler (Sadece büyük ekranda) */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.3), transparent);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cyan);
    transition: 0.3s;
}

.stat-item:hover .stat-icon {
    background: var(--cyan);
    color: #000;
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    .stat-item::after { display: none; }
    .stat-info { text-align: center; }
    .stat-item { flex-direction: column; }
}
#chat-wrapper { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
#chat-trigger { 
    width: 60px; height: 60px; border-radius: 50%; background: var(--cyan); 
    border: none; color: #000; font-size: 24px; cursor: pointer; box-shadow: 0 5px 20px rgba(0,210,255,0.4);
}
#chat-box { 
    width: 320px; height: 450px; background: #0d0f16; border: 1px solid var(--glass-border);
    border-radius: 15px; margin-bottom: 15px; display: flex; flex-direction: column; 
    overflow: hidden; transition: 0.3s;
}
.chat-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.chat-header { background: var(--cyan); color: #000; padding: 15px; display: flex; justify-content: space-between; font-weight: 800; }
.chat-header button { background: none; border: none; cursor: pointer; color: #000; }
#chat-messages { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.msg { padding: 8px 12px; border-radius: 10px; max-width: 80%; font-size: 14px; }
.sent { background: var(--cyan); color: #000; align-self: flex-end; }
.received { background: #1a1d26; color: #fff; align-self: flex-start; }
.chat-input-area { padding: 10px; display: flex; gap: 5px; background: #080a0e; }
.chat-input-area input { flex: 1; background: #14161f; border: 1px solid var(--glass-border); color: #fff; padding: 8px; border-radius: 5px; outline: none; }
.chat-input-area button { background: var(--cyan); border: none; padding: 8px 12px; border-radius: 5px; cursor: pointer; }
/* --- Dinamik Arka Plan Sabitleme --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* İçeriğin arkasında kalması için */
    background-color: var(--bg-main); /* Senin tanımladığın koyu arka plan */
    pointer-events: none;
}
/* --- HERO SECURITY INFO --- */
/* --- HERO SECURITY INFO PREMIUM --- */
.security-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.security-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cyan);
    background: rgba(0, 210, 255, 0.05);
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 210, 255, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

/* ikonlar */
.security-info i {
    color: var(--cyan);
    font-size: 12px;
}

/* hover efekti */
.security-info span:hover {
    background: rgba(0, 210, 255, 0.15);
    box-shadow: 0 0 12px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}
/* Mevcut .bg-animation sınıfını kullanmıyorsan silebilirsin 
   veya onun yerine bu canvas'ı kullanabilirsin. */
   .security-desc {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: rgba(13, 15, 22, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
}

.about-card i {
    font-size: 28px;
    color: var(--cyan);
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,210,255,0.2);
}
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-secure {
    margin-top: 10px;
    color: var(--cyan);
}
.hero h1 {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero p {
    animation: fadeUp 1.5s ease forwards;
    opacity: 0;
}

.security-info {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.nav-logo {
    width: 40px;
    margin-right: 1px;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(255, 70, 85, 0.6));
    
}
.trust-logos {
    margin-top: 40px;
    text-align: center;
    color: var(--text-secondary);
}

.trust-logos span {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.trust-logos .logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 26px;
    color: var(--cyan);
    opacity: 0.8;
}
/* ANA BAŞLIK */
.live-title {
    font-size: clamp(40px, 8vw, 75px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

/* SAYIYA GLOW EFEKTİ */
#userCount {
    color: var(--cyan);
    text-shadow: 
        0 0 10px rgba(0,210,255,0.8),
        0 0 20px rgba(0,210,255,0.6),
        0 0 40px rgba(0,210,255,0.4);
    animation: glowPulse 2s infinite alternate;
}

/* YANIP SÖNME */
@keyframes glowPulse {
    from {
        text-shadow: 
            0 0 5px rgba(0,210,255,0.5),
            0 0 15px rgba(0,210,255,0.4);
    }
    to {
        text-shadow: 
            0 0 15px rgb(0, 0, 0),
            0 0 30px rgba(0, 0, 0, 0.8),
            0 0 60px rgba(0, 1322, 2525, 0.4293);
    }
}

/* ALTTAKİ LIVE STATUS */
.live-status {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* YEŞİL DOT */
.dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}