#close-token-room {
    font-size: 0px !important;
}

/* =============================================================================
   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;
} /* KAPANMAYAN EFSANE PARANTEZ BURADA KAPANDI! */
    
/* Ç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;
}

///////////////////////////////////////////////////////////////

/* Video bitmeden butonun hortlamasını imkansız kılan beton kod */
#adv-btn[disabled] {
    display: none !important; /* disabled olduğu sürece ASLA görünme */
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

//////////////////////////////////////////////

/* =============================================================================
   📱 GÖZCÜ V4: TAM NİZAM MOBİL KALKANI (KUSURSUZ 3x3 IZGARA + SPA)
   ============================================================================= */
@media screen and (max-width: 768px) {

    /* --- 1. BUTONLAR: HTML'DEN GELEN 3x3 NİZAM --- */
    #nav-grid, .nav-panel { 
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* 3'lü kolon */
        gap: 8px !important; 
        padding: 10px !important;
        width: 100% !important;
        height: auto !important; 
        box-sizing: border-box !important;
    }

    .mod-box, .hp-box { 
        grid-column: span 1 !important; 
        width: 100% !important;
        height: 40px !important; 
        font-size: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* --- 2. VİTRİN VE ODA MİMARİSİ (SPA KİLİDİ) --- */
    html, body { 
        overflow: hidden !important; 
        width: 100vw !important; 
        height: 100vh !important; 
        background: #000 !important; 
    }

    #h-cont { display: flex !important; flex-direction: column !important; width: 100% !important; }

    #center-channel {
        display: block !important;
        width: 100% !important;
        height: 350px !important; 
        background: url('hunter.jpeg') no-repeat !important;
        background-size: cover !important;
        background-position: center 5% !important;
        position: relative !important;
    }

    .main-stage {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none !important;
    }

    .room {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: #000 !important;
        display: none !important; 
        flex-direction: column !important;
        padding: 15px !important;
        pointer-events: all !important;
        z-index: 200 !important;
        overflow-y: auto !important;
    }

    .room.active { display: flex !important; }
}
/* =============================================================================
   1. ANA VİTRİN VE NAVİGASYON PANELİ
   ============================================================================= */
@media screen and (max-width: 768px) {
    
    /* 1. TÜM BUTON PANELİ: Mükemmel Denge Protokolü */
    .nav-panel { 
        display: flex !important;           
        flex-wrap: wrap !important;         
        /* Center yerine space-between kullanarak sağ ve solu eşitliyoruz */
        justify-content: space-between !important; 
        gap: 4px !important;              
        padding: 5px 10px !important;     /* Sağdan ve soldan 10px nefes payı verdik */
        width: 100% !important;           
        box-sizing: border-box !important;
    }

    /* 2. BUTONLAR: Genişliği %32'ye geri çekiyoruz (Denge için) */
    .mod-box, .hp-box { 
        flex: 0 0 32% !important;         /* 32*3 = 96%, aradaki boşluklarla tam 100% eder */
        height: 42px !important;            
        font-size: 9px !important;        
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        margin: 0 !important;             /* Margin'i sıfırladık, gap ayarını kullanıyoruz */
    }
}
/* =============================================================================
   3. KURUMSAL VİTRİN VE DİKEY AKIŞ PROTOKOLÜ (V4 TAM DİSİPLİN)
   ============================================================================= */
@media screen and (max-width: 768px) {
    
    /* AŞAĞI KAYDIRMA (SCROLL) MİMARİSİ AKTİF */
    html, body { 
        overflow-y: auto !important; 
        overflow-x: hidden !important; 
        height: auto !important; 
        background: #000 !important; 
    }

    /* 1. ANA TAŞIYICI */
    #h-cont { 
        display: flex !important; 
        flex-direction: column !important; 
        width: 100% !important; 
        height: auto !important; 
        background: #000 !important; 
        margin-top: 0 !important;
    }

    /* 2. VİTRİN GÖRSELİ (Resim Üzerinde Hesap Motoru ve Dikey Cetvel) */
    #center-channel {
        order: 1 !important;
        display: block !important;
        width: 100% !important;
        height: 480px !important; 
        background: url('hunter.jpeg') no-repeat !important;
        background-size: cover !important;
        background-position: center 5% !important; 
        position: relative !important;
        z-index: 1 !important;
        border-bottom: 2px solid #00d4ff !important;
    }

    /* DİKEY SUPPLY CETVELİ: Yeniden Aktif Edildi ve Mobil Ayarı Yapıldı */
    #center-channel > div[style*="right: 0"] {
        display: block !important; 
        position: absolute !important;
        right: 35px !important;   /* Sağ kenardan içeri çektik, yazılar ve ok ekrana tam sığar */
        bottom: 120px !important; /* Alttaki şeffaf hesap motorunun üstüne binmesini engelledik */
        height: 280px !important; /* Grafik üzerinde nizami tırmanma alanı */
        width: 1px !important;
        z-index: 15 !important;
    }

    /* ŞEFFAFLIK HESAPLAMA MOTORU (HUD) */
    #center-channel > div[style*="bottom: 70px"] {
        display: flex !important;
        position: absolute !important;
        bottom: 10px !important; 
        left: 2.5% !important;
        width: 95% !important;
        height: auto !important;
        padding: 10px !important;
        background: rgba(0, 0, 0, 0.4) !important; 
        border: 1px solid rgba(0, 255, 136, 0.5) !important; 
        backdrop-filter: blur(5px) !important; 
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        z-index: 10 !important;
    }

    #center-channel input { width: 70px !important; font-size: 14px !important; }

    /* 3. LAUNCH PROTOKOL VE DEVASA KIRMIZI GERİ SAYIM */
    #right-panel {
        order: 2 !important;
        display: flex !important; 
        flex-direction: column !important;
        width: 100% !important;
        padding: 30px 20px !important;
        background: #0a192f !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    #countdown { 
        font-size: 38px !important; 
        color: #ff0000 !important; 
        font-weight: bold !important; 
        margin: 15px 0 !important;
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.6) !important; 
    }

    /* 4. SİSTEM STATUS, LİKİT VE GÜVENLİK (Aşağı kaydırdıkça temiz akış) */
    #left-panel { 
        order: 3 !important; 
        display: flex !important; 
        flex-direction: column !important;
        width: 100% !important; 
        padding: 25px 20px !important; 
        background: #0a192f !important; 
        box-sizing: border-box !important;
    }

    #left-panel > div { width: 100% !important; margin-bottom: 25px !important; }
}
/* =============================================================================
   4. KESKİN NİŞANCI PROTOKOLÜ (SİBER LAZER YEŞİLİ + NETLİK FİNAL)
   ============================================================================= */
@media screen and (max-width: 768px) {
    
    /* Cetveldeki tırmanan ok ve Launch Protokolde gezen oklar */
    #supply-pointer, 
    div[style*="border-right: 12px solid"], 
    div[style*="animation: supplyBreathe"] {
        
        /* 1. Renk iki tık keskinleştirildi: Saf, kör edici neon yeşili (#00ff00) */
        border-right-color: #00ff00 !important; 
        
        /* 2. Parlama şiddeti artırıldı (Fener gibi patlaması için) */
        filter: drop-shadow(0 0 6px #00ff00) !important; 
        
        /* 3. Donanımsal netlik ve tırtık törpüleme (Sabit kalkan) */
        transform: translateZ(0) !important; 
        -webkit-transform: translateZ(0) !important;
        -webkit-font-smoothing: antialiased !important;
        outline: 1px solid transparent !important;
    }
}

/* =============================================================================
   TAM BLOK: MOBİL UYUMLU VE İZOLE ANTİ-HUNTER ODASI (7PX HASSAS AYARLI)
   ============================================================================= */
@media screen and (max-width: 768px) {
    
    /* 1. SİYAH PERDE VE KAYDIRMA İZOLASYONU */
    #ah-room { 
        position: fixed !important; 
        top: 250px !important; 
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important; 
        height: calc(100% - 250px) !important; 
        background: #000 !important; 
        z-index: 999999 !important; 
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        overscroll-behavior: contain !important; 
        -webkit-overflow-scrolling: touch !important;
        padding: 20px 15px 15px 15px !important; 
        box-sizing: border-box !important;
    }

   /* 2. PENCERELER (Global Netflow için padding-top 1 tık daha artırıldı: 454 -> 461px) */
    #pg {
        display: flex !important;
        flex-direction: column !important; 
        justify-content: flex-start !important; 
        position: relative !important;
        width: 100% !important;
        height: auto !important; 
        padding-top: 461px !important; /* 454px idi, 1 tık daha aşağı aldık */
        gap: 20px !important; 
        margin: 0 !important; 
        padding-bottom: 0 !important; 
        box-sizing: border-box !important;
        z-index: 10 !important;
    }

    /* 3. KART BOYUTLARI (İçeriklerin birbirine dokunmaması için boşluk bırakıldı) */
    #pg > div { 
        width: 100% !important;
        height: 260px !important; 
        min-height: 260px !important;
        margin-bottom: 21px !important; /* 3 tık (21px) aşağı itiş */
        box-sizing: border-box !important;
    }

    /* Pencereler arası özel mesafe ayarlamaları (2 tık ve 3 tık mantığı) */
    #pg > div:nth-child(1) { margin-bottom: 7px !important; } /* Global Netflow: 1 tık aşağı */
    #pg > div:nth-child(2) { margin-bottom: 14px !important; } /* Isı Haritası: 2 tık aşağı */
    #pg > div:nth-child(3) { margin-bottom: 21px !important; } /* Long/Short: 3 tık aşağı */

    /* 4. SOHBET BUTONU (margin-top: 800px -> 835px yaparak 5 tık aşağı çekildi) */
    #ah-chat-open-btn {
        position: relative !important; 
        width: 90% !important;
        margin: 835px auto 60px auto !important; 
        left: 0 !important;
        right: 0 !important;
        float: none !important;
        clear: both !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        transform: none !important;
        z-index: 9999999 !important;
    }

    /* 5. TAM EKRAN SOHBET PANELİ (Sabit) */
    #ah-sliding-chat {
        position: fixed !important;
        top: 0 !important; 
        left: 0 !important; 
        width: 100vw !important; 
        height: 100% !important; 
        max-height: 100% !important; 
        transform: none !important; 
        margin: 0 !important;
        border-radius: 0 !important; 
        z-index: 999999999 !important; 
    }
}

/* =============================================================================
   P2P TİCARET ODASI - MOBİL TAM EKRAN (FULL SCREEN) PROTOKOLÜ (ORİJİNAL)
   ============================================================================= */
@media screen and (max-width: 768px) {
    
    /* 1. MODALIN DIŞ KATMANI (Mutlak Üstünlük) */
    #p2p-buy-modal {
        z-index: 999999999 !important; 
        background: #161a1e !important; 
        position: fixed !important; /* Tam ekran açılması için pozisyon sabitlenmeli */
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* 2. MODAL İÇ KUTUSU (Mobil Uygulama Görünümü) */
    #p2p-buy-modal > div {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important; 
        border-radius: 0 !important; 
        border: none !important;
        box-shadow: none !important;
    }

    /* 3. İÇERİK ALANI (Yan Yana Duran Sütunları Alt Alta İstifleme) */
    #p2p-buy-content {
        flex-direction: column !important; 
        flex-wrap: nowrap !important;
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important; 
    }

    /* 4. SOL SÜTUN (Fiyat, Limit, Tutar Girişi ve İşlem Başlatma) */
    #p2p-buy-content > div:nth-child(1) {
        min-width: 100% !important;
        border-right: none !important; 
        border-bottom: 2px solid #000 !important; 
        padding: 15px !important; 
    }

    /* 5. SAĞ SÜTUN (Tüccar Notu, Chat ve Dekont Yükleme) */
    #p2p-buy-content > div:nth-child(2) {
        min-width: 100% !important;
        border-left: none !important; 
    }

    /* 6. SOHBET ALANI REVİZYONU */
    #chat-messages {
        min-height: 250px !important; 
        max-height: none !important; 
        border-bottom: 1px solid #2b3139 !important;
    }

    /* Mobilde input ve buton boyutlarının parmak dostu olması için ince ayarlar */
    #p2p-pay-input { font-size: 16px !important; }
    #p2p-start-btn { padding: 12px !important; font-size: 15px !important; }
}

/* =============================================================================
   GÜVENLİK ODASI (SEC-ROOM) - KESİN GİZLEME, SIRALAMA VE EZİLMEZ KUTULAR
   ============================================================================= */

/* 1. MUTLAK GİZLİLİK */
#sec-room {
    display: none !important;
}

/* 2. SADECE BUTONA BASILINCA GÖRÜNÜR OLUR */
#sec-room[style*="display: block"], 
#sec-room[style*="display: flex"],
#sec-room.active {
    display: flex !important;
}

@media screen and (max-width: 768px) {
    
    /* 3. MOBİL AÇILIŞ DÜZENİ */
    #sec-room[style*="display: block"], 
    #sec-room[style*="display: flex"],
    #sec-room.active {
        flex-direction: column !important; 
        justify-content: flex-start !important;
        align-items: center !important;
        
        position: fixed !important; 
        top: 240px !important; 
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important; 
        height: calc(100% - 240px) !important; 
        background: #000 !important; 
        z-index: 9999999 !important; 
        
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important; 
        padding: 20px 0 60px 0 !important;
        box-sizing: border-box !important;
        gap: 25px !important; 
    }

    /* 1. SIRA: SNIPER KORUMASI (İkinci Uzun Pencere) */
    .radar-side-panel:nth-of-type(2) {
        order: 1 !important;
        position: relative !important;
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        width: 90% !important;
        height: 180px !important;
        min-height: 180px !important; /* Ezilmeyi önler */
        flex-shrink: 0 !important; /* Kutunun sıkıştırılmasını kesin olarak yasaklar */
        margin: 0 auto !important;
    }

    /* 2. SIRA: LİKİDİTE KALKANI (Birinci Uzun Pencere) */
    .radar-side-panel:nth-of-type(1) {
        order: 2 !important;
        position: relative !important;
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        width: 90% !important;
        height: 180px !important;
        min-height: 180px !important;
        flex-shrink: 0 !important;
        margin: 0 auto !important;
    }

    /* 3. SIRA: ANA RADAR SİMÜLASYONU */
    #radar-main, .radar-v15 {
        order: 3 !important;
        position: relative !important;
        top: auto !important; left: auto !important;
        transform: none !important;
        display: block !important;
        margin: 0 auto !important; 
        width: 240px !important; 
        height: 240px !important;
        min-height: 240px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }

    /* 4. SIRA: BİRİNCİ KÜÇÜK YAVER (ENGINE_L - Sol Motor) */
    #sec-left {
        order: 4 !important;
        position: relative !important; 
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        width: 90% !important; 
        height: 180px !important; 
        min-height: 180px !important; /* Yaveri tek satır olmaktan kurtarır */
        flex-shrink: 0 !important; /* Mühür: Flexbox burayı ezemez */
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* 5. SIRA: İKİNCİ KÜÇÜK YAVER (ENGINE_R - Sağ Motor) */
    #sec-right {
        order: 5 !important;
        position: relative !important; 
        top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
        width: 90% !important; 
        height: 180px !important; 
        min-height: 180px !important; /* Yaveri tek satır olmaktan kurtarır */
        flex-shrink: 0 !important; /* Mühür: Flexbox burayı ezemez */
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* RADAR ALTYAPI SABİTLEYİCİLERİ */
    .radar-ring {
        position: absolute !important;
        top: 50% !important; left: 50% !important;
        transform: translate(-50%, -50%) !important;
        border-radius: 50% !important;
        border: 1px solid rgba(0, 255, 0, 0.3) !important;
    }
    .radar-sweep-v15 {
        position: absolute !important;
        top: 0 !important; left: 50% !important;
        width: 50% !important; height: 50% !important;
        transform-origin: 0% 100% !important;
    }
}
/* =============================================================================
   PROJELER ODASI (PROJECTS-ROOM) - MOBİL UYUMLU - KONUM KAYDIRMA
   ============================================================================= */
/* =============================================================================
   PROJELER ODASI - MOBİL UYUMLU TEK HAMLELİK BLOK
   ============================================================================= */

/* 1. Butonun dokunma engelini kaldır (Tıklanabilirliği garantiye al) */
.protocol-btn {
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

/* 2. Projeler odasını en üste al */
#projects-room {
    z-index: 999999 !important;
}

/* 3. Mobilde odayı tertemiz tam ekran yap (Display'e dokunmuyoruz, motorun karışmasın) */
@media screen and (max-width: 768px) {
    #projects-room {
        width: 100% !important;
        height: 100% !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        background: #000 !important;
        overflow-y: auto !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    .project-list-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 50px !important;
    }

    .project-row {
        flex-direction: column !important;
        width: 100% !important;
        padding: 20px !important;
        border-bottom: 1px solid #333 !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .project-text {
        width: 100% !important;
        text-align: center !important;
        font-size: 16px !important;
    }

    .protocol-btn {
        width: 100% !important;
        padding: 18px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        cursor: pointer !important;
    }
}
///////////////////////////

/* =============================================================================
   💻 BÖLÜM 1: MASAÜSTÜ (DESKTOP) SİTESİ KESİN DÜZENLEME
   ============================================================================= */
#ad-box {
    position: absolute !important;
    top: 230px !important;
    left: 690px !important; 
    width: 520px !important;
    height: auto !important; 
    z-index: 9999 !important;
    border: 1px solid #00ff00 !important; 
    background: #000000 !important;
    border-radius: 12px !important;
    padding: 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Masaüstünde orijinal video açık, mobil video gizli */
#ad-box #adv {
    display: block !important;
}
#ad-box #adv-mobile {
    display: none !important;
}

#ad-box #buton-karargahi {
    display: flex !important;
    gap: 5px !important;
    margin-top: 12px !important; 
    width: 100% !important;
}


/* =============================================================================
   📱 BÖLÜM 2: MOBİL UYGULAMA (MOBILE) - @media SÜRÜMÜ
   ============================================================================= */
#mining-room {
    display: none;
}

@media screen and (max-width: 768px) {
    /* ANA KAPSAYICI */
    #mining-room.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: transparent !important; 
        z-index: 99999999 !important;
        padding: 5px 15px 50px 15px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        overscroll-behavior: none !important; 
        touch-action: pan-y !important;
    }

    /* 🚀 MOBİLDE GÖRÜNÜRLÜK KİLİDİ: Masaüstü videosunu gizle, senin o devasa mobil videoyu aç! */
    #mining-room #ad-box #adv {
        display: none !important;
    }
    #mining-room #ad-box #adv-mobile {
        display: block !important;
    }

    /* REKLAM PANELİ MAT ZEMİN */
    #mining-room #ad-box {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important; 
        height: 100vh !important;
        background-color: #000000 !important; 
        z-index: 99999999999 !important; 
        margin: 0 !important;
        padding: 0 !important; 
        border: none !important;
        border-radius: 0 !important;
        overflow: hidden;
        
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* ONAY BUTONLARI */
    #mining-room #ad-box #buton-karargahi {
        position: absolute !important;
        bottom: 30px !important; 
        left: 4% !important;
        width: 92% !important; 
        display: flex !important;
        flex-direction: row !important; 
        gap: 12px !important;
        z-index: 999999999999 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    #mining-room #ad-box #buton-karargahi button {
        flex: 1 !important; 
        width: 100% !important;
        margin: 0 !important;
        padding: 15px 5px !important; 
        background-color: #000000 !important; 
        border: 2px solid #00ff00 !important; 
        border-radius: 10px !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.2) !important; 
        cursor: pointer !important;
    }

    /* FİYAT GÖSTERGESİ */
    #mining-room .sem-market-engine {
        order: 1 !important;
        width: 100% !important;
        margin: 5px 0 10px 0 !important; 
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
    }

    /* ÇEKİRDEK */
    #mining-room .m-core {
        order: 2 !important;
        width: 100% !important;
        margin-top: 45px !important; 
        margin-bottom: 0 !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
        transform: scale(0.85) !important;
        transform-origin: top center !important;
    }

    /* ÜRETİM BUTONLARI */
    #mining-room .mining-ctrl {
        order: 3 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important; 
        margin-top: -35px !important; 
        margin-bottom: 0 !important; 
        position: relative !important;
        background-color: #000000 !important; 
        padding: 10px !important; 
        border-radius: 12px !important;
        box-shadow: 0 0 30px #000000, inset 0 0 20px #000000 !important;
    }

    #mining-room .mining-ctrl button {
        width: 100% !important;
        margin: 0 !important;
        padding: 16px !important;
        background-color: #000000 !important;
        opacity: 1 !important; 
    }

    #mining-room .pulse-active {
        animation: pulse-glow-mobile 2s infinite !important;
    }

    /* KAPSAYICI DÜZENİ */
    #mining-room .mining-layout {
        order: 5 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: -180px !important;
        gap: 15px !important; 
        position: relative !important;
    }

    /* YEŞİL KUTULAR */
    #mining-room .mining-col:nth-child(2) {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important; 
        position: relative !important;
    }

    /* SARI KUTULAR */
    #mining-room .mining-col:nth-child(1) {
        order: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important; 
        margin-top: -15px !important; 
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* KUTU STANDARTLARI */
    #mining-room .stat-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        min-height: max-content !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        position: relative !important;
        border-radius: 15px !important; 
    }

    /* HUNTER TAHTASI DÜZELTMESİ */
    #mining-room .hunter-final-box {
        display: block !important;
        width: 100% !important;
        height: 140px !important; 
        min-height: 140px !important;
        position: relative !important;
        overflow: hidden !important;
        margin-bottom: 10px !important;
        border-radius: 15px !important; 
    }

    /* Kilitli Sistem */
    #mining-room .system-lock-overlay {
        width: 100% !important;
        left: 0 !important;
        border: none !important;
        height: 100% !important;
        border-radius: 15px !important;
    }
}

/* =============================================================================
   🎯 ONAYLA VE KAZ BUTONU ARKA PLAN KİLİDİ
   (Şeffaflığı tamamen yok eder, arkasını kurşun geçirmez mat siyah yapar)
   ============================================================================= */
#ad-box #buton-karargahi button, 
#mining-room #ad-box #buton-karargahi button {
    background: #000000 !important;       /* Her türlü arka plan geçişini siyahla kapatır */
    background-color: #000000 !important; /* Katı siyah rengi mühürler */
    opacity: 1 !important;                /* Şeffaflık ihtimalini tamamen sıfırlar */
    color: #00ff00 !important;            /* Yazı rengini siber parlak yeşil yapar */
    border: 2px solid #00ff00 !important;  /* Kenarlıkları yeşil çizgiyle belirginleştirir */
    backdrop-filter: none !important;     /* Arkadaki transparan cam efektlerini kırar */
    box-shadow: none !important;          /* Butonun dışa doğru olan ışık parlamasını keser */
}

/* =============================================================================
   💸 BÖLÜM 3: REKLAM SONRASI DOLAR YAĞMURU (KESKİNLEŞTİRİLMİŞ SÜRÜM)
   (Bulanıklık tamamen kaldırıldı, dolarlar jilet gibi belirgin yapıldı)
   ============================================================================= */
@keyframes suzulus {
    0% { transform: translate3d(0, -10vh, 0) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translate3d(25px, 50vh, 0) rotate(180deg) scale(1.3); opacity: 1; } 
    100% { transform: translate3d(-25px, 110vh, 0) rotate(360deg) scale(0.8); opacity: 0; }
}

.gokten-dolar {
    position: fixed;
    top: 0;
    z-index: 999999999999 !important; 
    pointer-events: none; 
    
    /* 🚀 BULANIKLIK SÖNDÜRME OPERASYONU */
    font-weight: 900 !important;           /* Karakter yapısını kalınlaştırıp netleştirir */
    filter: drop-shadow(0 0 2px #00ff00) !important; /* Geniş bulanık parlamayı daraltıp keskinleştirdik */
    text-shadow: 1px 1px 2px #000000 !important;   /* Arkasına net bir gölge atarak yazı karakterini öne çıkardık */
    image-rendering: pixelated !important;  /* Tarayıcının yumuşatma (blur) motorunu kapatır, jilet gibi basar */
    image-rendering: crisp-edges !important;
    
    animation: suzulus linear forwards;
    will-change: transform, opacity;
}

@keyframes pulse-glow-mobile {
    0% { box-shadow: 0 0 5px #00ff00; background-color: #000000; }
    50% { box-shadow: 0 0 20px #00ff00; background-color: #000000; }
    100% { box-shadow: 0 0 5px #00ff00; background-color: #000000; }
}
///////////////////////////////////

/* =============================================================================
   💼 BÖLÜM 4: LİKİDİTE TERMİNALİ - KREDİ FORMU TAM EKRAN MÜHÜRÜ (KATMAN KİLİTLİ)
   ============================================================================= */

/* 💻 MASAÜSTÜ VE MOBİL İÇİN ORTAK KATMAN GÜÇLENDİRMESİ */
#kredi-form-modal {
    /* 🚀 VİTRİN DELME OPERASYONU: Mining odasının hayalet katmanını ezmek için z-index zirveye çıkarıldı */
    z-index: 999999999999999 !important; 
}

/* 📱 Sadece Mobil Ekranlarda (Telefonda) Formu Tam Ekran Yapma Kilidi */
@media screen and (max-width: 768px) {
    
    #kredi-form-modal {
        width: 100vw !important;
        height: 100vh !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /* FORM KUTUSUNU TAM EKRANA SÜNDÜREN SİHİRLİ DOKUNUŞ */
    #kredi-form-modal .kf-box {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important; /* HTML'deki 160px margin baskısı mobilde tamamen sıfırlandı */
        border: none !important; 
        border-radius: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    /* Formun Üst Başlık Paneli */
    #kredi-form-modal .kf-box > div:nth-child(2) {
        padding: 15px 8px !important; 
        flex-shrink: 0 !important;
    }

    /* ⚓ İÇERİK ALANI (Form Alanları, Inputlar ve Sözleşme) */
    #kredi-form-modal .kf-box .kf-body {
        padding: 20px 15px !important;
        flex: 1 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important; 
        box-sizing: border-box !important;
        display: block !important;
    }

    /* Input Alanları ve Satırları */
    #kredi-form-modal .kf-box .kf-row {
        margin-bottom: 12px !important; 
    }

    #kredi-form-modal .kf-box .kf-input {
        height: 42px !important; 
        font-size: 13px !important; 
    }

    /* Sözleşme Kutusu */
    #kredi-form-modal .kf-box .kf-contract {
        max-height: 80px !important; 
        margin-bottom: 15px !important;
    }

    /* Operasyonu Başlat Butonu */
    #kredi-form-modal .kf-box .kf-submit {
        padding: 15px !important; 
        font-size: 14px !important;
        letter-spacing: 2px !important;
        border-radius: 6px !important;
        margin-top: 5px !important;
        flex-shrink: 0 !important;
    }

    /* Sağ Üstteki Kapatma Çarpısı (✕) */
    #kredi-form-modal .kf-box div[onclick="closeKrediForm()"] {
        top: 12px !important;
        right: 20px !important;
        font-size: 26px !important; 
        padding: 10px !important; 
    }
}
/* =============================================================================
   🚪 KREDİ ODASI GİRİŞ KAPISI - SADECE CSS KİLİDİ
   (Kredi odası açıldığında, inatçı reklam vitrinini otomatik olarak arkaya gömer)
   ============================================================================= */

/* Eğer kredi odası aktifse, o inatçı reklam kutusunu görünmez yap ve kartların önünü aç! */
#kredi-room.active ~ #ad-box,
#kredi-room[style*="display: block"] ~ #ad-box,
#kredi-room[style*="display: flex"] ~ #ad-box {
    display: none !important;
}

/* Garanti olsun: Kredi odası ekrandayken mining odasının kalıntılarını tamamen temizle */
#kredi-room.active {
    display: flex !important;
    z-index: 999999 !important;
    position: relative !important;
}
/* =============================================================================
   💻 SADECE MASAÜSTÜ SÜRÜMÜ İÇİN VİTRİN TEMİZLEME MÜHÜRÜ
   (Kredi odası açıldığında vitrinin kartları itmesini kökten engeller)
   ============================================================================= */
@media screen and (min-width: 769px) {
    /* Eğer gövdede kredi odası display:block veya flex olarak açıldıysa, vitrini tamamen ortadan kaldır */
    body:has(#kredi-room[style*="display: block"]) #ad-box,
    body:has(#kredi-room[style*="display: flex"]) #ad-box,
    #kredi-room.active ~ #ad-box {
        display: none !important;
    }
}
/* =============================================================================
   💳 KART HİZALAMA: MOBİL İÇİN DİKEY KİLİT (MASAÜSTÜNE DOKUNMAZ)
   ============================================================================= */

@media screen and (max-width: 768px) {
    /* Kartların ana kapsayıcısını sadece MOBİLDE alt alta dizer */
    .kredi-cards-container {
        display: flex !important;
        flex-direction: column !important; 
        gap: 20px !important;
        padding: 10px 20px !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Kartları sadece MOBİLDE tam genişlik yapar */
    .kredi-card {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        min-height: 140px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }

    .kredi-card.special-offer {
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
}
/* =============================================================================
       📧 E-POSTA SATIRI: SAĞA TAŞMA VE SIKIŞMA ENGELLEYİCİ MÜHÜR
       ============================================================================= */
    
    /* ID, E-posta ve Uzantı seçeneğinin olduğu satırı telefonda yeniden yapılandırıyoruz */
    #kredi-form-modal .kf-box .kf-row:nth-child(2) {
        display: flex !important;
        flex-direction: column !important; /* Elemanları alt alta alarak sıkışmayı bitirir */
        gap: 10px !important;
        grid-template-columns: none !important; /* Eski grid baskısını kırar */
    }

    /* ID Giriş alanını tam genişlik yapıyoruz */
    #kf-hunter-id {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* E-posta metin kutusu ile @gmail seçeneğini yan yana şık bir ikili yapıyoruz */
    #kredi-form-modal .kf-box .kf-row:nth-child(2) {
        /* Üstteki flex ezmesi yerine sadece e-posta kısmını sığdırmak için şu akıllı yapıyı kuruyoruz: */
        display: grid !important;
        grid-template-columns: 1fr !important; /* Önce her şeyi alt alta sırala */
        gap: 10px !important;
    }

    /* Alternatif olarak daha temiz bir görünüm için: ID ayrı satırda, E-posta kutuları yan yana dursun */
    #kredi-form-modal .kf-box .kf-row {
        /* Eğer HTML'deki 2. satırda 3 eleman varsa, onu telefonda korumalı 2 satıra bölüyoruz */
        grid-template-columns: 1fr !important; /* Hepsini tek sütun yap */
    }

    /* KESİN ÇÖZÜM: Tüm inputların ve select kutusunun dışarı taşmasını yasaklıyoruz */
    #kredi-form-modal .kf-input {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important; /* Padding değerlerinin kutuyu büyütmesini engeller */
    }

    /* E-posta kutusu ile select yan yana gelsin, taşma sıfırlansın dersen şu blok: */
    #f-mail-user {
        width: 100% !important;
    }
    
    #f-mail-ext {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-indent: 5px !important; /* İçindeki yazıyı biraz sağa kaydırır şık dursun diye */
    }
/////////////////////////////////////////////////////

/* =============================================================================
   📱 BÖLÜM 5: PROJE İŞTİRAKLERİ ODASI - SAFKAN MOBİL REJİSÖRÜ (ORİJİNAL GÜVENLİ SÜRÜM)
   ============================================================================= */

/* 1. KULLANICI TARAFINI (MASAÜSTÜ) KORUMA ALTINA ALAN GLOBAL STATÜ */
#hisse-room {
    display: none; /* Varsayılan olarak gizli kalır, JS ne yaparsa o. Masaüstünde F5 atınca patlamaz. */
}

/* 🔒 SAFKAN MOBİL KAFESİ: Bu süslü parantezin altındaki hiçbir kod masaüstüne SIZAMAZ! */
@media screen and (max-width: 768px) {

    /* Odanın mobil ekranı tamamen kaplamasını sağlayan ana taban mühür */
    #hisse-room {
        display: none;
        flex-direction: column !important;
        overflow-y: auto !important; 
        -webkit-overflow-scrolling: touch !important;
        position: fixed !important;        
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000000 !important;
        z-index: 999999999 !important; 
        box-sizing: border-box !important;
    }

    /* F5 hatasını bitiren kilit */
    #hisse-room[style*="display: block"],
    #hisse-room[style*="display: flex"] {
        display: flex !important;
        flex-direction: column !important; 
    }

    /* 2. ÜST ŞERİT SAAT KUTULARI VE VOL MÜHÜRÜ */
    #hisse-room .side-p {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 12px 6px 8px !important; 
        border-right: none !important;
        border-bottom: 1px solid #111 !important;
        background: #050505 !important;
        overflow: visible !important; 
        box-sizing: border-box !important;
    }

    #hisse-room .side-p .mod-box:nth-child(1),
    #hisse-room .side-p .mod-box:nth-child(2),
    #hisse-room .side-p .mod-box:nth-child(3) { width: 22% !important; max-width: 22% !important; margin-right: 2px !important; }
    #hisse-room .side-p .mod-box:nth-child(4) { width: 26% !important; max-width: 26% !important; margin-left: auto !important; border: 1px solid rgba(0, 255, 65, 0.6) !important; position: relative !important; z-index: 999999 !important; }

    #hisse-room .side-p .mod-box {
        height: 36px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        background: #0a0a0a !important;
        border-radius: 4px !important;
        padding: 2px !important;
        box-sizing: border-box !important;
    }

    #hisse-room .side-p .mod-box b { font-size: 9px !important; margin-bottom: 0 !important; }
    #hisse-room .side-p .mod-box span { font-size: 10px !important; }

    /* 3. MOBİL ORTA GÖVDE VE BUTON TAM UYUM NİZAMI */
    #hisse-room .c-main {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important; 
        display: flex !important;
        flex-direction: column !important;
        background: #000000 !important;
        padding: 0 12px !important; 
        box-sizing: border-box !important;
    }

    /* İştirak Payı Al butonu nizamı */
    #hisse-room .c-main button,
    #hisse-room .c-main .btn,
    #hisse-room .c-main [class*="button"] {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important; 
    }

    /* ⏱️ MUM PERİYOTLARI VE GERİ SAYIM SAYAÇLARI ORİJİNAL YATAY NİZAMI */
    #hisse-room .period-container,
    #hisse-room .chart-periods,
    #hisse-room [class*="period"],
    #hisse-room [class*="timer"],
    #hisse-room [class*="countdown"] {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 6px !important;
        overflow-x: auto !important; 
        width: 100% !important;
        max-width: 100% !important;
        height: 34px !important; 
        min-height: 34px !important;
        max-height: 34px !important;
        padding: 0 !important;
        margin-bottom: 8px !important;
        box-sizing: border-box !important;
    }

    #hisse-room .period-container button,
    #hisse-room .chart-periods button,
    #hisse-room [class*="period"] button,
    #hisse-room [class*="timer"] span,
    #hisse-room [class*="countdown"] div {
        display: inline-flex !important;
        flex-direction: row !important;
        width: auto !important; 
        max-width: none !important;
        height: 26px !important;
        padding: 2px 8px !important;
        font-size: 11px !important;
        background: #0a0a0a !important;
        border: 1px solid #1c1c1c !important;
        border-radius: 3px !important;
        white-space: nowrap !important; 
    }

    /* 📈 GRAFİK KAPSAYICISI - SAĞA TAŞIRMA VE SABİT GÜVENLİ BOY KİLİDİ */
    #graph-area-container {
        width: calc(100% + 40px) !important; 
        max-width: calc(100% + 40px) !important;
        height: 420px !important; 
        min-height: 420px !important;
        max-height: 420px !important;
        position: relative !important;
        background: #000000 !important;
        display: block !important;
        z-index: 100 !important;
        margin-top: 4px !important;
        touch-action: auto !important; 
    }

    #graph-area-container iframe,
    #graph-area-container canvas,
    #graph-area-container div {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        pointer-events: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    #graph-area-container [class*="price"], 
    #graph-area-container [class*="label"],
    #graph-area-container [class*="axis"],
    #graph-area-container [class*="values"] {
        right: 40px !important; 
        left: auto !important;
    }

    /* 4. 📝 REGISTRY LOGS (.h-panel) - EN AŞAĞIYA İTİLMİŞ STABİL MOBİL TABANI */
    #hisse-room .h-panel {
        width: 100% !important;
        max-width: 100% !important;
        
        /* 🚀 EN TEMİZ TABAN AYARI: 
           Yüksekliği esnek bırakıp min-height değerini 180px'e çektik. 
           Böylece Registry grafiği asla yukarı itip kaybettiremez, kibarca en altta kalır. */
        height: auto !important;
        min-height: 180px !important; 
        margin-top: 15px !important; /* Grafik altından nizamî kurumsal boşluk */
        
        border-left: none !important;    
        border-top: 1px solid #111 !important; 
        background: #020202 !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        flex-shrink: 0 !important;
    }

    #hisse-room .h-panel > div:first-child {
        padding: 6px !important;
        font-size: 10px !important;
        letter-spacing: 1px !important;
        background: #080808 !important;
        border-bottom: 1px solid #111 !important;
        text-align: center !important;
    }

    /* 📜 ASIL LİSTE İÇ ALANI */
    #h-list {
        flex: 1 !important;
        overflow-y: auto !important; 
        -webkit-overflow-scrolling: touch !important; 
        padding: 6px !important;
        max-height: 220px !important; 
    }
}
/* 🔓 KAFES BİTTİ. BUNDAN SONRASI YİNE GLOBAL CSS DÜZENİDİR */

/* =============================================================================
   📱 BÖLÜM 6: GELİŞİM HAVUZLARI ODASI - SAFKAN MOBİL REJİSÖRÜ (ÇİFT FORM KİLİTLİ)
   ============================================================================= */

/* 1. KULLANICI TARAFINI (MASAÜSTÜ) KORUMA ALTINA ALAN GLOBAL STATÜ */
#havuzlar-room {
    display: none; /* Varsayılan olarak gizli kalır, Masaüstünde F5 atınca patlamaz. */
}

/* 🔒 SAFKAN MOBİL KAFESİ: Bu süslü parantezin altındaki hiçbir kod masaüstüne SIZAMAZ! */
@media screen and (max-width: 768px) {

    /* 🛡️ HAYALETLİĞİ BİTİREN ANA ODA GÖVDESİ */
    #havuzlar-room {
        display: none !important; /* F5 Atınca ekrana fırlamayı önleyen ilk kilit */
        position: fixed !important;        
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        background: #000000 !important; 
        z-index: 88888888 !important; 
        padding: 8px !important;
        overflow-y: auto !important; 
        overflow-x: hidden !important; 
        box-sizing: border-box !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* F5 KİLİDİ 2: Oda sadece ve sadece JS motoru inline style bastığında tetiklenir */
    #havuzlar-room[style*="display: block"],
    #havuzlar-room[style*="display: flex"],
    #havuzlar-room[style*="display:flex"],
    #havuzlar-room[style*="display:block"] {
        display: flex !important;
        flex-direction: column !important; 
        justify-content: flex-start !important;
        align-items: center !important;
    }

    /* DATA TERMINALİ EN ÜSTE, HAVUZLARI ALTA ALMA MOTORU */
    #havuzlar-room .pool-left-side {
        order: 2 !important; 
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        margin-top: 0 !important; /* Havuz kartları terminale sıfıra sıfır yapışır (Öpüşme tamam) */
    }

    /* 📟 2. DATA TERMINAL (REGISTER) - KAFASI ÇİVİLİ, BOYU UZATILMIŞ SÜRÜM */
    #havuzlar-room .pool-right-side {
        order: 1 !important; 
        width: 100% !important;
        max-width: 100% !important;
        height: 590px !important; 
        min-height: 590px !important;
        max-height: 590px !important;
        margin-top: 20px !important; 
        margin-bottom: 0 !important; 
        flex: none !important;
        align-self: stretch !important;
        background: #020202 !important;
        border: 1px solid #1a1a1a !important;
        border-radius: 3px !important;
        box-sizing: border-box !important;
        box-shadow: inset 0 0 15px #000 !important;
        overflow: hidden !important;
    }

    /* Terminal başlığı (DATA TERMINAL) */
    #havuzlar-room .pool-right-side > div:first-child {
        background: #0a0a0a !important;
        padding: 10px !important;
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
        border-bottom: 1px solid #1a1a1a !important;
    }

    /* 📜 SİBER AKIŞ LİSTESİ - DİKEY AKAN GÜVENLİ YATAK */
    #havuzlar-room #id-flow {
        height: 540px !important;
        min-height: 540px !important;
        max-height: 540px !important;
        overflow-y: auto !important; 
        overflow-x: hidden !important; 
        -webkit-overflow-scrolling: touch !important;
        padding: 10px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important; 
        gap: 8px !important;
    }

    /* ID ve Dolar satırlarının stabil dikey yerleşimi */
    #havuzlar-room #id-flow div,
    #havuzlar-room #id-flow p,
    #havuzlar-room #id-flow span,
    #havuzlar-room #id-flow br + text {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        clear: both !important;
        box-sizing: border-box !important;
        white-space: normal !important; 
        font-size: 15px !important; 
        font-family: monospace !important;
        font-weight: bold !important;
        line-height: 1.5 !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.5px !important;
        color: #00ff41 !important; 
        text-shadow: 0 0 3px rgba(0, 255, 65, 0.2) !important;
    }

    /* 3. ÜST HABER BANDI */
    #havuzlar-room .pool-left-side > div:first-child {
        height: auto !important;
        min-height: 24px !important;
        flex-direction: column !important;
        gap: 4px !important;
        margin-bottom: 4px !important;
    }

    /* 4. 🎯 HAVUZ KARTLARININ ALTAKİ 2'ŞERLİ MATRİS DÜZENİ */
    #havuzlar-room .pool-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; 
        row-gap: 6px !important;
        column-gap: 6px !important;
        width: 100% !important;
        align-content: start !important;
    }

    #havuzlar-room .pool-card {
        width: 100% !important;
        max-width: 100% !important;
        height: 115px !important;
        min-height: 115px !important;
        box-sizing: border-box !important;
        background: #0a0a0a !important;
        border: 1px solid #1c1c1c !important;
    }

    #havuzlar-room .pool-card span { font-size: 0.55rem !important; }
    #havuzlar-room .pool-card div[id^="rate-"] { font-size: 16px !important; }
    #havuzlar-room .pool-card div[id^="timer-"] { font-size: 0.75rem !important; margin-bottom: 6px !important; display: block !important; visibility: visible !important; }
    #havuzlar-room .pool-card button { padding: 4px !important; font-size: 0.52rem !important; background: #111111 !important; border: 1px solid #222222 !important; }
    #havuzlar-room .pool-volume-side { width: 50px !important; min-width: 50px !important; padding: 4px 1px !important; }
    #havuzlar-room .pool-volume-side span { font-size: 0.42rem !important; }


    /* 🚀 ⚡ 5. FORM KİLİTLERİNİ KÖKTEN YIKAN SİBER ATOM BOMBASI
       Buradaki özel nitelik seçiciler, HTML'deki o serseri inline kuralı tamamen ezer! */
    
    /* A) TOKEN HAVUZU FORMU */
    [id="token-box-yeni"],
    /* B) 🎯 NORMAL HAVUZ FORMU (YENİ EKLENDİ - ÖNE FIRLATMA KİLİDİ) */
    [id="pool-form-modal"] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        background: rgba(0, 0, 0, 0.98) !important; /* Arka tarafı tamamen karartan kurumsal pelerin */
        
        /* 👑 MUTLAK EN ÜSTÜNLÜK KATMANI: Odanın (88888888) kat kat üstüne zorla çiviler! */
        z-index: 99999999999 !important; 
        box-sizing: border-box !important;
        padding: 12px !important;
        overflow-y: auto !important;
    }

    /* JS motoru iki formdan birini tetiklediği andaki mutlak görünürlük emri */
    [id="token-box-yeni"][style*="display"],
    [id="token-box-yeni"],
    [id="pool-form-modal"][style*="display"],
    [id="pool-form-modal"] {
        visibility: visible !important;
        opacity: 1 !important;
    }

   /* Form kutularının mobil iç kalkanı (Yukarıdan 4 tık aşağı indirildi) */
    [id="token-box-yeni"] > div,
    [id="pool-form-modal"] .pf-box {
        max-width: 380px !important;
        width: 95% !important;
        
        /* 🚀 4 TIK AŞAĞI KAYDIRMA MÜHÜRÜ: 
           `margin: auto` yerine üstten 45px net pay vererek kutuyu tam o istediğin kurumsal hatta indirdik! */
        margin: 45px auto 40px auto !important; 
        
        background: #050505 !important;
        box-sizing: border-box !important;
        z-index: 100000000000 !important;
        display: flex !important; 
        flex-direction: column !important;
    }
/* 🔓 KAFES BİTTİ. BUNDAN SONRASI YİNE GLOBAL CSS DÜZENİDİR */


/* =============================================================================
       🔐 BÖLÜM 7: YETKİ DOĞRULAMASI (AUTH) PANELİ MOBİL ADAPTÖRÜ
       ============================================================================= */
    
    /* Yetki perdesinin mobil tam ekran zırhı */
    #identity-check-overlay {
        padding: 6px !important;
        border: none !important; /* Mobilde kaba sarı dış çerçeveyi kırptık */
        background: rgba(0, 0, 0, 0.98) !important;
    }

    /* Formun içindeki o sarı konturlu ana kutunun (auth-box) mobil daraltması */
    #identity-check-overlay .auth-box {
        max-width: 365px !important; /* Genişliği presledik ki telefonlardan taşmasın */
        width: 95% !important;
        margin: auto !important;
        padding: 12px 14px !important;
        border: 1px solid #ffcc00 !important; /* Çerçeveyi zarifleştirdik */
        box-sizing: border-box !important;
    }

    /* Giriş başlığı ve yanındaki o kırmızı çarpının mobil ölçeği */
    #identity-check-overlay span[style*="font-size: 1.3rem"] {
        font-size: 1.1rem !important; /* Başlık fontunu hafif kıstık */
    }

    /* Matrix butonlarının mobil basım nizamı */
    #identity-check-overlay .matrix-btn {
        box-sizing: border-box !important;
        border-radius: 2px !important;
    }

    /* Sözleşme kutusu telefonda taşmasın */
    #id-flow, #sozlesme-metni {
        box-sizing: border-box !important;
    }

/* =============================================================================
   📱 BÖLÜM 8: TOKENOMİKS (TOKEN-ROOM) KOMUTA MERKEZİ - BAĞIMSIZ ODA SÜRÜMÜ
   ============================================================================= */

/* 1. KULLANICI TARAFINI (MASAÜSTÜ) KORUMA ALTINA ALAN GLOBAL STATÜ */
#token-room {
    display: none; /* 🚀 F5 ATINCA DİREKT AÇILMA  %100 BİTTİ! */
}

/* 🔒 SAFKAN MOBİL KAFESİ: Bu süslü parantezin altındaki hiçbir kod masaüstüne SIZAMAZ! */
@media screen and (max-width: 768px) {

    /* 🛸 VİTRİNİN ALTINDA KALMAYAN, RESMİ VE DOKUNMATİĞİ KURTARAN ÖZEL ODA AYARI */
    #token-room {
        /* JS motorun `display: block` veya `display: flex` verdiğinde burası devreye girer */
        position: fixed !important; /* Vitrinin altına kaymasını engelleyen mutlak kilit */
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        
        /* 🚀 RESMİ KURTARAN MÜHÜR: `background: #000` yazıp resmi yok etmiyoruz. 
           Arka plan rengini şeffaf bırakıyoruz ki senin HTML veya inline CSS ile yüklediğin 
           o efsanevi Neptün fon resmi canavar gibi arkada parlasın! */
        z-index: 99999999 !important; /* Vitrini alta gömen, odayı en öne fırlatan güç */
        
        box-sizing: border-box !important;
        padding: 60px 12px 80px 12px !important;
        overflow-y: auto !important; 
        overflow-x: hidden !important; 
        -webkit-overflow-scrolling: touch !important;
        
        /* 10 adet TV ekranını simetrik ikişerli plazmalar halinde dizer */
        display: none; /* Varsayılan gizli duruş */
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        align-content: start !important;
    }

    /* 🚀 JS MOTORU TETİKLEDİĞİ ANDA ODANIN EN ÖNDE GRID OLARAK PATLAMA EMRE */
    #token-room[style*="display: block"],
    #token-room[style*="display: flex"],
    #token-room[style*="display:flex"],
    #token-room[style*="display:block"] {
        display: grid !important;
    }

    /* 📺 PLAZMA TV EKRANLARININ MOBİLDEKİ İLK MİNYATÜR DURUŞU */
    #token-room .ts-window {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        
        width: 100% !important;
        height: 85px !important; 
        min-height: 85px !important;
        box-sizing: border-box !important;
        background: rgba(5, 5, 5, 0.85) !important;
        border: 1px solid #4169E1 !important; /* Siber Kraliyet Mavisi kontur */
        border-radius: 4px !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; 
        cursor: pointer !important;
        z-index: 10 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5) !important;
    }

    /* TV Ekran Başlıkları */
    #token-room .ts-window .ts-h {
        background: rgba(10, 25, 50, 0.9) !important;
        font-size: 11px !important;
        padding: 5px !important;
        letter-spacing: 1px !important;
        border-bottom: 1px solid #4169E1 !important;
        text-align: center !important;
    }

    /* TV Ekran Veri Akış Alanı */
    #token-room .ts-window .ts-b {
        padding: 8px !important;
        font-size: 13px !important;
        color: #00ffff !important;
        text-align: center !important;
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: monospace !important;
    }

  /* 👑 ⚡ TAM ORTADA PATLAYAN CANAVAR PLAZMA MODU (.active-tv)
       `translate` kullanılmadığı için yarım piksel hatası yapmaz, yazıları cam gibi netleştirir! */
    #token-room .ts-window.active-tv {
        position: fixed !important;
        
        /* 🚀 HİLELİ MERKEZLEME: translate yalanını bitirip ekranı 4 köşeden 0 ile kitliyoruz,
           margin: auto ile tarayıcıya tam sayılarla milimetrik ortalatıyoruz! */
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: auto !important;
        transform: none !important; /* Bulanıklaştıran transform zincirini kırdık */
        
        width: 90vw !important;
        max-width: 360px !important;
        height: 220px !important;
        max-height: 220px !important;
        
        background: #030303 !important;
        border: 2px solid #00ffff !important; /* Aktifleşince siber neon mavi parlar */
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 100vh rgba(0,0,0,0.9) !important; 
        z-index: 999999999 !important; 
        
        /* Ekran kartına yazıları pürüzsüz işlemesi için verilen siber komutlar */
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
        text-rendering: optimizeLegibility !important;
        backface-visibility: hidden !important;
    }

    #token-room .ts-window.active-tv .ts-h {
        font-size: 15px !important;
        padding: 10px !important;
        background: #0a0a0a !important;
        color: #fff !important;
        border-bottom: 1px solid #00ffff !important;
    }
    #token-room .ts-window.active-tv .ts-b {
        font-size: 24px !important; 
        font-weight: bold !important;
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.5) !important;
    }



  /* =============================================================================
       🎵 MÜZİK KUTUSU VE AMBLEM İMHA ZIRHI
       Müzik butonunu sağ alta çakar, Cemil'in amblemini tamamen perperdeler!
       ============================================================================= */
    #token-room #audio-container {
        position: fixed !important;
        /* 🚀 SAĞ ALTA KİLİTLEME: 
           Sağdan net 12px vererek köşeye dayadık. Alttan 20px vererek bir tık yukarı kaldırdık.
           Böylece parmakla basımı kolaylaştı ve tam o serseri amblemin kafasına bastı! */
        bottom: 20px !important;
        right: 12px !important;
        left: auto !important;
        transform: none !important; /* Eski orta hizalama kodunu iptal ettik */
        
        /* 👑 MUTLAK ÜSTÜNLÜK: Amblemin veya alttaki vitrin sızıntılarının üstünü 
           tamamen kapatması için katman gücünü zirveye mühürledik. */
        z-index: 9999999999 !important; 
        width: auto !important;
    }

    #token-room #music-btn {
        width: 140px !important; /* Boyutunu amblemi tam örtsün diye bir tık genişlettik */
        padding: 8px !important;
        font-size: 11px !important;
        background: #000000 !important; /* Arkasındaki hiçbir şeyi sızdırmayan net siyah taban */
        color: #00ffff !important;
        border: 2px solid #4169E1 !important; /* Siber Kraliyet Mavisi kontur */
        border-radius: 5px !important;
        font-family: monospace !important;
        font-weight: bold !important;
        box-shadow: 0 0 15px rgba(65, 105, 225, 0.3) !important;
    }
///////////////////
/* HTML'deki inatçı style özelliklerini burada SIFIRLIYORUZ */
#close-token-room {
    /* HTML'deki style değerlerini CSS ile dize getiriyoruz */
    padding: 0 !important; 
    box-shadow: none !important;
    text-shadow: none !important;
    border: none !important;
    background: none !important;
}

/* 1. MASAÜSTÜ: Mavi, yatay ve zarif bant */
@media screen and (min-width: 769px) {
    #close-token-room {
        position: fixed !important;
        top: 5px !important;
        right: 15px !important;
        width: 120px !important;
        height: 25px !important;
        background: #4169E1 !important;
        color: #fff !important;
        font-size: 0 !important; /* X işaretini gizle */
        line-height: 25px !important;
        text-align: center !important;
        border-radius: 3px !important;
        border: 1px solid #000 !important;
        cursor: pointer !important;
        z-index: 9999999999 !important;
    }
    #close-token-room::after {
        content: "VİTRİNE DÖN";
        font-size: 12px !important;
        font-family: monospace;
    }
}

/* 2. MOBİL: Orijinal kırmızı çarpı (HTML'e sadık kalarak) */
@media screen and (max-width: 768px) {
    #close-token-room {
        position: fixed !important;
        top: 15px !important;
        right: 15px !important;
        color: #ff3e3e !important;
        font-size: 28px !important;
        font-weight: 900 !important;
        background: rgba(5,5,5,0.9) !important;
        border: 2px solid #ff3e3e !important;
        border-radius: 4px !important;
        padding: 5px 12px !important;
        display: block !important;
    }
}

/* =============================================================================
   🍔 BÖLÜM 10: HAMBURGER MENÜ - ID SIFIRLAMALI ASKERİ HİZALAMA KİLİDİ
   ============================================================================= */
/* 🛡️ 1. GLOBAL KİLİT: Masaüstünde normal şartlarda menü gizli kalır */
#hamburger-menu {
    display: none; 
}

/* 🔒 SAFKAN MOBİL KAFESİ: Masaüstündeki o ters V nizamını koruyan siber kafes */
@media screen and (max-width: 768px) {

    /* 🚨 F5 HORTLAMA BARİKATI & ANA GÖVDE */
    #hamburger-menu[style*="display: block"],
    #hamburger-menu[style*="display:block"] {
        display: grid !important; 
    }

    #hamburger-menu {
        display: none !important; 
        position: fixed !important;
        top: 65px !important; 
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding: 12px !important; 
        margin: 0 auto !important;
        z-index: 99999 !important;
        background: transparent !important;

        /* 📐 TAM STANDART 3'ERLİ MATRİS */
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important; 
        align-content: start !important;
    }

    /* 💥 İÇ SARMALLARI GEÇERSİZ KILMA */
    #hamburger-menu > div,
    #hamburger-menu > div > div {
        display: contents !important; 
    }

    /* 🎯 🚀 NOKTA ATIŞI ID İNFAZ MOTORU:
       HTML'in içindeki o sinsi `margin-left: 170px !important` yalanlarını tek tek ID bazında 
       avlayıp mobilde zorla sıfırlıyoruz. Artık kaçışları İMKANSIZ! */
    #h-team, #h-analysis, #h-news, #h-steps, #h-staking, #h-buy,
    #h-social, #h-contact, #h-help, #h-globalpower, #h-copyright, #h-new-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 🛡️ BUTONLARI STANDARDA BAĞLAMA VE EŞİTLEME KOMUTASI */
    #hamburger-menu .hp-box {
        box-sizing: border-box !important;
        font-size: 9px !important; 
        font-weight: bold !important;
        padding: 10px 4px !important; 
        line-height: 1.2 !important;
        
        /* Bütün butonların boyunu mobilde milimetrik olarak eşitliyoruz */
        min-height: 42px !important; 
        max-height: 42px !important; 
        
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 4px !important;
        white-space: normal !important; 
    }

    /* 👑 ⚡ ZENGİN İÇERİKLİ PENCERELER (DOKUNULMADI - EN STABİL HALİ) */
    .popup-box, 
    #popup-box,
    [class*="popup-window"],
    [id*="popup-window"] {
        position: fixed !important;
        top: 260px !important; 
        left: 4vw !important;
        right: 4vw !important;
        bottom: 20px !important;
        margin: 0 auto !important;
        padding: 15px !important; 
        
        width: 92vw !important; 
        max-width: 380px !important;
        height: auto !important; 
        box-sizing: border-box !important; 
        
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        z-index: 100000000 !important; 
        
        transform: none !important;
        -webkit-font-smoothing: antialiased !important;
    }

    /* ✋ Kapatma Elinin mobil konumu */
    #close-karargah-hand {
        position: fixed !important;
        top: 5px !important;
        right: 15px !important;
        font-size: 42px !important;
        z-index: 999999 !important;
    }
}
/* 🔓 KAFES BİTTİ. GLOBAL CSS DEVAM EDER */


/* =============================================================================
   🛡️ BÖLÜM 11: KAYIT OL & ŞİFRE SIFIRLAMA (MASAÜSTÜ VE MOBİL TAM RESTORASYON)
   ============================================================================= */
#register-interface, 
#sifre-sifirlama-odasi {
    width: 100%;
    box-sizing: border-box;
}

/* Kayıt Ol ekranındaki satırları yan yana mükemmel eşitler */
.input-row {
    display: flex;
    flex-direction: row; /* Masaüstünde yan yana durma emri */
    gap: 15px; /* İki kutu arasındaki kurumsal boşluk */
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Yan yana duran kutuların genişliğini tam eşitler */
.input-group {
    display: flex;
    flex-direction: column;
    flex: 1; /* Ad-Soyad ve E-posta alanlarına alanı yarı yarıya (%50) paylaştırır */
    box-sizing: border-box;
}

.input-group label {
    margin-bottom: 5px;
    font-size: 11px;
    color: #00FF41;
    letter-spacing: 1px;
}

/* Bütün input ve butonların çerçeve içinde kalmasını garantiler */
.matrix-input, 
.matrix-btn {
    width: 100%;
    box-sizing: border-box;
}

/* E-posta ile Kod Gönder butonunu masaüstünde tek satırda tutar */
.input-group > div[style*="display: flex"] {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}
.input-group > div[style*="display: flex"] .matrix-input {
    flex: 1;
}
.input-group > div[style*="display: flex"] .matrix-btn {
    width: auto;
    padding: 0 15px;
    white-space: nowrap;
}


/* -----------------------------------------------------------------------------
   📱 2. KULLANICI PANELİ SAFKAN MOBİL KAFESİ (SADECE TELEFONLAR İÇİN)
   - Masaüstünde yan yana duran o kutuları telefonda zorla alt alta çiviler.
----------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    
    /* Ana form kapsayıcıları mobilde sınırları aşmasın */
    #gate-main-panel {
        display: flex !important;
        flex-direction: column !important;
        width: 95vw !important;
        max-width: 400px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        padding: 15px !important;
        box-sizing: border-box !important;
    }

    /* 🚨 MASAÜSTÜNDEKİ YAN YANA NİZAMI MOBİLDE ALT ALTA İNDİRME MÜHÜRÜ */
    .input-row {
        flex-direction: column !important; /* Yan yana durmayı iptal et, alt alta in! */
        gap: 12px !important;
    }

    .input-group {
        width: 100% !important;
    }

    /* Şifremi unuttum adımlarını mobilde dikine sabitler */
    #reset-step-1, 
    #reset-step-2 {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .matrix-input, 
    .matrix-btn {
        margin-bottom: 12px !important;
    }

    /* E-posta ve Kod butonunun mobilde de yan yana kalması için koruma */
    .input-group > div[style*="display: flex"],
    #login-interface > div[style*="display: flex"] {
        flex-direction: row !important;
    }
    .input-group > div[style*="display: flex"] .matrix-btn,
    #login-interface > div[style*="display: flex"] .matrix-btn {
        margin-bottom: 0 !important;
    }
}
/* 🚀 CHROME MOBİL ÖLÜ BÖLGE (DEADZONE) KURTARMA MÜHÜRÜ */
#register-interface .gate-footer {
    padding-bottom: 40px !important; /* Butonu Chrome'un görünmez alt barından yukarı çeker */
    position: relative !important;
    z-index: 999999 !important; /* Tıklanabilirliği en öne zorlar */
    pointer-events: auto !important; /* Dokunmatik komutların emilimini engeller */
}
////////////////////////////////////////////////////
 #tuccar-modal-content {
        width: 94% !important; /* BAŞARILI OLAN FORM DARALTMA AYARIN KORUNDU */
        height: 100vh !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        margin: 0 auto !important;
        display: block !important;
        overflow-y: auto !important; /* İŞTE BU! SADECE EN DIŞTAKİ KONTÜR ÇUBUĞU KALACAK */
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

/* =======================================================
   🧨 SIĞINAK DELİCİ MOTOR: GİZLİ SINIRLARI PARÇALAMA
======================================================= */

/* 1. KÖK KAPSAYICI (Tüm kelepçeleri kırıyoruz) */
#m-terminal-root {
    display: block !important;
    height: auto !important;
    max-height: none !important; /* GİZLİ BOY SINIRINI İPTAL ET */
    overflow: visible !important; /* TAŞANLARI GİZLEMEYİ YASAKLA */
    margin: 0 !important;
    padding: 0 !important;
}

/* =======================================================
   🧨 SON RÖTUŞ: KUTULARI YAKINLAŞTIRMA & KARA DELİĞİ SİLME
======================================================= */

/* 2. PENCERELERİN YUVASI (Alt boşluk tıraşlandı) */
#m-panels-container {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    /* min-height: 250vh !important; --> SİLİNDİ: Devasa uzamaya artık gerek yok */
    max-height: none !important; 
    overflow: visible !important; 
    padding: 0 0 50px 0 !important; /* 1000px'lik kara delik 50px'e düşürüldü */
    margin: 0 !important;
}

/* 3. HER BİR PENCERE (İki tık yakınlaştırma - Öpüşmeye ramak kala) */
.nizami-panel {
    display: block !important; 
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 450px !important; 
    max-height: none !important; 
    margin: 0 0 8px 0 !important; /* İŞTE BURASI: 50px boşluk, incecik bir çizgiye (8px) çekildi */
    padding-bottom: 15px !important;
    box-sizing: border-box !important;
    float: none !important;
    overflow: visible !important; 
    opacity: 1 !important; 
    visibility: visible !important;
}