
    /* =========================================
       MASAÜSTÜ İÇİN GİZLEME (BU KISIM EKLENDİ)
       ========================================= */
    @media (min-width: 992px) {
        #nazarBottomNav, 
        #nazarRestoreFab, 
        .nav-toggle-handle-top {
            display: none !important;
        }
    }

    /* =========================================
       MOBİL İÇİN TASARIM (ESKİ KODLARIN)
       ========================================= */
    @media (max-width: 991px) {
        /* Orijinal mobil menüleri gizle */
        .mobile-nav, .footer-mobile { display: none !important; }

        /* --- ANA BAR DÜZENİ --- */
        .nazar-bottom-nav {
            position: fixed; bottom: 0; left: 0; width: 100%;
            height: 75px; 
            background:#050e13; 
            box-shadow: 0 -2px 10px rgba(13, 192, 252, 0.86);
            border-top: 1px solid rgba(255, 255, 255, 0.76);
            z-index: 99999;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            padding-bottom: env(safe-area-inset-bottom);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        .nazar-bottom-nav.nav-closed { transform: translateY(120%); }

        /* --- ÜSTTEKİ OK ALANI --- */
        .nav-toggle-handle-top {
            position: absolute;
            top: -60px; 
            left: 50%;
            transform: translateX(-50%); 
            width: 60px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; z-index: 20;
            animation: bounceArrow 2s infinite ease-in-out;
        }

        /* --- OK İŞARETİ (MAVİ) --- */
        .nav-toggle-handle-top::after {
            content: ''; display: block;
            width: 14px; height: 14px;
            border-right: 4px solid #0dc1fc; 
            border-bottom: 4px solid #0dc1fc; 
            transform: rotate(45deg); 
            transition: transform 0.4s ease-in-out, margin-top 0.4s ease;
            filter: drop-shadow(0 2px 4px rgba(13, 193, 252, 0.3));
        }

        /* OK YUKARI DÖNME EFEKTİ */
        .nav-toggle-handle-top.arrow-up::after {
            transform: rotate(225deg); 
            margin-top: 8px;
        }
        
        .nav-toggle-handle-top:hover { animation-play-state: paused; }
        .nav-toggle-handle-top.arrow-up { animation: none; }

        @keyframes bounceArrow {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(5px); }
        }

        /* --- İÇERİK DÜZENİ --- */
        .nav-container { display: flex; justify-content: space-around; align-items: center; height: 100%; }

        .nav-item {
            flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-decoration: none; 
            color:rgb(255, 255, 255) !important; 
            transition: 0.3s;
        }
        .nav-item i { font-size: 20px; margin-bottom: 4px; transition: 0.3s; }
        .nav-item span { font-size: 11px; font-weight: 600; }

        .nav-item.active { color: #0dc1fc !important; }
        .nav-item.active i { transform: translateY(-3px); text-shadow: 0 5px 10px rgba(13, 193, 252, 0.3); }

        /* --- ORTA BUTON --- */
        .center-wrapper { position: relative; bottom: 25px; }
        .center-btn-outer {
            width: 60px; height: 60px;
            background:rgba(255, 255, 255, 0); 
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
            padding: 5px;
        }
        .center-btn-inner {
            width: 100%; height: 100%;
            background: linear-gradient(135deg,rgba(13, 192, 252, 0), #0a9bd1); 
            border: none; border-radius: 50%;
            color: #fff; font-size: 24px;
            box-shadow: 0 4px 15px rgba(13, 193, 252, 0.4);
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s;
        }
        .center-btn-inner:active { transform: scale(0.95); }

        /* --- FAB BUTONU --- */
        .nazar-fab {
            position: fixed; bottom: 25px; left: 20px;
            width: 50px; height: 50px;
            background: #0dc1fc;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            z-index: 99998; cursor: pointer;
            transform: scale(0) rotate(-180deg); 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 20px rgba(13, 193, 252, 0.5);
        }
        .nazar-fab.visible { transform: scale(1) rotate(0); }

        body { padding-bottom: 80px !important; transition: padding 0.4s; }
        body.nav-is-closed { padding-bottom: 0 !important; }
    }

    .pro-toast-container {
        position: fixed; top: 20px; right: 20px; z-index: 999999;
        display: flex; flex-direction: column; gap: 10px;
        pointer-events: none; /* Arkadaki butonlara tıklanabilsin */
    }
    .pro-toast {
        background: #1e2329;
        border-left: 4px solid #27c96d; /* Yeşil Çizgi */
        color: #fff;
        padding: 16px 20px;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        display: flex; align-items: center; gap: 15px;
        min-width: 300px;
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        pointer-events: auto;
        font-family: 'Inter', sans-serif;
    }
    .pro-toast.show { transform: translateX(0); }
    .pro-toast.error { border-left-color: #ef4444; } /* Hata ise kırmızı */
    
    .pt-icon { font-size: 20px; color: #27c96d; }
    .pro-toast.error .pt-icon { color: #ef4444; }
    
    .pt-content h6 { margin: 0; font-size: 14px; font-weight: 700; }
    .pt-content p { margin: 2px 0 0 0; font-size: 12px; color: #8b949e; }
    
    .pt-close { margin-left: auto; cursor: pointer; color: #555; font-size: 14px; }
    .pt-close:hover { color: #fff; }

    /* --- SİZİN GÖNDERDİĞİNİZ CSS (AYNEN KORUNDU) --- */
    :root {
        --h-bg: rgba(13, 17, 23, 0.95);
        --h-border: rgba(255,255,255,0.08);
        --h-accent: #238636;
        --neon-green: #00e701;
        --ticker-bg: #010409;
    }

    /* WRAPPER */
    .header-wrapper {
        position: fixed; top: 0; left: 0; width: 100%;
        z-index: 1000;
        background: var(--h-bg);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--h-border);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    /* CONTAINER */
    .header-container {
        max-width: 1400px; margin: 0 auto; padding: 0 20px;
        position: relative;
    }

    /* 1. TICKER */
    .ticker-wrap {
        height: 32px;
        background: var(--ticker-bg);
        border-bottom: 1px solid var(--h-border);
        display: flex; align-items: center;
        border-radius: 0 0 8px 8px;
        overflow: hidden; margin-bottom: 5px;
    }
    .ticker-badge {
        background: var(--h-accent); color: #fff;
        height: 100%; padding: 0 15px;
        display: flex; align-items: center; gap: 6px;
        font-size: 10px; font-weight: 800; letter-spacing: 1px;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5); z-index: 2;
    }
    .ticker-viewport {
        flex: 1; overflow: hidden; position: relative; height: 100%;
        display: flex; align-items: center;
        mask-image: linear-gradient(to right, transparent, black 20px, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black 95%, transparent);
    }
    .ticker-track {
        display: flex; align-items: center; gap: 50px;
        animation: scrollNew 35s linear infinite; white-space: nowrap; padding-left: 20px;
    }
    .t-item {
        font-size: 11px; font-weight: 600; color: #8b949e;
        display: flex; align-items: center; gap: 6px;
    }
    .t-item b { color: #fff; }
    .t-item i { color: var(--neon-green); }
    @keyframes scrollNew { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

    /* 2. MAIN NAVBAR */
    .main-nav {
        height: 60px;
        display: flex; align-items: center; justify-content: space-between;
    }

    /* LOGO */
    .logo-area { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; text-decoration: none; }
    .logo-area i { color: var(--h-accent); }

    /* MENÜ */
    .nav-links { display: flex; align-items: center; gap: 20px; height: 100%; }
    
    .nav-link-item {
        height: 100%; display: flex; align-items: center; gap: 6px;
        font-size: 12px; font-weight: 700; color: #8b949e; text-decoration: none;
        text-transform: uppercase; transition: 0.2s; position: relative;
    }
    .nav-link-item i { font-size: 16px; margin-bottom: 2px; transition: 0.2s; }
    
    .nav-link-item:hover, .nav-link-item.active { color: #fff; }
    .nav-link-item.active::after {
        content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
        background: var(--h-accent); border-radius: 3px 3px 0 0;
        box-shadow: 0 -2px 10px rgba(35, 134, 54, 0.5);
    }

    .nav-link-item.live:hover i { color: #ff0055; }
    .nav-link-item.slot:hover i { color: #00e701; }
    .nav-link-item.sport:hover i { color: #00ccff; }

    /* SAĞ TARAF */
    .user-actions { display: flex; align-items: center; gap: 12px; }

    /* DÜZELTME: Buton Stilleri */
    .btn-login-s { 
        font-size: 12px; font-weight: 700; color: #fff; text-decoration: none; transition: 0.3s; 
        background: transparent; border: none; cursor: pointer; padding: 0;
    }
    .btn-login-s:hover { color: var(--h-accent); }

    .btn-reg-s {
        background: var(--h-accent); color: #fff; font-size: 12px; font-weight: 800;
        padding: 8px 20px; border-radius: 4px; text-decoration: none; transition: 0.3s;
        box-shadow: 0 0 10px rgba(35, 134, 54, 0.3); border: none; cursor: pointer;
    }
    .btn-reg-s:hover { background: #2ea043; transform: translateY(-1px); color: #fff; }

    .wallet-compact {
        background: #0d1117; border: 1px solid #30363d; border-radius: 6px;
        padding: 4px 4px 4px 12px; display: flex; align-items: center; gap: 10px; cursor: pointer;
        transition: 0.3s;
    }
    .wallet-compact:hover { border-color: var(--h-accent); }
    .wc-bal { font-family: 'Rajdhani'; font-weight: 700; font-size: 15px; color: #fff; }
    .wc-btn { width: 28px; height: 28px; background: var(--h-accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; }

    @media (max-width: 991px) {
        .nav-links, .ticker-wrap { display: none; }
    }
    /* =============================================================
   🔥 YENİ GİRİŞ & KAYIT TASARIMI (MODERN NEON)
   ============================================================= */

/* 1. HEADER BUTONLARI */
.mh-guest {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Giriş Butonu (Cam Efektli & Çizgili) */
.mh-btn-login {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex; align-items: center; gap: 8px;
}

.mh-btn-login:hover {
    border-color: #00e701;
    color: #00e701 !important;
    box-shadow: 0 0 15px rgba(0, 231, 1, 0.2);
    transform: translateY(-2px);
    background: rgba(0, 231, 1, 0.05);
}

/* Kayıt Butonu (Neon Dolgulu & Parlak) */
.mh-btn-register {
    background: linear-gradient(135deg, #00e701 0%, #00a001 100%);
    color: #000 !important;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 231, 1, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; align-items: center; gap: 8px;
    position: relative; overflow: hidden;
}

/* Kayıt Butonu Işık Efekti */
.mh-btn-register::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: 0.5s;
}

.mh-btn-register:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 231, 1, 0.8);
    color: #000 !important;
}
.mh-btn-register:hover::before { left: 100%; }


/* 2. MODAL (PENCERE) TASARIMI (Gelen _header_modals yapısına uygun) */
.pro-modal-content {
    background: #161b22 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8) !important;
    overflow: hidden;
}

.pro-header {
    background: #0d1117 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 20px 25px !important;
    display: flex; justify-content: space-between; align-items: center;
}

.pro-title {
    color: #fff !important; font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: 20px; margin: 0;
    display: flex; align-items: center; gap: 10px;
}
.pro-title i { color: #00e701; text-shadow: 0 0 10px rgba(0, 231, 1, 0.5); }

.pro-close {
    background: transparent; border: none; color: #666; font-size: 28px; transition: 0.3s;
}
.pro-close:hover { color: #fff; transform: rotate(90deg); }

/* Modal Banner Alanı (Mavi yerine Siyah/Yeşil) */
.pro-banner-blue {
    background: linear-gradient(135deg, #0f1216 0%, #1c2129 100%) !important;
    padding: 25px !important; position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.banner-text h4 { color: #fff; font-weight: 800; font-family: 'Rajdhani'; font-size: 26px; line-height: 1.1; margin: 0; }
.banner-text h4 span { color: #00e701; }
.banner-text p { color: #888; font-size: 13px; margin-top: 5px; }
.banner-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 50px; color: rgba(255,255,255,0.03); }

/* Form Alanları */
.pro-body { padding: 30px !important; background: #161b22; }
.pro-label { color: #aaa; font-size: 12px; font-weight: 700; margin-bottom: 8px; display: block; text-transform: uppercase; }

.pro-input {
    background: #0d1117 !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 14px 15px !important;
    font-size: 14px !important;
    width: 100%; transition: 0.3s;
}
.pro-input:focus {
    border-color: #00e701 !important;
    box-shadow: 0 0 15px rgba(0, 231, 1, 0.2) !important;
    outline: none;
}

/* Modal İçi Buton */
.pro-btn-blue {
    background: #00e701 !important;
    color: #000 !important;
    width: 100%; padding: 14px; border-radius: 8px; border: none;
    font-weight: 800; font-family: 'Rajdhani'; font-size: 16px; letter-spacing: 1px;
    margin-top: 10px; cursor: pointer; transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 231, 1, 0.3);
}
.pro-btn-blue:hover {
    background: #00ff01 !important;
    box-shadow: 0 10px 30px rgba(0, 231, 1, 0.5);
    transform: translateY(-2px);
}

/* Alt Linkler */
.pro-footer { text-align: center; margin-top: 20px; color: #666; font-size: 13px; }
.pro-link { color: #00e701; font-weight: 700; text-decoration: none; margin-left: 5px; }
.pro-link:hover { text-decoration: underline; color: #fff; }

    /* Mobil Menü Stili (Sizin koddan) */
    #mobileLeftSidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #161b22; z-index: 9999; transition: 0.3s; box-shadow: 5px 0 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; }
    #mobileLeftSidebar.active { left: 0; }
    .sb-header { padding: 20px; background: #0d1117; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
    .sb-logo-area { font-family: 'Rajdhani'; font-weight: 800; font-size: 24px; color: #fff; }
    .sb-logo-area i { color: #238636; }
    .sb-close-btn { background: none; border: none; color: #fff; font-size: 20px; }
    .sb-content { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
    .sb-link { color: #8b949e; text-decoration: none; font-weight: 600; font-size: 14px; padding: 10px; border-radius: 6px; display: flex; align-items: center; gap: 10px; }
    .sb-link:hover, .sb-link.active { background: rgba(255,255,255,0.05); color: #fff; }
    .sb-link i { width: 20px; text-align: center; }
    .mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 9998; display: none; }
    .mobile-overlay.active { display: block; }

        .guest-btn-group { display: flex; align-items: center; gap: 10px; }
        .btn-gamdom-login { background-color: #1a1d21; color: #e1e1e1 !important; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px; padding: 9px 20px; border-radius: 8px; border: none; transition: 0.2s; text-decoration: none; cursor: pointer; white-space: nowrap; }
        .btn-gamdom-login:hover { background-color: #2a2d32; color: #fff !important; }
        .btn-gamdom-register { background-color: #00e701; color: #000 !important; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 13px; padding: 9px 20px; border-radius: 8px; border: none; transition: 0.2s; text-decoration: none; cursor: pointer; box-shadow: 0 0 15px rgba(0, 231, 1, 0.2); white-space: nowrap; }
        .btn-gamdom-register:hover { background-color: #00ff01; transform: translateY(-1px); }
        @media (max-width: 576px) { .guest-btn-group { gap: 6px; } .btn-gamdom-login { padding: 6px 12px; font-size: 11px; height: 32px; border-radius: 6px; } .btn-gamdom-register { padding: 6px 12px; font-size: 11px; height: 32px; border-radius: 6px; } }
   

        /* --- PRO STİL TANIMLARI --- */
        :root {
            --c-bg-dark: #0d1117;       /* Ana Zemin */
            --c-surface: #161b22;       /* Kart Zemini */
            --c-border: #30363d;        /* Çizgiler */
            --c-text-main: #c9d1d9;     /* Ana Yazı */
            --c-text-mute: #8b949e;     /* Sönük Yazı */
            --c-accent: #238636;        /* Yeşil Buton */
            --c-accent-h: #2ea043;      /* Hover Yeşil */
        }

        .gd-header-actions {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* 1. DUYURU (BELL) BUTONU - Minimalist */
        .gd-icon-btn {
            width: 36px; height: 36px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 6px;
            color: var(--c-text-mute);
            transition: 0.2s;
            background: transparent;
            border: 1px solid transparent;
            cursor: pointer; position: relative;
        }
        .gd-icon-btn:hover { background: var(--c-surface); color: #fff; border-color: var(--c-border); }
        .gd-badge-dot {
            position: absolute; top: 8px; right: 8px; width: 6px; height: 6px;
            background: #da3633; border-radius: 50%;
        }

        /* 2. CÜZDAN YAPISI (DROPDOWN) */
        .gd-wallet-group { position: relative; }

        /* Ana Tetikleyici Buton (Bakiye) */
        .gd-wallet-trigger {
            display: flex; align-items: center;
            background: var(--c-surface);
            border: 1px solid var(--c-border);
            border-radius: 6px;
            height: 36px; /* Kompakt Yükseklik */
            cursor: pointer; transition: 0.2s;
            overflow: hidden;
        }
        .gd-wallet-trigger:hover { border-color: #8b949e; }

        /* Sol: Para Birimi İkonu */
        .gd-w-icon {
            width: 32px; height: 100%; display: flex; align-items: center; justify-content: center;
            background: rgba(255,255,255,0.03); border-right: 1px solid var(--c-border);
            color: #e6edf3; font-size: 14px;
        }
        
        /* Orta: Bakiye Yazısı */
        .gd-w-bal {
            padding: 0 12px; font-weight: 700; font-size: 13px; color: #fff;
            font-family: 'Rajdhani', sans-serif; letter-spacing: 0.5px;
        }

        /* Sağ: Ok İşareti */
        .gd-w-arrow {
            padding-right: 10px; font-size: 10px; color: var(--c-text-mute);
            display: flex; align-items: center;
        }

        /* En Sağ: Yeşil Yatırım Butonu (Ayrı) */
        .gd-deposit-mini {
            height: 36px; padding: 0 12px; margin-left: 8px;
            background: var(--c-accent); color: #fff;
            border-radius: 6px; border: none;
            font-size: 12px; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; gap: 6px;
            transition: 0.2s;
        }
        .gd-deposit-mini:hover { background: var(--c-accent-h); }

        /* --- ÖZEL AÇILIR CÜZDAN KUTUSU (CUSTOM DROPDOWN) --- */
        .gd-wallet-dropdown {
            position: absolute; top: 100%; left: 0;
            margin-top: 8px; width: 280px;
            background: #161b22;
            border: 1px solid var(--c-border);
            border-radius: 8px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.8);
            z-index: 1050;
            display: none; /* JS ile açılacak */
            animation: slideDown 0.2s ease-out;
        }
        .gd-wallet-dropdown.active { display: block; }
        
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .gd-wd-header {
            padding: 12px 15px; border-bottom: 1px solid var(--c-border);
            font-size: 11px; font-weight: 700; color: var(--c-text-mute); text-transform: uppercase;
            background: rgba(0,0,0,0.2);
        }
        
        .gd-wd-body { padding: 10px; }
        
        .gd-wd-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px; border-radius: 6px;
            font-size: 13px; color: var(--c-text-main);
        }
        .gd-wd-row:hover { background: rgba(255,255,255,0.03); }
        .gd-wd-row span:last-child { font-family: 'Rajdhani'; font-weight: 700; color: #fff; }
        
        .val-green { color: #2ea043 !important; }
        .val-blue { color: #58a6ff !important; }
        .val-gray { color: #8b949e !important; }

        /* 3. PROFİL ALANI */
        .gd-profile-pill {
            display: flex; align-items: center; gap: 10px;
            padding: 4px; padding-right: 12px;
            border-radius: 50px; /* Hap şeklinde */
            cursor: pointer; transition: 0.2s;
            border: 1px solid transparent;
        }
        .gd-profile-pill:hover { background: var(--c-surface); border-color: var(--c-border); }

        .gd-p-avatar {
            width: 32px; height: 32px; border-radius: 50%;
            object-fit: cover; border: 2px solid var(--c-surface);
            box-shadow: 0 0 0 1px var(--c-border);
        }
        .gd-p-name {
            font-size: 13px; font-weight: 600; color: #e6edf3;
            max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
        }

        /* CUSTOM DROPDOWN (PROFIL) */
        .gd-custom-menu {
            background: #161b22 !important; border: 1px solid #30363d !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
            margin-top: 10px !important; min-width: 200px;
            padding: 6px !important; border-radius: 8px !important;
        }
        .gd-c-item {
            color: #c9d1d9 !important; font-size: 13px !important; font-weight: 500 !important;
            padding: 8px 12px !important; border-radius: 4px !important; display: flex !important; align-items: center !important; gap: 10px !important;
            transition: 0.1s !important;
        }
        .gd-c-item:hover { background: #238636 !important; color: #fff !important; }
        .gd-c-div { border-top: 1px solid #30363d !important; margin: 4px 0 !important; }

        /* MOBİL */
        @media (max-width: 768px) {
            .gd-p-name { display: none; } /* İsim gizle */
            .gd-profile-pill { padding-right: 0; } /* Padding düzelt */
            .gd-icon-btn { display: none; } /* Bildirim gizle (yer yoksa) */
            .gd-deposit-mini span { display: none; } /* "Cüzdan" yazısını gizle, sadece ikon kalsın */
            .gd-deposit-mini { width: 36px; padding: 0; justify-content: center; }
        }
        
        /* =========================================
   HEADER ALTINA KAYMAYI ENGELLEME DÜZELTMESİ
   ========================================= */

/* 1. Masaüstü için boşluk (Header yüksekliği kadar) */
main {
    padding-top: 140px !important; /* Header yaklaşık 95px, biz 100px verip garantiye alıyoruz */
}

/* 2. Mobil için boşluk (Mobil header daha kısa olduğu için) */
@media (max-width: 991px) {
    main {
        padding-top: 70px !important; /* Mobil header yaklaşık 60px */
    }
}