/* ==========================================================================
   EGAME.AZ LAUNCHER - MASTER STYLESHEET
   ========================================================================== */

/* --- 1. DƏYİŞƏNLƏR VƏ QLOBAL AYARLAR --- */
:root {
  --bg-deep: #050507;            
  --bg-panel: #0f0f13;          
  --bg-sidebar: #0a0a0e;        
  --accent: #ffcc00;            
  --accent-glow: rgba(255, 204, 0, 0.4);
  --text-main: #ffffff;
  --text-muted: #94949e;
  --border-color: rgba(255, 255, 255, 0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Azerbaijani Character Fix: 
   Adding 'Arial', 'Helvetica', 'sans-serif' as strict fallbacks. 
   These system fonts have 100% perfect coverage for AZ characters (ə, ğ, ı, ö, ş, ü).
*/
* { 
  box-sizing: border-box; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale; /* Ensures smooth rendering on macOS */
  outline: none; 
}

body {
  margin: 0; 
  padding: 0; 
  /* The font stack prioritizes Inter, but strictly falls back to safe fonts for AZ chars */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  background-color: var(--bg-deep); 
  color: var(--text-main);
  height: 100vh; 
  overflow: hidden; 
  user-select: none; 
  border: 1px solid var(--border-color); 
  border-radius: 12px;
}

/* Scrollbar Customization */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ==========================================================================
   2. HEADER VƏ PƏNCƏRƏ KONTROLLARI
   ========================================================================== */
.app-header {
  height: 50px; background: var(--bg-sidebar); display: flex;
  justify-content: space-between; align-items: center; padding: 0 20px;
  border-bottom: 1px solid var(--border-color); z-index: 1000;
}

.logo-text { font-weight: 800; font-size: 18px; letter-spacing: 1.5px; cursor: default; }
.logo-text .accent { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }
.header-right { display: flex; align-items: center; gap: 20px; }

/* Dil Seçici */
.lang-dropdown {
  background-color: #1a1a20; color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px; padding: 6px 12px; font-size: 13px; font-weight: 600;
  cursor: pointer; appearance: none; -webkit-appearance: none; transition: var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; padding-right: 30px;
}
.lang-dropdown:hover { background-color: #25252d; border-color: var(--accent); box-shadow: 0 0 10px rgba(255, 204, 0, 0.1); }
.lang-dropdown option { background-color: #1a1a20; color: #ffffff; padding: 10px; }

/* Pəncərə Düymələri */
.window-actions { display: flex; gap: 2px; }
.win-btn {
  background: transparent; border: none; width: 38px; height: 38px; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  border-radius: 4px; transition: var(--transition);
}
.win-btn .material-icons { font-size: 18px; }
.win-btn:hover { background: rgba(255, 255, 255, 0.07); }
.close-btn:hover { background: #e81123 !important; color: white; }

/* ==========================================================================
   3. ƏSAS LAYOUT VƏ SİDEBAR
   ========================================================================== */
.main-layout { display: flex; height: calc(100vh - 50px); transition: filter 0.3s ease; }

.sidebar {
  width: 250px; background: var(--bg-sidebar); display: flex; flex-direction: column;
  justify-content: space-between; padding: 25px 0; border-right: 1px solid var(--border-color);
}

.nav-item {
  padding: 12px 25px; display: flex; align-items: center; gap: 15px; cursor: pointer;
  color: var(--text-muted); transition: var(--transition); font-weight: 600; position: relative;
}
.nav-item .material-icons { font-size: 20px; transition: var(--transition); }
.nav-item:hover { color: #fff; background: rgba(255, 255, 255, 0.03); }
.nav-item.active { color: var(--accent); background: linear-gradient(90deg, rgba(255, 204, 0, 0.05) 0%, transparent 100%); }
.nav-item.active::before {
  content: ''; position: absolute; left: 0; height: 60%; width: 3px;
  background: var(--accent); box-shadow: 0 0 15px var(--accent);
}

.sidebar-footer { padding: 20px 25px; border-top: 1px solid var(--border-color); display: flex; flex-direction: column; gap: 10px; }
.user-info-box { display: flex; align-items: center; gap: 10px; }
.status-indicator { width: 8px; height: 8px; border-radius: 50%; }
.status-indicator.online { background: #00ff88; box-shadow: 0 0 8px #00ff88; }
.status-indicator.offline { background: #555; }
.version-tag { font-size: 10px; color: #444; font-weight: 800; }

/* ==========================================================================
   4. MƏZMUN (CONTENT) VƏ KARTLAR
   ========================================================================== */
.content-wrapper { flex: 1; padding: 35px; overflow-y: auto; background: radial-gradient(circle at 0% 0%, #121217 0%, #050507 100%); }
.page-content { animation: fadeIn 0.4s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
 
/* --- HERO BANNER & SLIDER DİZAYNI --- */
.hero-banner {
  height: 340px;
  background: linear-gradient(0deg, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.1) 80%), url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1000');
  background-size: cover; background-position: center; border-radius: 20px;
  display: flex; align-items: flex-end; padding: 50px; margin-bottom: 35px;
  position: relative; overflow: hidden; border: 0px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: background-image 0.5s ease;
}

.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-content h1 { font-size: 42px; margin: 12px 0; line-height: 1.1; font-weight: 900; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

.badge {
  background: var(--accent); color: #000; padding: 5px 12px; border-radius: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}

/* Slider Düymələri (Sağ/Sol) */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5); color: white; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: var(--transition); backdrop-filter: blur(5px);
}
.slider-btn:hover { background: var(--accent); color: black; border-color: var(--accent); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Slider Nöqtələri (Indicators) */
.slider-indicators {
  position: absolute; bottom: 20px; right: 40px; display: flex; gap: 8px; z-index: 10;
}
.slider-indicators .dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.3);
  cursor: pointer; transition: var(--transition);
}
.slider-indicators .dot.active { background: var(--accent); transform: scale(1.3); box-shadow: 0 0 10px var(--accent-glow); }

/* --- DÜYMƏLƏR (BUTTONS) --- */
.hero-actions { display: flex; gap: 15px; margin-top: 25px; }

.primary-btn {
  background: var(--accent); color: #000; border: none; padding: 15px 40px;
  font-size: 14px; font-weight: 800; border-radius: 8px; cursor: pointer;
  transition: var(--transition); box-shadow: 0 5px 20px rgba(255, 204, 0, 0.25);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.primary-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-glow); }
.primary-btn:disabled { background: #555; color: #222; box-shadow: none; cursor: not-allowed; }

.secondary-btn {
  background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 35px; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.secondary-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); }

/* --- MƏLUMAT KARTLARI --- */
.info-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 25px; }
.info-card {
  background: rgba(15, 15, 19, 0.6); backdrop-filter: blur(12px); border: 1px solid var(--border-color);
  border-radius: 16px; padding: 25px; transition: var(--transition);
}
.info-card:hover { border-color: rgba(255, 255, 255, 0.1); }
.info-card h3 { margin: 0 0 20px 0; font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.loading-text { color: var(--text-muted); font-style: italic; font-size: 13px; }


/* ==========================================================================
   5. OYUNLAR QALEREYASI (LIST VIEW - ALT ALTA)
   ========================================================================== */
.games-list {
  display: flex; flex-direction: column; gap: 15px; padding-bottom: 30px;
}

.game-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color);
  border-radius: 12px; overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: row; align-items: center; height: 120px; cursor: pointer;
}

.game-card:hover {
  background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4); transform: translateX(5px);
}

.game-cover {
  width: 220px; height: 100%; background-size: cover; background-position: center;
  border-right: 1px solid var(--border-color);
}

.game-info {
  padding: 0 25px; display: flex; flex: 1; justify-content: space-between; align-items: center;
}

.game-info h4 { margin: 0; font-size: 18px; font-weight: 800; color: var(--text-main); }
.game-info p { color: var(--text-muted); font-size: 13px; margin: 5px 0 0 0; }

.mini-launch-btn {
  background: var(--accent); color: #000; border: none; padding: 10px 25px;
  border-radius: 6px; font-weight: 800; cursor: pointer; font-size: 12px; transition: var(--transition);
}
.mini-launch-btn:hover { background: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); }

/* ==========================================================================
   6. AUTHENTICATION (GİRİŞ VƏ QEYDİYYAT)
   ========================================================================== */
.auth-wrapper {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(17,17,22,0.95) 0%, rgba(5,5,7,0.98) 100%);
  backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center;
  animation: authFadeIn 0.5s ease;
}
@keyframes authFadeIn { from { opacity: 0; backdrop-filter: blur(0px); } to { opacity: 1; backdrop-filter: blur(8px); } }

.auth-container { width: 400px; text-align: center; }
.auth-logo { margin-bottom: 35px; transform: scale(1.6); }

.auth-box {
  background: rgba(25, 25, 30, 0.5); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 45px 40px; border-radius: 24px; box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}
.auth-box h2 { margin-top: 0; margin-bottom: 30px; font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }

.input-group {
  background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px;
  padding: 14px 18px; display: flex; align-items: center; gap: 15px; margin-bottom: 16px; transition: var(--transition);
}
.input-group:focus-within { border-color: var(--accent); background: rgba(255, 204, 0, 0.03); box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1); }
.input-group span { color: var(--text-muted); font-size: 22px; }

/* Input fields must have explicit font-family defined so they 
   don't fall back to browser defaults that might mess up AZ chars.
*/
.input-group input { 
  background: transparent; 
  border: none; 
  color: white; 
  width: 100%; 
  font-size: 15px; 
  font-weight: 500; 
  font-family: inherit; /* Inherits the safe font stack from body */
}
.input-group input::placeholder { color: #666; }

/* Şifrəni Unutdum Linki */
.auth-helper { text-align: right; margin-top: -8px; margin-bottom: 25px; padding: 0 5px; }
.auth-helper a { color: var(--text-muted); font-size: 13px; text-decoration: none; font-weight: 600; transition: var(--transition); }
.auth-helper a:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }
.full-btn { width: 100%; padding: 16px; font-size: 15px; }
.auth-switch { margin-top: 25px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--accent); text-decoration: none; font-weight: 700; margin-left: 5px; }
.auth-switch a:hover { text-decoration: underline; }

/* ==========================================================================
   7. MODALS (YÜKLƏMƏ MENECERİ VƏ BİLDİRİŞLƏR)
   ========================================================================== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.85); 
  backdrop-filter: blur(8px); z-index: 10000; display: flex; align-items: center; justify-content: center;
  animation: authFadeIn 0.3s ease;
}

.modal-box {
  background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 20px; 
  padding: 35px 40px; width: 480px; text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,0.9);
}

.path-selector { display: flex; gap: 12px; margin-top: 15px; }
.path-selector input {
  flex: 1; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.15);
  color: #ccc; padding: 12px 15px; border-radius: 8px; font-family: 'Consolas', monospace; font-size: 13px;
  cursor: text;
}

/* --- YÜKLƏMƏ (PROGRESS) BAR DİZAYNI --- */
.progress-track {
    background: rgba(0, 0, 0, 0.6); border: 1px solid var(--border-color);
    border-radius: 8px; height: 14px; width: 100%; overflow: hidden;
    position: relative; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.progress-fill {
    background: var(--accent); height: 100%; width: 0%; border-radius: 8px;
    transition: width 0.4s ease; box-shadow: 0 0 15px var(--accent-glow); position: relative;
}

.progress-fill::after {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ==========================================================================
   8. CUSTOM ALERT / DIALOG DİZAYNI (YENİ)
   ========================================================================== */
#custom-dialog .modal-box {
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

#dialog-icon-container {
    animation: floatIcon 2s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}











/* --- Sidebar User Card --- */
.sidebar-footer {
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.sidebar-user-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 12px;
    transition: 0.3s ease;
}

.sidebar-user-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    background: rgba(255,255,255,0.05);
}

.user-card-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.user-card-avatar {
    position: relative;
    width: 42px;
    height: 42px;
}

.user-card-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.user-card-avatar .status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border: 2px solid #0a0a0a;
}

.user-card-info {
    display: flex;
    flex-direction: column;
}

.user-card-name {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.user-card-title {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* XP Bar */
.xp-bar-container {
    margin-bottom: 10px;
}

.xp-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 600;
}

.xp-progress {
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #ffaa00 100%);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    transition: width 0.5s ease;
}

/* Balance */
.user-card-balance {
    display: flex;
    justify-content: space-between;
    background: rgba(0,0,0,0.2);
    padding: 8px;
    border-radius: 8px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 800;
    color: #ffd700;
}

.balance-item .material-icons { font-size: 16px; }
.balance-item small { font-size: 9px; opacity: 0.6; }
.balance-item.bonus { color: #00ff88; font-size: 11px; }

.version-tag {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #333;
    margin-top: 12px;
    font-weight: 600;
}









/* ==========================================
   GLOBAL TOAST NOTIFICATIONS
   ========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000; /* Ən üstdə olsun */
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none; /* Kliklərin alt səhifəyə keçməsinə icazə ver */
}

.eg-toast {
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(10,10,10,0.95) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    pointer-events: auto; /* Bildirişin özünə klikləmək olsun */
    transform: translateX(120%);
    opacity: 0;
    animation: slideInRight 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.eg-toast:hover {
    transform: scale(1.02) translateX(0);
    box-shadow: 0 10px 40px rgba(255,215,0,0.15);
}

.eg-toast.toast-out {
    animation: slideOutRight 0.4s forwards;
}

.eg-toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eg-toast-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.eg-toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eg-toast-title {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 3px;
}

.eg-toast-msg {
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 sətir göstər */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes slideInRight {
    0% { transform: translateX(120%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(120%); opacity: 0; }
}










/* ==========================================================================
   EG-SOCIAL HUB (EYE-FRIENDLY & STATIC VERSION)
   ========================================================================== */

.social-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.social-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 3px;
    border-radius: 8px;
    gap: 5px;
}

.s-tab {
    background: transparent;
    border: none;
    color: #666;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
}

.s-tab .material-icons { font-size: 18px; margin-right: 4px; }
.s-tab:hover { color: #fff; background: rgba(255,255,255,0.05); }

.s-tab.active {
    background: rgba(255, 204, 0, 0.1);
    color: var(--accent);
}

/* SİYAHI KONTEYNERİ */
.friends-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-gutter: stable; /* Scroll gələndə dizayn sürüşməsin */
}

/* Scrollbar dizaynı - Daha incə */
.friends-list::-webkit-scrollbar { width: 3px; }
.friends-list::-webkit-scrollbar-track { background: transparent; }
.friends-list::-webkit-scrollbar-thumb { background: rgba(255, 204, 0, 0.3); border-radius: 10px; }
.friends-list::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* İSTİFADƏÇİ KARTI */
.friend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    /* Transform və Cubic-Bezier silindi, sadə keçid qaldı */
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
}

/* STATİK HOVER - Hərəkətsiz effekt */
.friend-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 204, 0, 0.2);
    /* Transform: translateX silindi */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* AVATAR VƏ STATUS */
.friend-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.friend-avatar-wrap img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #111; /* Launcher fonu ilə eyni rəng */
}

.status-dot.online { 
    background: #00ff88; 
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.4); 
}
.status-dot.offline { background: #555; }

/* MƏLUMATLAR */
.friend-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    overflow: hidden;
}

.friend-name {
    font-size: 13px;
    font-weight: 700;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.2px;
}

.friend-status-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    /* Rənglər JS-dən gəldiyi üçün burda sabit qoymuruq */
}

/* Sağdakı kiçik ox ikonu */
.friend-item .material-icons {
    opacity: 0.1; /* Normalda çox sönük */
    transition: opacity 0.2s;
}

.friend-item:hover .material-icons {
    opacity: 0.5; /* Üzərinə gələndə bir az canlanır */
}



















/* ==========================================================================
   EGAME.AZ - ISOLATED CLAN CHAT MODULE
   ========================================================================== */

.egame-clanchat-wrapper { 
    display: flex; flex-direction: column; height: 100%; position: relative; 
}

.egame-clanchat-header { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.egame-clanchat-messages { 
    flex: 1; overflow-y: auto; padding-right: 10px; display: flex; flex-direction: column; gap: 12px; 
}

.egame-clanchat-messages::-webkit-scrollbar { width: 4px; }
.egame-clanchat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

/* Tarix Ayırıcısı */
.egame-clanchat-separator { text-align: center; margin: 20px 0 10px 0; }
.egame-clanchat-separator span { 
    background: rgba(255, 255, 255, 0.03); color: #666; font-size: 10px; font-weight: 800; 
    padding: 6px 16px; border-radius: 12px; text-transform: uppercase; letter-spacing: 1px; 
    border: 1px solid rgba(255,255,255,0.05); 
}

/* Mesaj Sətirləri və Baloncuklar */
.egame-clanchat-row { display: flex; width: 100%; position: relative; align-items: flex-end; }
.egame-clanchat-row.me { justify-content: flex-end; }
.egame-clanchat-row.other { justify-content: flex-start; }

.egame-clanchat-avatar { 
    width: 32px; height: 32px; border-radius: 10px; margin-right: 10px; 
    border: 1px solid rgba(255,255,255,0.1); cursor: pointer; object-fit: cover; 
}

.egame-clanchat-bubble { 
    padding: 12px 16px; max-width: 75%; border-radius: 16px; position: relative; 
    display: flex; flex-direction: column; 
}

.egame-clanchat-row.me .egame-clanchat-bubble { 
    background: rgba(255, 204, 0, 0.1); border: 1px solid rgba(255, 204, 0, 0.2); 
    border-bottom-right-radius: 4px; 
}
.egame-clanchat-row.other .egame-clanchat-bubble { 
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); 
    border-bottom-left-radius: 4px; 
}

.egame-clanchat-author { font-size: 11px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
.egame-clanchat-row.me .egame-clanchat-author { display: none; }

.egame-clanchat-text { font-size: 13px; color: #eee; line-height: 1.5; word-break: break-word; }
.egame-clanchat-time { font-size: 9px; color: rgba(255,255,255,0.3); align-self: flex-end; margin-top: 5px; font-weight: 600; }

/* Silmə Düyməsi */
.egame-clanchat-del-btn { 
    position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 77, 77, 0.1); 
    color: #ff4d4d; border: 1px solid rgba(255, 77, 77, 0.3); border-radius: 50%; width: 28px; height: 28px; 
    display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: 0.2s; 
}
.egame-clanchat-row:hover .egame-clanchat-del-btn { opacity: 1; }
.egame-clanchat-row.me .egame-clanchat-del-btn { left: -40px; }
.egame-clanchat-row.other .egame-clanchat-del-btn { right: -40px; }
.egame-clanchat-del-btn:hover { background: #ff4d4d; color: #fff; box-shadow: 0 0 10px rgba(255,77,77,0.4); }

/* --- PERFEKT SİMMETRİK İNPUT PANELİ --- */
.egame-clanchat-input-bar { 
    display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.5); 
    border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 6px; 
    margin-top: 15px; position: relative; 
}

.egame-clanchat-btn-emoji { 
    width: 40px; height: 40px; border-radius: 12px; background: transparent; border: none; 
    color: #888; cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center; 
}
.egame-clanchat-btn-emoji:hover { background: rgba(255,255,255,0.05); color: #fff; }

.egame-clanchat-input { 
    flex: 1; background: transparent; border: none; color: #fff; font-size: 14px; 
    outline: none; padding: 0 10px; height: 40px; 
}
.egame-clanchat-input::placeholder { color: #666; }

.egame-clanchat-btn-send { 
    width: 50px; height: 40px; border-radius: 14px; background: var(--accent); color: #000; 
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; 
    transition: 0.2s; box-shadow: 0 0 15px rgba(255, 204, 0, 0.2); 
}
.egame-clanchat-btn-send:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 204, 0, 0.4); background: #fff; }

/* Emoji Seçici */
.egame-clanchat-emoji-picker { 
    position: absolute; bottom: 65px; left: 0; background: #15151c; padding: 15px; 
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); width: 280px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.8); z-index: 100; display: none; animation: zoomIn 0.2s ease;
}
.egame-clanchat-emoji-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; font-size: 24px; text-align: center; }
.egame-clanchat-emoji-grid span { cursor: pointer; transition: 0.2s; border-radius: 8px; padding: 5px 0; }
.egame-clanchat-emoji-grid span:hover { background: rgba(255,255,255,0.1); transform: scale(1.2); }


















/* ==========================================================================
   EGAME.AZ - ISOLATED CLAN OVERVIEW MODULE
   ========================================================================== */

.egame-clanoverview-wrapper { 
    display: flex; flex-direction: column; gap: 20px; animation: fadeIn 0.3s ease; 
}

.egame-clanoverview-stats-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; 
}

.egame-clanoverview-card {
    background: linear-gradient(145deg, rgba(20,20,25,0.6) 0%, rgba(10,10,12,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); position: relative; overflow: hidden;
}

/* Kartın üstündəki şıq parıltı xətti */
.egame-clanoverview-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.3;
}

.egame-clanoverview-stat-title { 
    font-size: 11px; color: var(--text-muted); font-weight: 900; text-transform: uppercase; 
    margin-bottom: 12px; display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
}

.egame-clanoverview-stat-value { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.egame-clanoverview-stat-sub { font-size: 11px; color: #888; margin-top: 6px; font-weight: 600; }

/* XP Bar Dizaynı */
.egame-clanoverview-xp-wrap { margin-top: 20px; }
.egame-clanoverview-xp-header { 
    display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; color: #aaa; margin-bottom: 8px; 
}
.egame-clanoverview-xp-bar { 
    height: 10px; background: rgba(0,0,0,0.6); border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}
.egame-clanoverview-xp-fill { 
    height: 100%; background: linear-gradient(90deg, var(--accent) 0%, #ffa500 100%); 
    box-shadow: 0 0 15px var(--accent-glow); transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Haqqında Qutusu */
.egame-clanoverview-desc-box { 
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.03); border-radius: 16px; 
    padding: 20px; color: #ccc; font-size: 13px; line-height: 1.8; white-space: pre-wrap; font-weight: 500;
}

/* Lider Kartı */
.egame-clanoverview-leader-wrap { 
    display: flex; align-items: center; gap: 12px; margin-top: 15px; 
    padding: 10px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid rgba(255,255,255,0.03); transition: 0.2s;
}
.egame-clanoverview-leader-wrap:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,204,0,0.2); }
.egame-clanoverview-leader-avatar { 
    width: 48px; height: 48px; border-radius: 12px; border: 2px solid var(--accent); object-fit: cover; 
}
.egame-clanoverview-leader-name { font-size: 15px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.egame-clanoverview-leader-tag { 
    font-size: 9px; background: rgba(255,204,0,0.1); color: var(--accent); padding: 3px 8px; 
    border-radius: 6px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px;
}




















/* ==========================================================================
   EG-SOCIAL & ENGAGEMENT MODULE (PREMIUM & EYE-FRIENDLY)
   ========================================================================== */

/* 1. Liderlər Lövhəsi Konteyneri */
.eg-lb-container {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Kartlar arası məsafəni bir az azaltdıq */
    margin-top: 15px;
    padding: 2px;
}

/* Hər bir oyunçu sırası */
.eg-lb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.02); /* Çox şəffaf arxa plan */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* STATİK HOVER: Hərəkət yoxdur, sadəcə işıq və rəng dəyişir */
.eg-lb-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* İlk 3 yer üçün xüsusi "Premium Glow" */
.eg-lb-item.top-three {
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* Rütbə (Rank) Dairəsi */
.eg-lb-rank {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Medal Rəngləri (Qızıl, Gümüş, Bürünc) */
.eg-lb-item:nth-child(1) .eg-lb-rank { 
    background: linear-gradient(135deg, #FFD700, #B8860B); 
    color: #000; 
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}
.eg-lb-item:nth-child(2) .eg-lb-rank { background: linear-gradient(135deg, #C0C0C0, #808080); color: #000; }
.eg-lb-item:nth-child(3) .eg-lb-rank { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #000; }

/* Avatar Dizaynı */
.eg-lb-avatar {
    width: 38px;
    height: 38px;
    border-radius: 8px; /* Modern kvadrat-yumru */
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.eg-lb-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.eg-lb-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.eg-lb-xp {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.eg-lb-crown {
    color: var(--accent);
    font-size: 18px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

/* 2. Premium Gündəlik Hədiyyə Düyməsi */
/* --- YENİ: Kompakt Hədiyyə Kartı --- */
.eg-reward-card {
    background: rgba(15, 15, 19, 0.8);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    width: 260px; /* Sabit en */
    height: fit-content; /* Hündürlük ancaq içindəki qədər olsun */
    align-self: flex-start; /* Dartılmağın qarşısını alır */
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.eg-reward-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.eg-reward-icon-box .material-icons {
    font-size: 32px;
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.eg-reward-card h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.eg-reward-card p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.eg-reward-claim-btn {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.eg-reward-claim-btn:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Pulsasiya edən kənar işığı */
.eg-reward-active {
    animation: cardGlow 2.5s infinite ease-in-out;
}

@keyframes cardGlow {
    0%, 100% { border-color: rgba(255, 204, 0, 0.2); }
    50% { border-color: rgba(255, 204, 0, 0.8); box-shadow: 0 0 15px rgba(255, 204, 0, 0.1); }
}


























/* --- BİLDİRİŞ MƏRKƏZİ (NOTIFICATION HUB) --- */
.eg-notif-wrapper {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 35px; height: 35px; border-radius: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; transition: 0.2s; margin-right: 15px;
}
.eg-notif-wrapper:hover { background: rgba(255,255,255,0.1); color: var(--accent); }

.eg-notif-badge {
    position: absolute; top: -5px; right: -5px;
    background: #ff4d4d; color: #fff; font-size: 9px; font-weight: 900;
    width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 2px solid #0b0b0f; box-shadow: 0 0 10px rgba(255,77,77,0.5);
    animation: pulse 2s infinite;
}

.eg-notif-dropdown {
    position: absolute; top: 45px; right: 0;
    width: 320px; max-height: 400px; background: #15151c;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); z-index: 10000;
    display: flex; flex-direction: column; overflow: hidden; cursor: default;
    animation: zoomIn 0.2s ease;
}

.eg-notif-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; background: rgba(0,0,0,0.3); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.eg-notif-header h4 { margin: 0; color: #fff; font-size: 14px; font-weight: 900; }
.eg-notif-header span { color: var(--text-muted); font-size: 18px; cursor: pointer; transition: 0.2s; }
.eg-notif-header span:hover { color: #ff4d4d; }

.eg-notif-body {
    flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding: 10px; gap: 5px;
}
.eg-notif-body::-webkit-scrollbar { width: 4px; }
.eg-notif-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

.eg-notif-item {
    display: flex; align-items: center; gap: 12px; padding: 12px;
    background: rgba(255,255,255,0.02); border-radius: 12px; transition: 0.2s;
    border: 1px solid rgba(255,255,255,0.02);
}
.eg-notif-item:hover { background: rgba(255,255,255,0.05); border-color: var(--accent); }
.eg-notif-icon {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,204,0,0.1);
    color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.eg-notif-content { flex: 1; }
.eg-notif-title { color: #fff; font-size: 12px; font-weight: 800; margin-bottom: 2px; }
.eg-notif-desc { color: var(--text-muted); font-size: 10px; line-height: 1.4; }

























/* --- EG-SUPPORT MODULE --- */
/* ==========================================================================
   EGAME.AZ - ISOLATED PREMIUM SUPPORT MODULE
   ========================================================================== */

.eg-support-wrapper { animation: fadeIn 0.3s ease; height: 100%; display: flex; flex-direction: column; }

/* Üst Başlıq */
.eg-support-header { 
    display: flex; justify-content: space-between; align-items: center; 
    background: linear-gradient(90deg, rgba(255,204,0,0.1) 0%, transparent 100%);
    padding: 15px 20px; border-radius: 16px; border: 1px solid rgba(255,204,0,0.2); margin-bottom: 20px;
}

/* Bilet Kartları (Siyahı) */
.eg-support-card {
    background: linear-gradient(145deg, rgba(25,25,30,0.8) 0%, rgba(15,15,20,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.05); padding: 15px 20px; border-radius: 16px; 
    margin-bottom: 12px; cursor: pointer; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden;
}
.eg-support-card:hover { border-color: var(--accent); transform: translateX(5px) scale(1.01); box-shadow: -5px 10px 20px rgba(0,0,0,0.5); }
.eg-support-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #666; transition: 0.3s;
}
.eg-support-card:hover::before { background: var(--accent); box-shadow: 0 0 15px var(--accent); }

.eg-support-card-left { display: flex; align-items: center; gap: 15px; }
.eg-support-cat-icon {
    width: 45px; height: 45px; border-radius: 12px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1);
}
.eg-support-cat-icon .material-icons { font-size: 22px; color: #aaa; }
.eg-support-card:hover .eg-support-cat-icon { background: rgba(255,204,0,0.1); border-color: rgba(255,204,0,0.3); }
.eg-support-card:hover .eg-support-cat-icon .material-icons { color: var(--accent); }

/* Status Bildirişləri */
.eg-support-badge { padding: 6px 12px; border-radius: 8px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid transparent; }
.eg-support-badge.open { background: rgba(255, 204, 0, 0.1); color: var(--accent); border-color: rgba(255, 204, 0, 0.3); }
.eg-support-badge.pending { background: rgba(0, 255, 136, 0.1); color: #00ff88; border-color: rgba(0, 255, 136, 0.3); }
.eg-support-badge.closed { background: rgba(255, 77, 77, 0.1); color: #ff4d4d; border-color: rgba(255, 77, 77, 0.3); }

/* Çat Ekranı (Mesajlaşma) */
.eg-support-chat-header { 
    display: flex; align-items: center; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 15px;
}
.eg-support-chat-body { flex: 1; overflow-y: auto; padding-right: 10px; display: flex; flex-direction: column; gap: 15px; margin-bottom: 20px; }
.eg-support-chat-body::-webkit-scrollbar { width: 4px; }
.eg-support-chat-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

/* Mesaj Baloncukları */
.eg-support-msg-wrap { display: flex; flex-direction: column; max-width: 75%; }
.eg-support-msg-wrap.admin { align-self: flex-start; }
.eg-support-msg-wrap.user { align-self: flex-end; align-items: flex-end; }

.eg-support-msg-author { font-size: 11px; font-weight: 900; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.eg-support-msg-wrap.admin .eg-support-msg-author { color: #00ff88; }
.eg-support-msg-wrap.user .eg-support-msg-author { color: var(--accent); }

.eg-support-msg-bubble { 
    padding: 12px 18px; border-radius: 16px; font-size: 13px; line-height: 1.6; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.eg-support-msg-wrap.admin .eg-support-msg-bubble { 
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(0,255,136,0.05) 100%); 
    border: 1px solid rgba(0,255,136,0.2); border-top-left-radius: 4px;
}
.eg-support-msg-wrap.user .eg-support-msg-bubble { 
    background: linear-gradient(135deg, rgba(255,204,0,0.15) 0%, rgba(255,204,0,0.05) 100%); 
    border: 1px solid rgba(255,204,0,0.2); border-top-right-radius: 4px;
}
.eg-support-msg-time { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 5px; font-weight: 700; }

/* Bağlanmış Bilet Görünüşü */
.eg-support-locked-bar {
    text-align: center; padding: 20px; 
    background: linear-gradient(0deg, rgba(255,77,77,0.1) 0%, transparent 100%); 
    border-top: 1px solid rgba(255,77,77,0.2); 
    color: #ff4d4d; font-size: 13px; font-weight: 900; 
    display: flex; align-items: center; justify-content: center; gap: 8px;
    letter-spacing: 0.5px;
}
.eg-support-btn-close {
    border-color: rgba(255,77,77,0.3) !important; color: #ff4d4d !important;
    padding: 6px 12px !important; font-size: 11px !important; display: flex; align-items: center; gap: 5px;
}
.eg-support-btn-close:hover { background: rgba(255,77,77,0.1) !important; border-color: #ff4d4d !important; }