

/* =============================================================================
   MOTOR DAİRESİ ETİKETLERİ: GLOBAL DEĞİŞKENLER
   Görevi: Motor hızlandıkça buradaki --nav-speed değeri değişir ve 
   tüm dükkan aynı anda hızlanır.
   ============================================================================= */
:root {
    --nav-speed: 3s; /* Standart nefes alma hızı */
}

@keyframes hunterGoldPulse {
    0%, 100% { opacity: 0.9; color: #FFD700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
    50% { opacity: 0.2; color: #fff; text-shadow: none; }
}

@keyframes icePulse {
    0%, 100% { 
        border-color: rgba(0, 243, 255, 0.2); 
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.05), inset 0 0 5px rgba(0, 243, 255, 0.02); 
    }
    50% { 
        border-color: rgba(0, 243, 255, 0.5); 
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.1); 
    }
}

:root { 
    --gold: #f3ba2f; 
    --dark-gold: #b8860b; 
    --bg: #000; 
    --neon: #00f3ff; 
    --matrix: #00ff46; 
    --red: #ff3e3e; 
    --parliament: #041e42; 
    --parliament-light: #1a3b6e; 
}

body, html { 
    margin: 0; padding: 0; width: 100%; height: 100%; 
    background: #000; color: #fff; font-family: 'Segoe UI', sans-serif; 
    overflow: hidden; display: flex; flex-direction: column; user-select: none; 
}


/* --- HUNTER SCROLLBAR --- */
::-webkit-scrollbar { width: 8px !important; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: var(--dark-gold); border-radius: 4px; }

/* HEADER */
.header { height: 60px; border-bottom: 2px solid var(--gold); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; background: #000; z-index: 110; }
.header-icons { display: flex; gap: 20px; align-items: center; }
.h-icon { font-size: 1.4em; color: var(--gold); cursor: pointer; transition: 0.3s; }
.h-icon:hover { color: #fff; transform: scale(1.1); text-shadow: 0 0 10px #fff; }

/* NAVİGASYON */
.nav-panel { display: grid; grid-template-columns: repeat(9, 1fr); gap: 6px; padding: 10px; background: #080a0f; border-bottom: 1px solid #1a1d23; z-index: 100; }

.mod-box { 
    background: rgba(13,17,23,0.9); border: 1px solid #1c2128; height: 45px; display: flex; align-items: center; justify-content: center; cursor: pointer; 
    font-size: 0.55em; font-weight: 900; letter-spacing: 0.5px; transition:0.3s; text-align: center; line-height: 1.1;
    animation: icePulse 4s infinite ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.1);
}

/* ÖZEL BUTON EFEKTLERİ */
.police-mode { animation: policeStrobe 0.8s infinite !important; border: 2px solid transparent; }
@keyframes policeStrobe { 
    0% { background: rgba(255,0,0,0.3); border-color: red; color: red; box-shadow: 0 0 15px red; }
    50% { background: rgba(0,0,255,0.3); border-color: blue; color: blue; box-shadow: 0 0 15px blue; }
    100% { background: rgba(255,0,0,0.3); border-color: red; color: red; box-shadow: 0 0 15px red; }
}

.mining-mode { animation: breatheNeonBlue 3s infinite ease-in-out !important; color: var(--neon); border-color: var(--neon); }
@keyframes breatheNeonBlue {
    0%, 100% { box-shadow: 0 0 5px var(--neon); opacity: 0.8; }
    50% { box-shadow: 0 0 15px var(--neon); opacity: 1; }
}

.mod-box:hover { 
    color: var(--gold) !important; border-color: var(--gold) !important; 
    box-shadow: 0 0 15px var(--gold); animation: none !important; transform: translateY(-2px);
}

@keyframes breathePanel { 0%, 100% { border-color: #1c2128; color: #888; } 50% { border-color: #444; color: #fff; } }

.main-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; z-index: 50; overflow: hidden; }
.room { position: absolute; width: 100%; height: 100%; display: none; overflow: hidden; flex-direction: column; background: #000; }

/* --- ARKA PLAN RESMİ --- */
#h-cont { position: absolute; width: 100%; height: 100%; top: 0; left: 0; display: flex; align-items: center; justify-content: center; z-index: 1; pointer-events: none; }
#h-cont img { width: 65%; opacity: 0.7; max-height: 90%; object-fit: contain; }

/* --- HAVUZLAR --- */
#havuzlar-room { padding: 15px; box-sizing: border-box; }
.pool-alert-banner { border: 1px solid var(--red); background: rgba(20, 0, 0, 0.9); color: #fff; text-align: center; padding: 8px; font-size: 0.7em; letter-spacing: 1px; margin-bottom: 15px; box-shadow: 0 0 10px rgba(255, 0, 0, 0.3); z-index: 10; }
.pool-main-layout { display: flex; gap: 15px; flex: 1; min-height: 0; overflow: hidden; }
.pool-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 15px; padding: 5px; overflow-y: auto; }
.pool-card { background: #050505; color: var(--gold); border-radius: 4px; position: relative; display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 10px; overflow: hidden; border: 2px solid transparent; box-shadow: inset 0 0 20px rgba(0,0,0,1); }
.pool-card.active { border-color: var(--matrix); animation: breatheGreen 3s infinite ease-in-out; }
@keyframes breatheGreen { 0%, 100% { box-shadow: 0 0 5px var(--matrix); } 50% { box-shadow: 0 0 25px var(--matrix); } }
.pool-card.passive { border-color: var(--red); opacity: 1; }
.liquid-fill { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0, 255, 70, 0.2); z-index: 1; transition: height 1s; box-shadow: 0 -5px 15px rgba(0, 255, 70, 0.1); border-top: 1px solid var(--matrix); }
.pc-content { z-index: 5; text-align: center; width: 100%; display: flex; flex-direction: column; height: 100%; justify-content: space-around; }
.pc-title { font-weight: 900; font-size: 0.9em; letter-spacing: 1px; color: var(--gold); text-shadow: 0 0 5px rgba(243,186,47,0.3); }
.pc-rate { font-size: 2.2em; font-weight: 900; margin: 2px 0; text-shadow: 0 0 10px rgba(255,255,255,0.2); color: #fff; }
.pc-info { font-size: 0.85em; font-weight: bold; font-family: 'Courier New', monospace; background: rgba(20,20,20,0.8); padding: 4px 8px; border-radius: 3px; display: inline-block; color: #fff; border: 1px solid #333; }
.pc-btn { background: #000; color: var(--gold); border: 1px solid var(--gold); padding: 8px; font-weight: 900; font-size: 0.75em; cursor: pointer; width: 50%; margin: 5px auto 0 auto; display: block; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.pc-btn:hover { background: var(--gold); color: #000; box-shadow: 0 0 15px var(--gold); }
.pc-btn:disabled { background: #080000; color: var(--red); border-color: var(--red); cursor: not-allowed; opacity: 0.7; box-shadow: none; }
.pool-terminal { width: 180px; background: rgba(5, 5, 5, 0.95); border: 1px solid var(--dark-gold); display: flex; flex-direction: column; }
.pt-head { background: var(--dark-gold); color: #000; font-size: 0.6em; font-weight: 900; text-align: center; padding: 5px; }
.pt-body { flex: 1; padding: 5px; overflow-y: hidden; font-family: 'Courier New', monospace; font-size: 0.55em; color: var(--matrix); line-height: 1.5; text-align: left; white-space: nowrap; }

/* --- RADAR ODASI --- */
#sec-room { flex-direction: row; align-items: center; justify-content: center; gap: 30px; background: radial-gradient(circle, rgba(57, 255, 20, 0.05) 0%, #000 85%); }
.radar-side-panel { width: 200px; height: 400px; background: rgba(0, 10, 0, 0.8); border: 1px solid #39FF14; display: flex; flex-direction: column; box-shadow: 0 0 15px rgba(57, 255, 20, 0.2); }
.rsp-head { background: #0a200a; color: #39FF14; font-weight: 900; text-align: center; padding: 8px; font-size: 0.7em; letter-spacing: 2px; border-bottom: 1px solid #39FF14; }
.rsp-body { flex: 1; padding: 10px; overflow: hidden; font-family: 'Courier New', monospace; font-size: 0.6em; color: #39FF14; line-height: 1.6; text-shadow: 0 0 2px #39FF14; }

.radar-v15 { width: 450px; height: 450px; border: 2px solid rgba(57, 255, 20, 0.2); border-radius: 50%; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px rgba(57, 255, 20, 0.1); overflow: hidden; }
.radar-sweep-v15 { position: absolute; width: 50%; height: 50%; top: 0; left: 50%; background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.4)); transform-origin: left bottom; animation: sweep 4s linear infinite; border-left: 2px solid #39FF14; z-index: 5; }
.radar-ring { position: absolute; border: 1px solid rgba(57, 255, 20, 0.1); border-radius: 50%; }
.firefly { position: absolute; width: 4px; height: 4px; border-radius: 50%; z-index: 6; }
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* --- PROJELER ODASI --- */
#projects-room { flex-direction: column; padding: 30px; background: rgba(0, 0, 0, 0.9); overflow-y: auto; align-items: center; }
.project-list-container { width: 80%; max-width: 900px; }
.project-row { display: flex; justify-content: space-between; align-items: center; padding: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; width: 100%; }
.project-row:hover { background: rgba(255, 255, 255, 0.05); }
.project-text { font-size: 0.9em; font-weight: 600; color: #FFFFFF; text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); text-transform: uppercase; letter-spacing: 1px; }
.protocol-btn { background: transparent; border: 2px solid var(--neon); color: var(--neon); padding: 8px 15px; font-size: 0.7em; font-weight: 900; cursor: pointer; border-radius: 4px; transition: 0.4s; text-transform: uppercase; }
.protocol-btn:hover { background: var(--neon); color: #000; box-shadow: 0 0 15px var(--neon); }
.token-btn { border-color: var(--gold) !important; color: var(--gold) !important; box-shadow: 0 0 10px rgba(243,186,47,0.2); }
.token-btn:hover { background: var(--gold) !important; color: #000 !important; box-shadow: 0 0 20px var(--gold) !important; }

/* --- MINING ODASI --- */
#mining-room { flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./kazim.jpeg') no-repeat center center !important; background-position: center 20% !important; background-size: cover !important; }
.mining-layout { width: 100%; display: flex; justify-content: space-between; padding: 0 50px; position: absolute; top: 10%; z-index: 70; }
.mining-col { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.stat-box { width: 240px; height: 80px; background: rgba(0,0,0,0.9); border: 2px solid #333; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(0,0,0,0.5); backdrop-filter: blur(5px); }
.sb-gold { border-color: var(--gold); }
.sb-matrix { border-color: var(--matrix); }
.sb-empty { opacity: 0.4; border-style: dashed; }
.sb-label { font-size: 0.7em; letter-spacing: 2px; color: #aaa; margin-bottom: 5px; }
.sb-val { font-family: 'Courier New', monospace; font-weight: 900; font-size: 1.4em; letter-spacing: 1px; width: 100%; text-align: center; }
.m-core { width: 280px; height: 280px; border: 6px solid var(--neon); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #000; z-index: 60; margin-top: 50px; animation: breatheNeon 3s infinite ease-in-out; }
@keyframes breatheNeon { 0%, 100% { box-shadow: 0 0 40px var(--neon); transform: scale(1); border-color: var(--neon); } 50% { box-shadow: 0 0 100px var(--neon), inset 0 0 30px var(--neon); transform: scale(1.03); border-color: #fff; } }
.mining-ctrl { display: flex; gap: 25px; margin-top: 40px; z-index: 70; }

/* --- KREDİ FORMU --- */
#kredi-form-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.kf-box { width: 750px; background: var(--parliament); border: 2px solid var(--parliament-light); box-shadow: 0 0 60px rgba(4, 30, 66, 0.8); border-radius: 4px; display: flex; flex-direction: column; max-height: 90vh; }
.kf-head { background: #020f22; padding: 20px; border-bottom: 1px solid var(--parliament-light); display: flex; justify-content: space-between; align-items: center; }
.kf-body { padding: 30px; overflow-y: auto; color: #e0e0e0; font-size: 0.9em; }
.kf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.kf-group { display: flex; flex-direction: column; gap: 5px; }
.kf-label { font-size: 0.75em; color: var(--gold); letter-spacing: 1px; font-weight: 700; }
.kf-input { background: rgba(0,0,0,0.5); border: 1px solid #2a4b7c; padding: 12px; color: #fff; font-family: 'Segoe UI', sans-serif; outline: none; transition: 0.3s; }
.kf-input:focus { border-color: var(--neon); box-shadow: 0 0 10px rgba(0, 243, 255, 0.2); }
.kf-input option { background: #000; color: #fff; padding: 10px; }
.kf-contract { background: rgba(0,0,0,0.6); border: 1px solid #2a4b7c; padding: 15px; height: 180px; overflow-y: auto; margin: 20px 0; font-size: 0.85em; line-height: 1.6; color: #ccc; border-left: 3px solid var(--gold); font-family: 'Segoe UI', sans-serif; }
.kf-submit { width: 100%; padding: 15px; background: var(--gold); color: #000; border: none; font-weight: 900; font-size: 1.1em; cursor: pointer; letter-spacing: 2px; margin-top: 10px; transition: 0.3s; }
.kf-submit:hover { background: #fff; box-shadow: 0 0 20px #fff; }

/* --- HİSSE ODASI --- */
#hisse-room { flex-direction: row; padding: 20px; gap: 15px; background: #050505; align-items: stretch; justify-content: center; }
.side-p { width: 110px; display: flex; flex-direction: column; gap: 10px; height: 85%; margin-top: 10px; }
.c-main { width: 65%; border: 1px solid #1a1d23; display: flex; flex-direction: column; height: 85%; background: #000; position: relative; margin-top: 10px; }
.c-header-val {
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.8); border: 2px solid #333; padding: 5px 20px; z-index: 10;
    display: flex; align-items: center; gap: 10px; border-radius: 4px;
}
.c-area { flex: 1; position: relative; overflow: hidden; background: repeating-linear-gradient(0deg, rgba(243,186,47,0.05) 0px, rgba(243,186,47,0.05) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgba(243,186,47,0.05) 0px, rgba(243,186,47,0.05) 1px, transparent 1px, transparent 20px); border: 2px solid var(--gold); }
.h-panel { width: 200px; border: 1px solid #1a1d23; background: rgba(13,17,23,0.9); height: 75%; overflow-y: auto; margin-top: 10px; }

/* --- DİĞER --- */
.h-proto-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 1000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.h-proto-box { width: 80%; max-width: 900px; height: 85vh; border: 2px solid var(--gold); background: #000; display: flex; flex-direction: column; box-shadow: 0 0 50px rgba(243, 186, 47, 0.25); border-radius: 6px; }
.h-proto-head { padding: 20px; border-bottom: 1px solid var(--gold); display: flex; justify-content: space-between; align-items: center; background: #050505; }
.h-proto-body { flex: 1; padding: 35px; overflow-y: auto; line-height: 1.8; color: #fff; font-size: 1em; }
.h-proto-body b { color: var(--gold); display: block; margin-top: 25px; font-size: 1.1em; letter-spacing: 1px; border-left: 4px solid var(--gold); padding-left: 10px; }
.h-btn { padding: 15px 30px; border: 2px solid var(--gold); background: none; color: var(--gold); font-weight: 900; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.h-btn:hover { background: var(--gold); color: #000; }

/* --- HUNTER SEM REVISED CARDS --- */
:root {
    --hunter-gold: #c5a028; /* Tok, Ağır Altın */
    --hunter-saks: #0047ab; /* Parlak Saks Mavisi (Kontür için) */
    --hunter-navy: #020f22; /* Koyu Lacivert (Gövde için) */
}

.kredi-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Kartlar arası mesafe */
    padding: 50px;
    perspective: 1000px;
}

.kredi-card {
    width: 420px; /* 2 tık genişletildi, rahatladı */
    height: 220px; /* Oran korundu */
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* 3 Aylık Standart */
.kredi-card:nth-child(1) { background: var(--parliament); }

/* 6 Aylık Business (Füme) */
.kredi-card:nth-child(3) { 
    background: #1e1e1e; /* Tok Füme */
    border: 2px solid var(--hunter-gold); /* İşlemeli gibi duran çerçeve */
}

/* KART İÇİ DÜZENLEMELER */
.card-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 5px;
}

.big-number {
    font-size: 3em; /* Rakam 2 kat büyüdü */
    font-weight: 900;
    color: var(--hunter-gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(197, 160, 40, 0.4);
}

.header-text {
    font-size: 1.1em; /* Yazı büyüdü ve okunaklı */
    font-weight: 800;
    color: #e0e0e0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-bonus { 
    color: #00ff41; 
    font-weight: bold; 
    font-size: 0.9em; 
    text-align: center; 
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
    margin-top: 5px;
}

.card-roi { 
    font-size: 1.4em; 
    color: var(--hunter-gold); 
    text-align: center; 
    margin-top: 5px; 
    font-weight: 700;
}

.card-line { 
    width: 100%; 
    height: 2px; 
    background: var(--hunter-gold); 
    margin: 12px 0; 
    box-shadow: 0 0 8px var(--hunter-gold); 
}

.card-secure { 
    font-size: 0.7em; 
    color: #ccc; 
    letter-spacing: 3px; 
    text-align: center; 
    opacity: 0.9; 
    font-weight: 600;
}

/* BUTONLAR (%50 Daraltıldı ve Toklaştırıldı) */
.kredi-btn {
    margin-top: auto;
    width: 50%; /* %50 Daraltıldı */
    align-self: center; /* Ortalandı */
    background: var(--hunter-gold); /* Tok Sarı */
    color: #000;
    border: none;
    font-weight: 900;
    font-size: 0.8em;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(197, 160, 40, 0.2);
}
.kredi-btn:hover { 
    background: #fff; 
    box-shadow: 0 0 25px #fff; 
    color: #000; 
}

/* --- KÜÇÜK ENİŞTE (ORTADAKİ KART) --- */
.kredi-card.special-offer {
    width: 260px; /* Biraz büyüdü */
    height: 160px;
    background: var(--hunter-navy); /* Gövde Lacivert */
    border: 2px solid var(--hunter-saks); /* Kenar Saks Mavisi */
    box-shadow: 0 0 20px var(--hunter-saks); /* Saks Işığı */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.kredi-card.special-offer:hover { 
    box-shadow: 0 0 40px var(--hunter-saks); 
    border-color: #4169e1;
}

/* Küçük Kart Yazı Revizesi */
.sp-title { font-size: 1.1em; color: #fff; font-weight: 900; margin-bottom: 5px; } /* 2x Büyüdü */
.sp-sub { font-size: 0.85em; color: #00d2ff; font-weight: 700; letter-spacing: 1px; } /* Canlı Renk */
.sp-action { font-size: 0.8em; color: #fff; margin-top: 10px; text-decoration: underline; }

/* MODAL BUTON REVİZESİ */
.kf-submit-special {
    width: 50%; /* %50 Kısaldı */
    padding: 12px;
    background: var(--hunter-gold); /* Tok Sarı */
    color: #000;
    border: none;
    font-weight: 900;
    cursor: pointer;
    margin: 15px auto 0 auto; /* Ortalandı */
    display: block;
    transition: 0.3s;
}
.kf-submit-special:hover { background: #fff; box-shadow: 0 0 20px #fff; }
.kredi-btn:hover { background: #fff; box-shadow: 0 0 20px var(--gold); color: #000; }

/* --- BÜYÜK KARTLAR İÇİN ŞAHA KALKMA & GOLD IŞIK --- */
.kredi-card:not(.special-offer):hover {
    transform: translateY(-15px) scale(1.02); /* Şaha kalkma: Yukarı çıkar ve hafif büyür */
    box-shadow: 0 20px 60px rgba(197, 160, 40, 0.7); /* Arkadan vuran güçlü Gold Işık */
    border-color: var(--hunter-gold); /* Kenarlar altın gibi parlar */
    z-index: 10; /* Diğerlerinden öne çıkar */
}

/* Business E-posta Modal */
#special-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 3000;
}
.special-box {
    width: 400px; background: #001a33; border: 2px solid #0047ab;
    padding: 30px; border-radius: 10px; box-shadow: 0 0 50px #0047ab; text-align: center;
}
.email-input-wrapper { position: relative; width: 100%; }
.datalist-custom { background: #000; color: #fff; }


#ah-room { align-items: center; justify-content: center; width: 100%; height: 100%; position: relative; }
.p-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; width: 85%; margin: auto; z-index: 60; position: relative; }
.p-item { background: rgba(0,0,0,0.7); border: 1px solid var(--matrix); height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: 0.3s; gap: 10px; }
.p-item i { font-size: 1.8em; color: #fff; text-shadow: 0 0 5px #fff; }
.p-item:hover { box-shadow: 0 0 30px var(--gold), inset 0 0 10px var(--gold); border-color: var(--gold); transform: scale(1.05); background: rgba(20, 20, 0, 0.8); }
.p-item:hover i { color: var(--gold); }
.p-item span { font-weight: bold; letter-spacing: 1px; color: #ccc; }

#ad-box { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 350px; background: #000; border: 3px solid var(--gold); z-index: 200; display: none; }
.disabled-btn { background: #300 !important; color: #f00 !important; border-color: #f00 !important; cursor: not-allowed; animation: none !important; box-shadow: none !important; }

/* --- MERKEZİ BİLGİ BIÇAĞI (DATA BLADE) --- */
.data-blade {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7); /* Başlangıçta küçük ve merkezde */
    width: 600px; /* Pencere genişletildi */
    height: 500px; /* Yükseklik dengelendi */
    background: rgba(0, 15, 0, 0.95);
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(243, 186, 47, 0.3), inset 0 0 20px rgba(0, 255, 70, 0.1);
    z-index: 5000;
    display: none; /* JS ile açılacak */
    flex-direction: column;
    backdrop-filter: blur(15px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.data-blade.active {
    display: flex !important; /* Zorla görünür yap */
    opacity: 1 !important;    /* Hayaletliği bitir */
    pointer-events: all !important; /* Tıklamaları aktif et moruk */
}

.db-header {
    padding: 20px;
    border-bottom: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 5px;
    font-size: 1.4em; /* Başlık büyütüldü */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(243, 186, 47, 0.05);
}

.db-body {
    flex: 1;
    padding: 30px;
    font-family: 'Courier New', monospace;
    overflow-y: auto;
    color: var(--matrix);
    position: relative;
    line-height: 1.8; /* Satır aralığı ferahlatıldı */
}

/* YAZI KARAKTERLERİ BÜYÜTÜLDÜ */
.db-content-text {
    font-size: 1.2em; /* Metinler belirginleşti */
    font-weight: 600;
}

.db-data-line {
    font-size: 1.3em; /* Canlı veriler daha büyük */
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 255, 70, 0.05);
    border-left: 4px solid var(--matrix);
}

/* ANTI-HUNTER PENCERE NEFES ALMA EFEKTİ */
.p-item {
    transition: 0.5s !important;
    animation: breatheWindow 5s infinite ease-in-out !important;
    background: rgba(0, 255, 70, 0.05) !important;
    backdrop-filter: blur(5px) !important;
}

@keyframes breatheWindow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 255, 70, 0.1); }
    50% { transform: scale(1.04); box-shadow: 0 0 25px rgba(0, 255, 70, 0.2); }
}

.hp-box {
    /* Genişlik ayarı: Boşluklar kalktığı için tam hesap */
    width: calc(100% / 9); 
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;

    /* Yazı Karakteri */
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.55em;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.1;

    /* Business Perde */
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    
    /* HUNTER SARISI MÜHÜR (Boşluksuz Kenetlenme) */
    border: 1px solid #F3BA2F !important; 
    box-shadow: inset 0 0 5px rgba(243, 186, 47, 0.05);
    margin: 0 !important; /* Aradaki sızıntıyı önler */
}

.hp-box:hover {
    background: rgba(243, 186, 47, 0.2) !important;
    border: 1px solid rgba(243, 186, 47, 1) !important;
    box-shadow: 0 0 15px rgba(243, 186, 47, 0.3);
    z-index: 10; /* Üzerine gelinen kutu öne çıksın */
}

/* Milimetrik Pencere Tasarımları */
#token-room {
    background: url('Neptun.jpeg') no-repeat center center !important;
    background-size: 100% 100% !important;
    perspective: 1500px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 100;
} /* Buradaki parantez odayı kapatır */

/* Plazmaların (Pencerelerin) Genel Stili */
.ts-window { 
    position: absolute; 
    background: rgba(0, 15, 30, 0.65); 
    border: 1px solid rgba(0, 243, 255, 0.4); 
    backdrop-filter: blur(2px); 
    color: #fff; 
    font-family: monospace; 
    display: flex; 
    flex-direction: column; 
    box-shadow: 0 0 15px rgba(0,0,0,0.8); 
}

.ts-h {
    display: none; /* O mavi kalabalığı komple yok eder */
}

.ts-b { 
    padding: 4px; 
    flex: 1; 
    font-size: 18px; 
    line-height: 1.2; 
    color: #fff; display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}
.ts-b::before {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    z-index: 10;
    animation: hunterGoldPulse 3s infinite ease-in-out;
}
#ts1 .ts-b::before { content: "PANCAKE-V3"; animation-delay: 0.1s; }
#ts2 .ts-b::before { content: "DEX-SCREEN"; animation-delay: 0.7s; }
#ts3 .ts-b::before { content: "BINANCE-API"; animation-delay: 1.4s; }
#ts4 .ts-b::before { content: "COIN-GECKO"; animation-delay: 2.2s; }
#ts5 .ts-b::before { content: "HUNTER-NODE"; animation-delay: 0.4s; }
#ts6 .ts-b::before { content: "METAMASK-W"; animation-delay: 1.1s; }
#ts7 .ts-b::before { content: "ETH-SCAN"; animation-delay: 2.8s; }
#ts8 .ts-b::before { content: "LIQ-RADAR"; animation-delay: 0.9s; }
#ts9 .ts-b::before { content: "WHALE-ALER"; animation-delay: 1.6s; }
#ts10 .ts-b::before { content: "SYS-CORE"; animation-delay: 0.3s; }

/* GRUP 1: PARA VE KAZANÇ (YEŞİL) */
#ts1 .ts-b, #ts5 .ts-b { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }

/* GRUP 2: KRİTİK VERİ VE HACİM (NEON MAVİ) */
#ts2 .ts-b, #ts6 .ts-b { color: #00f3ff; text-shadow: 0 0 10px rgba(0, 243, 255, 0.5); }

/* GRUP 3: TEHLİKE VE BALİNA ALARMI (ATEŞ KIRMIZISI) */
#ts3 .ts-b, #ts9 .ts-b { color: #ff3e3e; text-shadow: 0 0 10px rgba(255, 62, 62, 0.5); }

/* GRUP 4: TEKNOLOJİ VE SİSTEM (MOR/LAVANTA) */
#ts4 .ts-b, #ts10 .ts-b { color: #bc13fe; text-shadow: 0 0 10px rgba(188, 19, 254, 0.5); }

/* GRUP 5: HUNTER ÖZEL (PORTAKAL/GOLD) */
#ts7 .ts-b, #ts8 .ts-b { color: #ff8c00; text-shadow: 0 0 10px rgba(255, 140, 0, 0.5); }    

/* Sniper Koordinatların */
#ts1 { top: 50.9822%; left: 22%; width: 12%; height: 17%; transform: rotateY(16deg) rotateX(2deg); }
#ts2 { top: 46.9836%; left: 1%; width: 20%; height: 23%; transform: rotateY(52deg) rotateX(0deg); }
#ts3 { top: 27.9892%; left: 1%; width: 12%; height: 17%; transform: rotateY(46deg) rotateX(0deg); }
#ts4 { top: 5.97958%; left: 1%; width: 21%; height: 23%; transform: rotateY(46deg) rotateX(-2deg); }
#ts5 { top: 13.9894%; left: 26%; width: 14%; height: 17%; transform: rotateY(42deg) rotateX(-6deg); }
#ts6 { top: 16.9954%; left: 60%; width: 11%; height: 17%; transform: rotateY(-2deg) rotateX(-10deg); }
#ts7 { top: 6.98158%; left: 77%; width: 21%; height: 23%; transform: rotateY(-36deg) rotateX(-10deg); }
#ts8 { top: 31.9972%; left: 86%; width: 13%; height: 14%; transform: rotateY(-50deg) rotateX(-4deg); }
#ts9 { top: 46.9836%; left: 78%; width: 21%; height: 22%; transform: rotateY(-54deg) rotateX(-4deg); }
#ts10 { top: 51.9904%; left: 64%; width: 15%; height: 16%; transform: rotateY(-46deg) rotateX(-2deg); }

.hunter-moon {
    display: inline-block;
    animation: moonRotate 4s linear infinite;
}
@keyframes moonRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes hunterFade { 0%, 40% { opacity: 1; } 45%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes idFade { 0%, 45% { opacity: 0; transform: translateY(5px); } 50%, 90% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; } }

.layer-titles { animation: hunterFade 10s infinite ease-in-out; }
.layer-ids { animation: idFade 10s infinite ease-in-out; }

/* MANİFESTO NİZAMI - YUKARIDA VE MERKEZE ÇEKİLMİŞ */
.hunter-final-box:hover .hunter-center-manifesto { 
    display: block !important; 
    opacity: 1 !important; 
    visibility: visible !important; 
    transform: translateX(-20%) translateY(0) !important; /* Sol yerine Merkeze (Sağa) Kaydırdım */
}

.hunter-center-manifesto {
    display: none; position: absolute; 
    bottom: 135%; /* Yukarıda kalmaya devam */
    left: 30%; /* Başlangıç noktasını sağa çektim */
    width: 280px; 
    background: rgba(0, 0, 0, 0.98); border: 2px solid #ffca28; border-radius: 12px; padding: 20px;
    box-shadow: 0 0 50px rgba(255, 202, 40, 0.9); z-index: 99999999; pointer-events: none;
    font-family: 'Orbitron', sans-serif; text-align: center;
    transform: translateX(-20%) translateY(15px);
}

/* Manifesto Oku - Konumu ayarlandı */
.hunter-center-manifesto::after {
    content: ""; position: absolute; top: 100%; left: 30%; /* Oku da kutuyla beraber hizaladık */
    border: 12px solid; border-color: #ffca28 transparent transparent transparent;
}

@keyframes hunterBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.form-active { 
    display: block !important; 
    transform: translateY(-50%) scale(1) !important; 
    opacity: 1 !important; 
    pointer-events: auto !important; 
}

.energy-btn { animation: greenEnergy 1s infinite alternate; }
@keyframes greenEnergy {
    0% { box-shadow: 0 0 5px #00ff41; transform: scale(1); }
    100% { box-shadow: 0 0 30px #00ff41; transform: scale(1.05); }
}
.panel-active {
    display: block !important;
    transform: scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* 1. Arka Plan Perdesi (Tüm Ekranı Karartır) */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Zifiri karanlık değil, loş */
    backdrop-filter: blur(5px); /* Arkadaki siteyi flu yapar */
    z-index: 100000; /* En üstte durur */
    display: flex;
    align-items: center; /* Dikey ortalama */
    justify-content: center; /* Yatay ortalama */
    animation: fadeIn 0.3s;
}

/* 2. Oval & Şeffaf Pencere (Business Kart) */
.popup-box {
    width: 85%;
    max-width: 450px;
    background: rgba(20, 20, 20, 0.9); /* Çok koyu gri, neredeyse siyah */
    border: 1px solid rgba(243, 186, 47, 0.5); /* Hunter Sarısı Çerçeve */
    border-radius: 25px; /* İSTEDİĞİN OVAL KÖŞELER */
    padding: 25px;
    position: relative;
    box-shadow: 0 0 30px rgba(243, 186, 47, 0.15); /* Hafif sarı hale */
    text-align: center;
    transform: scale(0.9);
    animation: popUp 0.3s forwards;
}

/* Kapatma (X) Butonu */
.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    color: #F3BA2F;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    line-height: 20px;
}

/* Animasyonlar */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes popUp { to { transform: scale(1); } }

/* MESAJ KUTUSU NEFES ALMA EFEKTİ */
@keyframes hunterGlow {
    from { box-shadow: 0 0 10px currentColor; transform: translateX(-50%) scale(1); }
    to { box-shadow: 0 0 30px currentColor; transform: translateX(-50%) scale(1.02); }
}

/* MATRIX LOGIN PANEL - GENEL AYARLAR */
@keyframes panelFlicker {
    0% { opacity: 0; transform: scale(0.8); }
    20% { opacity: 1; transform: scale(1); border-color: #00FF41; box-shadow: 0 0 15px #00FF41; }
    30% { opacity: 0.3; }
    40% { opacity: 1; }
    50% { opacity: 0.3; }
    60% { opacity: 1; }
    100% { opacity: 1; transform: scale(1); border-color: rgba(0, 255, 65, 0.5); }
}

.matrix-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Arka planı biraz daha kararttık ki Matrix parlasın */
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center; align-items: center;
}

#matrix-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.4;
}

/* PANEL: ŞEFFAF VE GENİŞ ÇERÇEVE */
.matrix-panel {
    position: relative;
    width: 95%; 
    max-width: 550px; /* Çerçeveyi genişlettik */
    background: rgba(0, 0, 0, 0.5); /* SÜPER ŞEFFAF: Arkadaki Matrix tam görünür */
    border: 1px solid rgba(0, 255, 65, 0.3); /* İncecik bir sınır */
    padding: 40px 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 1);
    opacity: 0;
    text-align: center;
}

.matrix-panel.active {
    animation: panelFlicker 1.2s ease-out forwards;
}

/* İÇERİDEKİ KUTUCUKLAR: YARI YARIYA VE TATLI BEYAZ */
.matrix-input, .matrix-btn {
    width: 60% !important; /* Yarı yarıya daraltma */
    margin: 8px auto !important; /* Merkeze hizalama */
    display: block !important;
    font-family: 'Courier New', monospace;
}

.matrix-input {
    background: rgba(255, 255, 255, 0.05); /* Çok hafif beyazlık */
    border: 1px solid rgba(0, 255, 65, 0.4);
    color: #e0e0e0; /* Yazılar tatlı bir beyaz/gri */
    padding: 8px 12px;
    outline: none;
    transition: 0.3s;
}

.matrix-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00FF41;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.matrix-btn {
    background: transparent;
    border: 1px solid #00FF41;
    color: #00FF41;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.matrix-btn:hover {
    background: rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 15px #00FF41;
}

/* DİĞER DETAYLAR */
.matrix-title { color: #00FF41; margin-bottom: 20px; letter-spacing: 3px; font-size: 1.2rem; }
.btn-exit { border-color: #ff3e3e; color: #ff3e3e; margin-top: 20px; width: 40% !important; }
.btn-close-gate { position: absolute; top: 10px; right: 15px; color: #00FF41; cursor: pointer; }
.input-group label { color: rgba(0, 255, 65, 0.7); font-size: 0.7rem; display: block; margin-bottom: 2px; }

/* ANA PANEL & SCROLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL */
.hq-panel-overlay {
    position: fixed; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98); 
    border: none !important; 
    z-index: 9999;
    padding: 20px; 
    overflow-y: auto; 
    color: #00FF41;
    font-family: 'Courier New', monospace; 
    box-sizing: border-box;
    display: none; 

    /* ASANSÖR HAREKETİ */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* IŞIK SÜZMESİ: 
       İlk değer (0) sağ-sol, 
       İkinci değer (180px) aşağı kayma miktarı, 
       Üçüncü değer (150px) ışığın yumuşaklığı,
       Dördüncü değer (-50px) ışığın yayılma çapı. */
    box-shadow: 0 180px 150px -50px rgba(0, 255, 65, 0.9);
}
.hq-panel-overlay::-webkit-scrollbar { width: 5px; }
.hq-panel-overlay::-webkit-scrollbar-thumb { background: #00FF41; border-radius: 10px; }

/* HEADER & VIP */
.hq-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; height: 100px; position: relative; }
.header-center { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; }
.title-row { display: flex; align-items: center; gap: 15px; }
.title-row h2 { font-size: 1.6rem; text-shadow: 0 0 10px #00FF41; margin: 0; }
.avatar-hunter { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #003399; animation: blueBreath 3s infinite; background:#000; }
@keyframes blueBreath { 0%, 100% { box-shadow: 0 0 5px #003399; } 50% { box-shadow: 0 0 20px #0052ff; } }

.vip-row { display: flex; gap: 4px; margin-top: 8px; justify-content: center; }
.vip-tag { padding: 2px 6px; border: 1px solid #00FF41; font-size: 0.65rem; color: rgba(255, 0, 0, 0.4); }
.vip-active { color: #000; background: #00FF41; font-weight: bold; box-shadow: 0 0 8px #00FF41; }

/* PROFİL DROP (GELİŞMİŞ) */
.header-right { position: relative; z-index: 10001; text-align: right; }
.profile-link { color: #F3BA2F; font-weight: bold; cursor: pointer; border-bottom: 1px dashed #F3BA2F; font-size: 1.1rem; }
.hq-dropdown { 
    display: none; position: absolute; right: 0; top: 35px; 
    background: rgba(0, 0, 0, 0.98); border: 1px solid #F3BA2F; 
    padding: 15px; min-width: 280px; text-align: left; box-shadow: 0 0 20px rgba(243,186,47,0.2);
}
.prof-input { background: transparent; border: 1px solid transparent; color: #fff; width: 100%; font-family: inherit; font-size: 0.85rem; margin: 2px 0; }
.prof-input:focus { border-color: #F3BA2F; outline: none; }

/* IZGARA VE KUTULAR */
.hq-grid { display: grid; grid-template-columns: repeat(7, 1fr); grid-gap: 10px; margin-top: 20px; }
.hq-box { 
    background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(0, 255, 65, 0.2); 
    height: 140px; padding: 8px; display: flex; flex-direction: column; 
    justify-content: space-between; text-align: center; box-sizing: border-box; overflow: hidden;
}
.hq-box h3 { font-size: 0.7rem; color: #00FF41; border-bottom: 1px solid rgba(0, 255, 65, 0.2); padding-bottom: 4px; margin: 0 0 5px 0; }

.big-price { font-size: 1.2rem; font-weight: bold; margin: auto 0; transition: color 0.5s; }


.calc-display::-webkit-scrollbar { display: none; } /* Scrollbarı gizle */
.calc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; flex-grow: 1; }
.calc-btn { background: #111; border: 1px solid #333; color: #ccc; font-size: 0.9rem; cursor: pointer; font-weight: bold; }
.op-btn { color: #F3BA2F; }

/* MODAL & FORMLAR (ÇERÇEVELER DÜZELTİLDİ) */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 10009; }
.hunter-modal { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 450px; background: rgba(5,5,5,0.98); z-index: 10010; padding: 20px; }
.form-field { width: 100%; background: #000; border: 1px solid #444; color: #fff; padding: 8px; margin: 5px 0; font-family: 'Courier New'; font-size: 0.8rem; }

.theme-deposit { border: 2px solid #F3BA2F !important; box-shadow: 0 0 15px rgba(243, 186, 47, 0.3); }
.theme-withdraw { border: 2px solid #ff0000 !important; box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); }

.btn-deposit { width: 100%; padding: 10px; background: #00FF41; color: #000; font-weight: bold; border: none; cursor: pointer; }
.btn-deposit.flash-active { animation: neonBlink 0.8s infinite; }
@keyframes neonBlink { 0%, 100% { background: #00FF41; box-shadow: 0 0 20px #00FF41; } 50% { background: #000; color: #00FF41; } }

/* GRAFİK SVG & GRID */
.chart-wrapper { position: relative; width: 100%; height: 100%; background: #000; border: 1px solid rgba(0, 255, 65, 0.1); overflow:hidden; }
.chart-grid-bg { position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(0,255,65,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,65,0.05) 1px, transparent 1px); background-size: 20px 20px; z-index: 1; }
#neon-svg { width: 100%; height: 100%; position: relative; z-index: 2; }
.neon-path { fill: none; stroke: #00d2ff; stroke-width: 2; filter: drop-shadow(0 0 5px #00d2ff); }
#price-bullet { r: 5; filter: drop-shadow(0 0 8px currentColor); }

/* SEM GRAFİK KONTEYNERİ */
.sem-chart-container { width: 100%; height: 100%; background: #000; position: relative; }
.sem-controls { display: flex; gap: 5px; position: absolute; top: 5px; right: 10px; z-index: 10; }
.sem-btn { background: #111; border: 1px solid #333; color: #888; font-size: 0.6rem; padding: 2px 5px; cursor: pointer; }
.sem-btn.active { border-color: #F3BA2F; color: #F3BA2F; }

/* İŞLEM KAYDI & LOGLAR */
.tall-box { height: 260px !important; }
.log-area { flex-grow: 1; overflow-y: auto; text-align: left; font-size: 0.7rem; padding: 5px; border-top: 1px solid rgba(0, 255, 65, 0.1); background: #050505; }
.log-line { margin-bottom: 3px; border-bottom: 1px solid rgba(0,255,65,0.05); padding-bottom: 2px; }
.log-blue { color: #00d2ff; }
.log-yellow { color: #F3BA2F; }
.log-green { color: #00FF41; }
.log-red { color: #ff0000; }
.milli-clock { color: #00d2ff; font-weight: bold; text-shadow: 0 0 5px #00d2ff; }


/* Derinlik için hafif bir vinyet efekti */
#sem-index-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.price-neutral { color: #d1d1d1; text-shadow: 0 0 5px rgba(255,255,255,0.1); }
.up-green { color: #00ff88 !important; text-shadow: 0 0 15px rgba(0,255,136,0.6); transition: 0.4s; }
.down-red { color: #ff4444 !important; text-shadow: 0 0 15px rgba(255,68,68,0.6); transition: 0.4s; }

/* Dolar Yeşili Parlama ve Uyarı Animasyonları */
@keyframes pulse-warning {
    0% { background: rgba(255, 165, 0, 0); }
    50% { background: rgba(255, 165, 0, 0.1); }
    100% { background: rgba(255, 165, 0, 0); }
}

@keyframes pulse-danger {
    0% { background: rgba(255, 68, 68, 0); }
    50% { background: rgba(255, 68, 68, 0.2); }
    100% { background: rgba(255, 68, 68, 0); }
}

.mining-alert-warning { animation: pulse-warning 2s infinite; }
.mining-alert-danger { animation: pulse-danger 1s infinite; border: 1px solid #ff4444 !important; }

.mining-pulse {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Bu animasyonu ana style bloğuna değil, buraya özel bırak ki kaybolmasın */
@keyframes vipPulse { 
    0% { transform: scale(1); box-shadow: 0 0 10px #00FF41; } 
    50% { transform: scale(1.1); box-shadow: 0 0 25px #00FF41; } 
    100% { transform: scale(1); box-shadow: 0 0 10px #00FF41; } 
}

/* GRAFİK SVG & GRID */
    .chart-wrapper { position: relative; width: 100%; height: 100%; background: #000; border: 1px solid rgba(0, 255, 65, 0.1); overflow:hidden; }
    .chart-grid-bg { position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(0,255,65,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,65,0.05) 1px, transparent 1px); background-size: 20px 20px; z-index: 1; }
    #neon-svg { width: 100%; height: 100%; position: relative; z-index: 2; }
    .neon-path { fill: none; stroke: #00d2ff; stroke-width: 2; filter: drop-shadow(0 0 5px #00d2ff); }
    #price-bullet { r: 5; filter: drop-shadow(0 0 8px currentColor); }

@keyframes breathing {
    0% { box-shadow: 0 0 2px rgba(0, 33, 71, 0.5); border-color: rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 10px rgba(0, 33, 71, 0.8); border-color: rgba(0, 212, 255, 0.5); }
    100% { box-shadow: 0 0 2px rgba(0, 33, 71, 0.5); border-color: rgba(0, 212, 255, 0.2); }
}
#scan-btn:hover {
    background: #003366;
    border-color: #00d4ff;
}

.popup-overlay {
    z-index: 99990 !important; 
}


/* 1. ÇARPIYI GÖRÜNTÜDEN SİL */
.close-btn, .close-button, #close-popup, .hp-close {
    display: none !important;
}

.popup-box {
    position: fixed !important;
    bottom: 20px !important; /* Ayaklar yere çivili */
    left: 50% !important;
    transform: translateX(-50%) !important;
    
    /* Senin yakaladığın o tatlı boy ayarı */
    height: 450px !important; 
    width: 60% !important;
    
    /* Eski şeffaf ve temiz doku */
    background: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid #555 !important;
    padding: 20px !important;
    z-index: 100000 !important;
    

/* Çarpıyı ve her türlü kaydırma izini siler */
.popup-box::-webkit-scrollbar {
    display: none !important;
}
#mining-timer {
    color: #ff0000; /* Saf Kırmızı */
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.6); /* Kırmızı parlama efekti */
}

#ad-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 400px;
    background: #000;
    border: 3px solid var(--matrix);
    box-shadow: 0 0 20px var(--matrix);
    z-index: 10000; /* Her şeyin en üstünde */
}

/* 9'LU HAVUZ IZGARA SİSTEMİ */
.pool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolon */
    gap: 12px;
    margin-bottom: 20px;
}

.pool-card {
    height: 170px; /* Standart Yükseklik */
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #333;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    transition: all 0.3s ease;
}

/* Başlık ve Yüzde Yan Yana */
.pc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.pc-title {
    font-size: 0.85rem;
    font-weight: bold;
    color: #eee;
}

.pc-rate-inline {
    font-size: 0.95rem;
    font-weight: 800;
}

/* Aktif (Yeşil) Kart Renkleri */
.pool-card.active { border-color: #2ecc71; }
.pool-card.active .pc-rate-inline { color: #2ecc71; }

/* Pasif (Kırmızı) Kart Renkleri */
.pool-card.passive { border-color: #e74c3c; }
.pool-card.passive .pc-rate-inline { color: #e74c3c; }

/* WHALE HUNTER NEON CORE - CSS EN ALTINA GELECEK */
#havuzlar-room .pool-card-token.active-token {
    border: 2px solid #00f2ff !important;
    background: rgba(0, 20, 30, 0.95) !important;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.7), inset 0 0 15px rgba(0, 242, 255, 0.4) !important;
    animation: coreNeonPulse 2s infinite ease-in-out !important;
}

#havuzlar-room .active-token .pc-title, 
#havuzlar-room .active-token .pc-rate-inline {
    color: #00f2ff !important;
    text-shadow: 0 0 10px #00f2ff, 0 0 20px rgba(0, 242, 255, 0.5) !important;
}

#havuzlar-room .active-token .pc-btn {
    border-color: #00f2ff !important;
    color: #00f2ff !important;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.4) !important;
}

@keyframes coreNeonPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 242, 255, 0.5); border-color: #00f2ff; }
    50% { box-shadow: 0 0 30px rgba(0, 242, 255, 0.9); border-color: #fff; }
}

//////////////////////////////////////////
///////HASAT ET BOTONU ////////////////////
/* İkiz kardeşlerin ortak nefes alma efekti */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px #00ff00; opacity: 0.8; }
    50% { box-shadow: 0 0 20px #00ff00; opacity: 1; }
    100% { box-shadow: 0 0 5px #00ff00; opacity: 0.8; }
}

.pulse-active { 
    animation: pulse-glow 2s infinite !important; 
}

/* Üzerine gelince Matrix parlaması */
.h-btn:hover {
    box-shadow: 0 0 25px #00ff00 !important;
    background: rgba(0, 255, 0, 0.1) !important;
}

///////////////////////////////////////////////////
/* --- 1. VİTRİNDE HAYALETİ TAMAMEN ÖLDÜR --- */
#tf-menu, #version-quant {
    position: fixed !important; /* Ekrandan bağımsız yap */
    opacity: 0 !important;      /* Tamamen şeffaf yap */
    visibility: hidden !important; /* Görünürlüğü kapat */
    pointer-events: none !important; /* EL İŞARETİNİ (Tıklamayı) KES! */
    z-index: -9999 !important;  /* En alt katmana, yerin dibine gönder */
    transition: 0s !important;  /* Geçiş efekti falan olmasın, direkt yok olsun */
}

/* --- 2. SADECE ODA AKTİFKEN (PELERİNİ KALDIR) --- */
/* Not: Eğer oda ID'si farklıysa burayı o ID ile değiştir moruk */
#hisse-room.active #tf-menu,
#hisse-room.active #version-quant {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important; /* Tıklamayı geri getir */
    z-index: 10000 !important;   /* En üste, grafiğin üstüne çıkar */
}

/* --- 3. BUTON MAKYAJI (O GICIK BEYAZLIĞI BİTİREN KISIM) --- */
#hisse-room.active .tf-btn {
    background-color: #0a0a0a !important; /* KESİN SİYAH */
    color: #00ff41 !important;           /* MATRIX YEŞİLİ */
    border: 1px solid #00ff41 !important;
    padding: 6px 14px !important;
    font-weight: bold !important;
    font-family: monospace !important;
    border-radius: 4px !important;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.4) !important;
}

/* --- 4. VERSİYON YAZISINI ÇUKURDAN KURTARMA --- */
#hisse-room.active #version-quant {
    bottom: 50px !important; /* 45-50px YUKARI FIRLATTIK */
    right: 25px !important;
    color: #00ff41 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    padding: 4px 12px !important;
    border: 1px solid #00ff41 !important;
    border-radius: 4px !important;
}

/////////////////////////////////////////
//////HİSSE IZGARA ///////////////////////

.grid-node {
    position: absolute;
    width: 2px;
    height: 2px;
    /* Metalik çekirdek: Ortası beyaz, dışı neon yeşil */
    background: radial-gradient(circle, #fff 10%, #00ff41 80%);
    border-radius: 50%;
    /* Metalik yansıma: Keskin bir parlama katmanı */
    box-shadow: 0 0 4px #00ff41, 0 0 8px rgba(0, 255, 65, 0.4); 
    opacity: 0;
    /* Animasyon süresini 4-5 saniye yapalım ki daha ağır ve oturaklı yansın */
    animation: metalPulse 4s infinite ease-in-out;
}

@keyframes metalPulse {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.6);
        filter: brightness(1);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.1);
        /* Metalik parlama anında parlaklığı bir tık daha patlatıyoruz */
        filter: brightness(1.5);
    }
}
////////////havuz formu için///////////////////////
/* Formun kutusunu (pf-box) ekranın tam ortasına çiviler */
.pf-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important; /* Eski marginleri iptal et */
}

///////////////////////////////////////////////////////

/* Haberlerin daha sert ve net durması için */
.news-item-row { 
    margin-bottom: 12px; 
    border-left: 2px solid #00ff41; 
    padding-left: 8px; 
    animation: slideIn 0.5s ease; 
}
@keyframes slideIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: translateX(0); } }
.source-tag { background: #333; color: #fff; font-size: 10px; padding: 1px 4px; border-radius: 2px; text-transform: uppercase; }
////////////////////////////////////////////////////////

/* REKLAM TV İÇİNDEKİ SLAYT EFEKTİ */
.ad-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    animation: adFadeIn 0.8s ease-in-out;
}

@keyframes adFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.ad-title { color: #F3BA2F; font-size: 16px; font-weight: bold; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.ad-desc { color: #ffffff; font-size: 11px; line-height: 1.3; font-family: monospace; }
.ad-tag { border: 1px solid #F3BA2F; color: #F3BA2F; padding: 2px 6px; font-size: 9px; margin-top: 8px; border-radius: 2px; }

/////////////////////////////////////////////////////////////////////////
//////// trading css kodları başlangıcı //////////////////////
///////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////
#tuccar-ol-final-btn {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

#tuccar-ol-final-btn:active {
    transform: scale(0.96); /* Hafif içeri göçme efekti */
    filter: brightness(1.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

#tuccar-ol-final-btn:hover {
    background: #ffca28 !important;
    letter-spacing: 3px;
}
///////////////////////////////////////////////////////////////////////

/* Nokta Yanıp Sönme Animasyonu */
.dot-ani {
    animation: dotFade 1.5s infinite;
    opacity: 0;
}
.dot-ani:nth-child(1) { animation-delay: 0s; }
.dot-ani:nth-child(2) { animation-delay: 0.5s; }
.dot-ani:nth-child(3) { animation-delay: 1s; }

@keyframes dotFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Şık Dönüş Halkası */
.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(243, 186, 47, 0.1);
    border-top: 3px solid #F3BA2F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes popIn { 0% { transform: scale(0.8); opacity:0; } 100% { transform: scale(1); opacity:1; } }

/////////////////////////////////////////////////////////////////////

/* Noktaların Sırayla Yanıp Sönme Motoru */
.dot-ani {
    font-weight: bold;
    font-size: 1.5rem;
    color: #F3BA2F;
    animation: dotFade 1.5s infinite;
    opacity: 0;
    margin-left: 2px;
}

.dot-ani:nth-child(1) { animation-delay: 0s; }
.dot-ani:nth-child(2) { animation-delay: 0.5s; }
.dot-ani:nth-child(3) { animation-delay: 1s; }

@keyframes dotFade {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Loader Ring (Dönen Halka) */
.loader-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(243, 186, 47, 0.1);
    border-top: 4px solid #F3BA2F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
/////////////////////////////////////////
/////anahtar kelime//////////////
/* Ekrana çivi çakan modal yapısı */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none; /* JS ile açılacak */
    align-items: center;
    justify-content: center;
    z-index: 99999 !important; /* Her şeyin üstünde durur */
}

.modal-content {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #222;
}

.words-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    color: #00FF41;
    font-family: monospace;
    user-select: none; /* Kopyalamayı engeller */
}

//////////////////////////////////////////////
////anahtar kelime wallet //////////////
/* Kelime Listesi Alanı */
#mnemonic-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* Taşmayı engeller, kutuları dizer */
    gap: 10px;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Her Bir Kelime Satırı */
.word-row {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.word-number { color: #555; font-size: 10px; width: 20px; }

.word-text { 
    color: #00FF41; 
    font-family: monospace; 
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
}

/* Göz Butonu */
.eye-btn {
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: color 0.3s;
    user-select: none;
}
.eye-btn:hover { color: #00FF41; }

/* KD (Private Key) Alanı */
.kd-container {
    grid-column: 1 / -1; /* Tüm satırı kapla */
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 15px;
}
.kd-content {
    background: #000;
    padding: 10px;
    border: 1px dashed #444;
    word-break: break-all; /* 60 haneli anahtarı aşağı kaydırır, taşırmaz */
    font-size: 11px;
    color: #ff4444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ana Modal: 4 tık (120px-130px) genişletildi */
#mnemonic-modal .modal-content {
    width: 95%; 
    max-width: 580px; /* Eski dar yapıyı kırdık */
    background: #000;
    border: 1px solid #00FF41;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

/* Kelime Grid: 3 Sütunlu Sabit Düzen */
#mnemonic-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
    margin-bottom: 25px;
}

/* KD Kutusu: Geniş pencereye tam uyum */
.kd-content {
    background: #050505;
    border: 1px dashed #333;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

#kd-text {
    font-family: 'Courier New', monospace;
    font-size: 11px; /* Genişlik arttığı için 9px'e düşmeye gerek kalmadı */
    color: #ff4444;
    word-break: break-all; /* Sigorta: Sığmazsa her türlü aşağı kırar */
    line-height: 1.5;
    flex: 1;
}

@keyframes matrixFall {
    0% { top: -100%; }
    100% { top: 100%; }
}
@keyframes zoomOut {
    0% { transform: scale(1.5); opacity: 0; }
    50% { transform: scale(1.8); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes neonPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px #F3BA2F; }
    50% { opacity: 0.5; text-shadow: none; }
}
@keyframes growIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes matrixNefes {
    0% { box-shadow: 0 0 5px #00ff41; opacity: 0.7; }
    50% { box-shadow: 0 0 20px #00ff41; opacity: 1; }
    100% { box-shadow: 0 0 5px #00ff41; opacity: 0.7; }
}

.matrix-nefes-btn {
    background-color: #000 !important;
    color: #00ff41 !important;
    border: 2px solid #00ff41 !important;
    animation: matrixNefes 2s infinite ease-in-out;
    font-weight: bold;
    cursor: pointer;
    text-shadow: 0 0 5px #00ff41;
}

///////////////////////////////////////////////////////////////


      