:root {
    /* اللون ده هيتغير بالجافاسكريبت من الأدمن */
    --primary-cyan: #00f2ff; 
    --dark-bg: #050505;
    --glass-bg: rgba(20, 20, 25, 0.7);
    --glass-border: rgba(0, 242, 255, 0.15);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

* { box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }

body {
    /* تم إضافة خطوط الإيموجي بجوار خط تجوال */
    font-family: 'Tajawal', 'Noto Color Emoji', "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
   
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 110, 255, 0.08) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a1a' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    color: var(--text-white);
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center;
    overflow-x: hidden;
    transition: background 0.5s ease;

    /* لتطبيق الخط أيضاً على الأزرار وحقول الإدخال */
input, button, select, textarea {
    font-family: 'Tajawal', 'Noto Color Emoji', "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
}
}

/* إخفاء شريط التمرير للصفحة الرئيسية بالكامل مع الاحتفاظ بخاصية السكرول */
html, body {
    -ms-overflow-style: none;  /* لإخفاء الشريط في متصفحات Internet Explorer و Edge */
    scrollbar-width: none;  /* لإخفاء الشريط في متصفح Firefox */
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* لإخفاء الشريط في Chrome و Safari و Opera */
}

.news-ticker {
    width: 100%; background: rgba(0, 0, 0, 0.3);
    border-bottom: none;
    overflow: hidden; white-space: nowrap; padding: 10px 0;
    font-size: 0.9rem; color: var(--primary-cyan);
    position: relative; z-index: 100;
}
.ticker-content {
    display: inline-block; padding-left: 100%;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}
@keyframes ticker {
    0% { transform: translate3d(100vw, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.header-section {
    width: 100%; padding: 40px 20px 20px;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}

/* === ستايل زرار الشير (Uiverse) === */
.share-btn-container {
    position: absolute; top: 20px; left: 20px; z-index: 200;
}

.buttons {
    position: relative;
    display: grid; place-items: center;
    height: fit-content; width: fit-content;
    transition: 0.3s; border-radius: 50%;
}

.buttons:hover { padding: 60px; }

.buttons:hover .button {
    box-shadow: 0 0 10px var(--primary-cyan);
}

.main-button {
    position: relative; display: grid; place-items: center;
    padding: 10px; border: none;
    background: #000; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5); border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50%; transition: 0.2s; z-index: 100; cursor: pointer;
}

.button {
    position: absolute; display: grid; place-items: center;
    padding: 8px; border: none;
    background: #111; 
    color: white; 
    border-radius: 50%;
    transition: 0.3s; cursor: pointer;
    width: 40px; height: 40px;
    z-index: 50; 
}

.button svg { width: 20px; height: 20px; }

.telegram-button:hover { background: #2AABEE; color: white; }
.buttons:hover .telegram-button { translate: 50px 0px; }

.copy-button:hover { background: #666; color: white; }
.buttons:hover .copy-button { translate: 35px 35px; }

.messenger-button:hover { background: #0093FF; color: white; }
.buttons:hover .messenger-button { translate: 0px 50px; }

.whatsapp-button:hover { background: #25D366; color: white; }
.buttons:hover .whatsapp-button { translate: 35px -35px; }

/* === ستايل أيقونة المستخدم (الجديد) === */
.user-icon-container {
    position: absolute; top: 20px; right: 20px;
    font-size: 2.2rem; color: var(--primary-cyan);
    cursor: pointer; transition: 0.3s; z-index: 200;
    filter: drop-shadow(0 0 5px var(--primary-cyan));
    background: rgba(0,0,0,0.5); border-radius: 50%;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--primary-cyan);
}
.user-icon-container:hover { transform: scale(1.1); background: var(--primary-cyan); color: black; }

/* === ستايل نافذة تسجيل الدخول (3D Modal) === */
.auth-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 3000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.5s; backdrop-filter: blur(8px);
}
.auth-modal.active { opacity: 1; visibility: visible; }

.auth-box {
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--primary-cyan);
    padding: 30px; border-radius: 20px;
    width: 90%; max-width: 380px;
    text-align: center; position: relative;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
    transform: perspective(1000px) rotateX(15deg) scale(0.9);
    transition: 0.5s;
}
.auth-modal.active .auth-box { transform: perspective(1000px) rotateX(0deg) scale(1); }

.auth-title { font-size: 1.5rem; margin-bottom: 20px; color: white; text-shadow: 0 0 10px var(--primary-cyan); }

.auth-input {
    width: 100%; padding: 12px; margin-bottom: 12px;
    background: rgba(255,255,255,0.05); border: 1px solid #444;
    border-radius: 10px; color: white; outline: none; transition: 0.3s;
    font-family: 'Tajawal', sans-serif;
}
.auth-input:focus { border-color: var(--primary-cyan); box-shadow: 0 0 10px var(--primary-cyan); }

.auth-btn {
    width: 100%; padding: 12px; background: var(--primary-cyan);
    color: black; font-weight: bold; border: none; border-radius: 10px;
    cursor: pointer; transition: 0.3s; margin-top: 10px; font-size: 1rem;
}
.auth-btn:hover { transform: scale(1.02); box-shadow: 0 0 15px var(--primary-cyan); }

.switch-auth { margin-top: 15px; font-size: 0.85rem; color: #ccc; cursor: pointer; text-decoration: underline; }
.close-auth { position: absolute; top: 15px; right: 15px; color: #ff4444; font-size: 1.2rem; cursor: pointer; }

/* بروفايل المستخدم */
.profile-view { display: none; }
.profile-info { margin-bottom: 20px; padding: 15px; background: rgba(255,255,255,0.03); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.profile-label { color: var(--primary-cyan); font-size: 0.8rem; display: block; margin-bottom: 5px; opacity: 0.8; }
.profile-value { color: white; font-size: 1.1rem; font-weight: bold; display: block; margin-bottom: 10px; }

/* ========================================= */

.logo-wrapper { position: relative; display: inline-block; margin-bottom: 15px; }

.main-logo {
    width: 130px; height: 130px;
    border-radius: 40%;
    border: 2px solid var(--primary-cyan);
    padding: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.status-indicator {
    position: absolute; bottom: -10px; left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #00ff00;
    color: #00ff00; padding: 4px 12px;
    border-radius: 20px; font-size: 0.75rem; font-weight: bold;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    white-space: nowrap; z-index: 10;
}
.status-dot {
    width: 8px; height: 8px; background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.title-neon {
    font-size: 2rem; margin: 5px 0 5px;
    text-shadow: 0 0 10px var(--primary-cyan);
    color: white;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex; align-items: center; gap: 8px; justify-content: center;
}

.verified-badge { color: #1DA1F2; font-size: 1.4rem; filter: drop-shadow(0 0 5px rgba(29, 161, 242, 0.5)); }
.subtitle { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; text-align: center; }

.stats-bar {
    display: flex; gap: 30px; margin-bottom: 25px;
    background: rgba(0,0,0,0.3); padding: 10px 30px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}
.stat-item { text-align: center; }
.stat-num { display: block; font-weight: bold; color: var(--primary-cyan); font-size: 1.1rem; }
.stat-label { font-size: 0.7rem; color: #888; }

.search-container { width: 100%; max-width: 500px; margin-bottom: 30px; position: relative; }
.search-input {
    width: 100%; padding: 15px 50px 15px 20px;
    border-radius: 15px; border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03); color: white;
    font-family: 'Tajawal', sans-serif; transition: 0.3s;
}
.search-input:focus { border-color: var(--primary-cyan); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 15px var(--primary-cyan); }
.search-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--text-gray); }

.grid-container {
    display: flex; flex-direction: column; gap: 15px;
    width: 100%; max-width: 600px; padding: 0 20px;
    perspective: 1000px;
    z-index: 1;
}

.card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 20px; border-radius: 16px;
    text-decoration: none; color: white;
    transition: all 0.1s ease;
    position: relative; overflow: hidden;
    transform-style: preserve-3d;
}

.card::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.5s;
}
.card:hover::before { left: 100%; }
.card:hover { border-color: var(--primary-cyan); box-shadow: 0 5px 20px var(--primary-cyan); }

.card-content { display: flex; align-items: center; gap: 15px; flex: 1; pointer-events: none; }
.card-icon { 
    width: 45px; height: 45px; background: rgba(255, 255, 255, 0.05); 
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary-cyan);
    border: 1px solid var(--primary-cyan);
}
.card-title { font-weight: 700; font-size: 1rem; }
.arrow-icon { opacity: 0.5; transition: 0.3s; pointer-events: none; }
.card:hover .arrow-icon { opacity: 1; transform: translateX(-5px); color: var(--primary-cyan); }

.card.danger { border-color: #ff4444 !important; background: rgba(50, 0, 0, 0.3) !important; }
.card.danger .card-icon { color: #ff4444 !important; border-color: #ff4444 !important; }
.card.danger:hover { box-shadow: 0 5px 20px rgba(255, 0, 0, 0.2) !important; }


/* === ستايل شريط الدفع اليدوي (Swipeable Slider) === */

.payment-scroll-wrapper {
    margin-top: 30px; width: 100%; 
    padding: 10px 0;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    text-align: center; color: var(--primary-cyan); font-size: 1rem; margin-bottom: 10px; display: block;
}

.scroll-track {
    display: flex; gap: 15px;
    overflow-x: auto; /* الاسكرول هنا عادي  */
    padding: 10px 20px;
    width: 100%;
    -webkit-overflow-scrolling: touch; /*  سوفت  */
    scrollbar-width: none; /* إخفاء الاسكرول  */
    cursor: grab; /* شكل ماوس */
}

.scroll-track::-webkit-scrollbar { display: none; } /* إخفاء السكرول لكروم */
.scroll-track:active { cursor: grabbing; }

.pay-pill {
    flex: 0 0 auto; /* منع الانكماش */
    display: flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white; font-size: 0.9rem; cursor: pointer;
    white-space: nowrap; transition: 0.3s;
    position: relative;
}
.pay-pill:hover { transform: scale(1.05); filter: brightness(1.2); }
.pay-pill i { font-size: 1.2rem; }

/*  للدفع ألوان الشركات */
.pay-pill.vf { border-color: #e60000; color: #ffcccc; box-shadow: 0 0 5px rgba(230,0,0,0.3); }
.pay-pill.org { border-color: #ff7f00; color: #ffe0cc; box-shadow: 0 0 5px rgba(255,127,0,0.3); }
.pay-pill.etis { border-color: #90c53d; color: #e6ffcc; box-shadow: 0 0 5px rgba(144,197,61,0.3); }
.pay-pill.we { border-color: #5c2d91; color: #eaccff; box-shadow: 0 0 5px rgba(92,45,145,0.3); }
.pay-pill.insta { border-color: #4caf50; color: #ccffcc; box-shadow: 0 0 5px rgba(76,175,80,0.3); }
.pay-pill.paypal { border-color: #003087; color: #cce0ff; box-shadow: 0 0 5px rgba(0,48,135,0.3); }

.tooltip { 
    position: absolute; top: -35px; left: 50%; transform: translateX(-50%);
    background: #333; color: white; padding: 4px 10px; 
    border-radius: 5px; font-size: 0.7rem; 
    opacity: 0; pointer-events: none; transition: 0.2s; white-space: nowrap;
}
.pay-pill.copied .tooltip { opacity: 1; top: -40px; }

footer { margin-top: 40px; margin-bottom: 100px; text-align: center; color: #666; font-size: 0.85rem; }
footer a { color: var(--primary-cyan); text-decoration: none; }

.support-btn { position: fixed; bottom: 25px; left: 25px; width: 60px; height: 60px; background: var(--primary-cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px var(--primary-cyan); z-index: 999; cursor: pointer; transition: 0.3s; color: #000; font-size: 26px; }
.support-btn:hover { transform: rotate(15deg) scale(1.1); }

.animate-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* === ستايل البوب أب === */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.5s; backdrop-filter: blur(5px);
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-content {
    padding: 30px; text-align: center; border: 2px solid var(--primary-cyan);
    transform: scale(0.8); transition: 0.3s; width: 90%; max-width: 400px;
    background: #111; border-radius: 20px; position: relative;
    box-shadow: 0 0 30px var(--primary-cyan);
}
.popup-overlay.show .popup-content { transform: scale(1); }
.close-popup {
    position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; color: white; transition: 0.3s;
}
.close-popup:hover { color: #ff4444; }
.popup-btn {
    display: inline-block; margin-top: 15px; padding: 10px 25px;
    background: var(--primary-cyan); color: black; text-decoration: none;
    font-weight: bold; border-radius: 10px; box-shadow: 0 0 15px var(--primary-cyan);
}

/* === (SMM Style) === */
.smm-container {
    width: 100%; max-width: 600px; margin: 20px 0;
    padding: 0 20px;
    position: relative; z-index: 500;
}

.custom-select-wrapper { position: relative; margin-bottom: 20px; user-select: none; }
.custom-select-label { display: block; text-align: right; margin-bottom: 8px; font-weight: bold; color: var(--text-gray); font-size: 0.9rem; }

.custom-select-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 12px 15px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: 0.3s; min-height: 55px;
}
.custom-select-trigger:hover { border-color: var(--primary-cyan); background: rgba(255, 255, 255, 0.05); }

.trigger-content { display: flex; align-items: center; gap: 10px; }
.trigger-img { width: 25px; height: 25px; border-radius: 5px; object-fit: cover; }
.arrow { transition: 0.3s; }
.custom-select-wrapper.open .arrow { transform: rotate(180deg); }

.custom-options {
    position: absolute; top: 110%; left: 0; right: 0;
    background: #151515; border: 1px solid var(--primary-cyan);
    border-radius: 12px; z-index: 1000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px); transition: 0.3s;
    max-height: 250px; overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    scrollbar-width: none; -ms-overflow-style: none;
}
.custom-options::-webkit-scrollbar { display: none; }

.custom-select-wrapper.open .custom-options { opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0); }
.custom-option { padding: 12px 15px; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05); }
.custom-option:hover { background: var(--primary-cyan); color: black; }
.custom-option:last-child { border-bottom: none; }
.option-img { width: 25px; height: 25px; border-radius: 5px; }


/* === ستايل زرار SPACE الجديد (مكان الطلب) === */

.space-btn {
    display: none; /* مخفي لحد ما يختار خدمة */
    justify-content: center; align-items: center;
    width: 100%; height: 3.5rem; background-size: 300% 300%;
    backdrop-filter: blur(1rem); border-radius: 5rem;
    transition: 0.5s; animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121), 
                      linear-gradient(137.48deg, var(--primary-cyan) 10%, #000 45%, var(--primary-cyan) 67%, #000 87%);
    background-origin: border-box; background-clip: content-box, border-box;
    text-decoration: none; position: relative; z-index: 1;
    cursor: pointer; margin-top: 15px;
}
#container-stars {
    position: absolute; z-index: -1; width: 100%; height: 100%;
    overflow: hidden; transition: 0.5s; backdrop-filter: blur(1rem);
    border-radius: 5rem; left: 0; top: 0;
}
strong { z-index: 2; font-family: 'Tajawal', sans-serif; font-size: 1.1rem; letter-spacing: 2px; color: #FFFFFF; text-shadow: 0 0 4px white; }
#glow { position: absolute; display: flex; width: 12rem; }
.circle { width: 100%; height: 30px; filter: blur(2rem); animation: pulse_3011 4s infinite; z-index: -1; }
.circle:nth-of-type(1) { background: rgba(0, 242, 255, 0.6); }
.circle:nth-of-type(2) { background: rgba(0, 100, 255, 0.7); }
.space-btn:hover #container-stars { z-index: 1; background-color: #212121; }
.space-btn:hover { transform: scale(1.05); }
.space-btn:active { border: double 4px var(--primary-cyan); background-origin: border-box; background-clip: content-box, border-box; animation: none; }
.space-btn:active .circle { background: var(--primary-cyan); }
#stars { position: relative; background: transparent; width: 200rem; height: 200rem; }
#stars::after { content: ""; position: absolute; top: -10rem; left: -100rem; width: 100%; height: 100%; animation: animStarRotate 90s linear infinite; background-image: radial-gradient(#ffffff 1px, transparent 1%); background-size: 50px 50px; }
#stars::before { content: ""; position: absolute; top: 0; left: -50%; width: 170%; height: 500%; animation: animStar 60s linear infinite; background-image: radial-gradient(#ffffff 1px, transparent 1%); background-size: 50px 50px; opacity: 0.5; }
@keyframes animStar { from { transform: translateY(0); } to { transform: translateY(-135rem); } }
@keyframes animStarRotate { from { transform: rotate(360deg); } to { transform: rotate(0); } }
@keyframes gradient_301 { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes pulse_3011 { 0% { transform: scale(0.75); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 0, 0, 0); } 100% { transform: scale(0.75); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }


/* === ستايل الكارت الجديد (Uiverse 3D Card) === */

.uiverse-container { width: 290px; height: 300px; perspective: 1000px; margin: 40px auto; }
.uiverse-card {
    height: 100%; border-radius: 50px;
    background: linear-gradient(135deg, #000 0%, var(--primary-cyan) 150%);
    transition: all 0.5s ease-in-out; transform-style: preserve-3d;
    box-shadow: 0 25px 25px -5px rgba(0,0,0,0.5); border: 1px solid var(--primary-cyan);
}
.uiverse-glass {
    transform-style: preserve-3d; position: absolute; inset: 8px;
    border-radius: 55px; border-top-right-radius: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translate3d(0px, 0px, 25px);
    border-left: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.5s ease-in-out;
}
.uiverse-content { padding: 100px 60px 0px 30px; transform: translate3d(0, 0, 26px); }
.uiverse-content .title { display: block; color: var(--primary-cyan); font-weight: 900; font-size: 20px; text-shadow: 0 0 5px black; }
.uiverse-content .text { display: block; color: rgba(255, 255, 255, 0.8); font-size: 15px; margin-top: 20px; }
.uiverse-bottom {
    padding: 10px 12px; transform-style: preserve-3d; position: absolute; bottom: 20px; left: 20px; right: 20px;
    display: flex; align-items: center; justify-content: space-between; transform: translate3d(0, 0, 26px);
}
.uiverse-view-more { display: flex; align-items: center; width: 40%; justify-content: flex-end; transition: all 0.2s ease-in-out; }
.uiverse-view-more:hover { transform: translate3d(0, 0, 10px); }
.uiverse-view-more .view-more-button { background: none; border: none; color: var(--primary-cyan); font-weight: bolder; font-size: 12px; }
.uiverse-view-more .svg { fill: none; stroke: var(--primary-cyan); stroke-width: 3px; max-height: 15px; }
.uiverse-social-btns { display: flex; gap: 10px; transform-style: preserve-3d; }
.uiverse-social-btn {
    width: 30px; aspect-ratio: 1; padding: 5px; background: white; border-radius: 50%; border: none;
    display: grid; place-content: center; box-shadow: 0px 7px 5px -5px rgba(0,0,0,0.5);
}
.uiverse-social-btn .svg { width: 15px; fill: black; }
.uiverse-social-btn:hover { background: var(--primary-cyan); }
.uiverse-social-btn:hover .svg { fill: black; }
.uiverse-logo { position: absolute; right: 0; top: 0; transform-style: preserve-3d; }
.uiverse-circle {
    display: block; position: absolute; aspect-ratio: 1; border-radius: 50%; top: 0; right: 0;
    box-shadow: -10px 10px 20px 0px rgba(0,0,0,0.2); backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1); transition: all 0.5s ease-in-out;
    border: 1px solid var(--primary-cyan);
}
.uiverse-circle1 { width: 170px; transform: translate3d(0, 0, 20px); top: 8px; right: 8px; }
.uiverse-circle2 { width: 140px; transform: translate3d(0, 0, 40px); top: 10px; right: 10px; backdrop-filter: blur(1px); transition-delay: 0.4s; }
.uiverse-circle3 { width: 110px; transform: translate3d(0, 0, 60px); top: 17px; right: 17px; transition-delay: 0.8s; }
.uiverse-circle4 { width: 80px; transform: translate3d(0, 0, 80px); top: 23px; right: 23px; transition-delay: 1.2s; }
.uiverse-circle5 { width: 50px; transform: translate3d(0, 0, 100px); top: 30px; right: 30px; display: grid; place-content: center; transition-delay: 1.6s; }
.uiverse-circle5 .svg { width: 20px; fill: white; }
.uiverse-container:hover .uiverse-card { transform: rotate3d(1, 1, 0, 30deg); box-shadow: 0px 25px 30px 0px rgba(0,0,0,0.3); }
.uiverse-container:hover .uiverse-card .uiverse-bottom .uiverse-social-btns .uiverse-social-btn { transform: translate3d(0, 0, 50px); box-shadow: -5px 20px 10px 0px rgba(0,0,0,0.2); }
.uiverse-container:hover .uiverse-card .uiverse-logo .uiverse-circle2 { transform: translate3d(0, 0, 60px); }
.uiverse-container:hover .uiverse-card .uiverse-logo .uiverse-circle3 { transform: translate3d(0, 0, 80px); }
.uiverse-container:hover .uiverse-card .uiverse-logo .uiverse-circle4 { transform: translate3d(0, 0, 100px); }
.uiverse-container:hover .uiverse-card .uiverse-logo .uiverse-circle5 { transform: translate3d(0, 0, 120px); }
/* === ستايل نافذة إتمام الدفع (Checkout) === */
.checkout-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 4000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.5s; backdrop-filter: blur(8px);
}
.checkout-modal.active { opacity: 1; visibility: visible; }
.checkout-box {
    background: rgba(10, 10, 15, 0.95);
    padding: 30px; border-radius: 20px;
    width: 90%; max-width: 450px;
    position: relative;
    transform: translateY(50px);
    transition: 0.5s;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}
.checkout-modal.active .checkout-box { transform: translateY(0); }
.checkout-box::-webkit-scrollbar { width: 5px; }
.checkout-box::-webkit-scrollbar-thumb { background: var(--primary-cyan); border-radius: 10px; }
/* إصلاح شكل قائمة طرق الدفع عشان تكون واضحة للمستخدم */
select.auth-input {
    color: white; /* لون النص قبل الفتح */
}
select.auth-input option {
    background-color: #111; /* خلفية الاختيارات باللون الأسود */
    color: #fff; /* لون النص أبيض */
    padding: 10px;
    font-size: 1rem;
}
select.auth-input option:disabled {
    color: #888; /* لون شفاف قليلاً للاختيار غير المتاح */
}
/* === ستايل نافذة إتمام الدفع (Checkout) وإخفاؤها === */
.checkout-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 4000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.5s; backdrop-filter: blur(8px);
}
.checkout-modal.active { opacity: 1; visibility: visible; }
.checkout-box {
    background: rgba(10, 10, 15, 0.95);
    padding: 30px; border-radius: 20px;
    width: 90%; max-width: 450px;
    position: relative;
    transform: translateY(50px);
    transition: 0.5s;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--primary-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}
.checkout-modal.active .checkout-box { transform: translateY(0); }
.checkout-box::-webkit-scrollbar { width: 5px; }
.checkout-box::-webkit-scrollbar-thumb { background: var(--primary-cyan); border-radius: 10px; }

/* إصلاح شكل قائمة طرق الدفع عشان تكون واضحة للمستخدم */
select.auth-input {
    color: white; /* لون النص قبل الفتح */
}
select.auth-input option {
    background-color: #111; /* خلفية الاختيارات باللون الأسود */
    color: #fff; /* لون النص أبيض */
    padding: 10px;
    font-size: 1rem;
}
select.auth-input option:disabled {
    color: #888; /* لون شفاف قليلاً للاختيار غير المتاح */
}
/* === ستايلات قسم الألعاب الجديد === */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.large-game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.large-game-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
    border-color: var(--primary-cyan);
}

.large-game-card img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.large-game-card h3 {
    color: white;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.large-game-card button {
    background: transparent;
    border: 1px solid var(--primary-cyan);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: bold;
    transition: 0.3s;
    width: 100%;
}

.large-game-card:hover button {
    background: var(--primary-cyan);
    color: black;
}

.package-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.package-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 15px;
}

.package-info {
    flex: 1;
    text-align: right;
}

.package-info h4 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 1rem;
}

.package-info .price {
    color: #00ff00;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-item .buy-btn {
    background: #25D366; /* لون الواتساب */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    font-family: inherit;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-item .buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}
/* === شاشة التحميل (Loader Overlay) === */
.site-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505; /* لون خلفية الموقع */
  z-index: 99999; /* رقم عالي جداً ليكون فوق كل شيء */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out; /* تأثير التلاشي */
}

/* كلاس الإخفاء الذي سيتم إضافته عبر الجافاسكريبت */
.site-loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

/* === كود الـ Loader من Uiverse === */
.loader-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  aspect-ratio: 1 / 1;
  font-family: "Jura", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  border-radius: 50%;
  background-color: #0005;
  user-select: none;
  
  /* السطر السحري لحل المشكلة 👇 */
  direction: ltr; 
}


.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: inherit;
  z-index: 1;
  background-color: #c4d0cc22;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 0 10px 0 #fffa inset,
    0 0 12px 4px var(--primary-cyan) inset, /* تم تعديل اللون ليتماشى مع لون موقعك */
    8px 0 8px 0px #fff inset,
    -8px 0 16px 2px #000 inset,
    0 0 20px 2px #0006,
    0 0 24px 4px #000000d8,
    0 12px 200px 0px var(--primary-cyan); /* تم التعديل */
  animation: rotate-anim 4s linear infinite;
  -webkit-animation: rotate-anim 4s linear infinite;
}

@keyframes rotate-anim { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@-webkit-keyframes rotate-anim { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } }

.loader-bg-1, .loader-bg-2 {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: inherit; opacity: 0.5;
  background-color: #482892a1;
  filter: blur(40px); -webkit-filter: blur(40px);
  z-index: 0;
  animation: bg-transform 4s linear infinite;
  -webkit-animation: bg-transform 4s linear infinite;
}

.loader-bg-2 {
  background-color: #0c8653;
  animation: bg-transform 6s linear infinite reverse;
  -webkit-animation: bg-transform 6s linear infinite reverse;
}

@keyframes bg-transform {
  0%, 100% { transform: translate(-80%, 0%); clip-path: circle(50% at 130% 50%); }
  25% { transform: translate(0%, -80%); clip-path: circle(50% at 50% 130%); }
  50% { transform: translate(80%, 0%); clip-path: circle(50% at -30% 50%); }
  75% { transform: translate(0%, 80%); clip-path: circle(50% at 50% -30%); }
}

@-webkit-keyframes bg-transform {
  0%, 100% { -webkit-transform: translate(-80%, 0%); clip-path: circle(50% at 130% 50%); }
  25% { -webkit-transform: translate(0%, -80%); clip-path: circle(50% at 50% 130%); }
  50% { -webkit-transform: translate(80%, 0%); clip-path: circle(50% at -30% 50%); }
  75% { -webkit-transform: translate(0%, 80%); clip-path: circle(50% at 50% -30%); }
}

.loader-letter {
  display: inline-block;
  opacity: 0.7;
  transform: translateY(0);
  animation: loader-letter-anim 1.8s infinite ease;
  -webkit-animation: loader-letter-anim 1.8s infinite ease;
  z-index: 2;
  color: #0004;
  text-shadow: 0 -1px 0 #eeffdd;
  filter: drop-shadow(0 6px 3px #000);
}

.loader-letter:nth-child(1) { animation-delay: 0s; -webkit-animation-delay: 0s; }
.loader-letter:nth-child(2) { animation-delay: 0.1s; -webkit-animation-delay: 0.1s; }
.loader-letter:nth-child(3) { animation-delay: 0.2s; -webkit-animation-delay: 0.2s; }
.loader-letter:nth-child(4) { animation-delay: 0.3s; -webkit-animation-delay: 0.3s; }
.loader-letter:nth-child(5) { animation-delay: 0.4s; -webkit-animation-delay: 0.4s; }
.loader-letter:nth-child(6) { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; }
.loader-letter:nth-child(7) { animation-delay: 0.6s; -webkit-animation-delay: 0.6s; }

@keyframes loader-letter-anim {
  0%, 100% { opacity: 0.5; transform: none; }
  30% { opacity: 0.5; transform: translateX(-3px) rotate(-1deg); }
  40% { opacity: 0.9; transform: translateX(2px) rotate(3deg) scale(1.06); }
}

@-webkit-keyframes loader-letter-anim {
  0%, 100% { opacity: 0.5; transform: none; }
  30% { opacity: 0.5; transform: translateX(-3px) rotate(-1deg); }
  40% { opacity: 0.9; transform: translateX(2px) rotate(3deg) scale(1.06); }
}
/* === نظام الإشعارات العصري (Toast Notifications) === */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none; /* عشان ما يمنعش الضغط على اللي تحته */
}

.custom-toast {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--primary-cyan);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 242, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    /* الأنيميشن */
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.custom-toast i {
    font-size: 1.2rem;
}

/* ألوان مختلفة حسب نوع الإشعار */
.custom-toast.success { border-color: #00ff00; box-shadow: 0 0 10px rgba(0, 255, 0, 0.2); }
.custom-toast.success i { color: #00ff00; }

.custom-toast.error { border-color: #ff4444; box-shadow: 0 0 10px rgba(255, 68, 68, 0.2); }
.custom-toast.error i { color: #ff4444; }

.custom-toast.warning { border-color: #ffbb33; box-shadow: 0 0 10px rgba(255, 187, 51, 0.2); }
.custom-toast.warning i { color: #ffbb33; }
/* === نظام تذاكر الدعم والشات === */
.ticket-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 15px; border-radius: 12px;
    margin-bottom: 10px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: 0.3s;
}
.ticket-item:hover { background: rgba(0, 242, 255, 0.1); border-color: var(--primary-cyan); }
.ticket-info h4 { margin: 0 0 5px 0; color: white; }
.ticket-info p { margin: 0; font-size: 0.8rem; color: #aaa; }
.ticket-status {
    padding: 5px 10px; border-radius: 5px; font-size: 0.8rem; font-weight: bold;
}
.status-open { background: rgba(255, 187, 51, 0.2); color: #ffbb33; border: 1px solid #ffbb33; }
.status-answered { background: rgba(0, 255, 0, 0.2); color: #00ff00; border: 1px solid #00ff00; }
.status-closed { background: rgba(255, 68, 68, 0.2); color: #ff4444; border: 1px solid #ff4444; }

/* صندوق الشات */
.chat-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px; border: 1px solid rgba(255,255,255,0.1);
    height: 350px; overflow-y: auto;
    padding: 15px; margin-bottom: 15px;
    display: flex; flex-direction: column; gap: 10px;
}
.chat-box::-webkit-scrollbar { width: 4px; }
.chat-box::-webkit-scrollbar-thumb { background: var(--primary-cyan); border-radius: 5px; }

.chat-msg {
    max-width: 80%; padding: 10px 15px; border-radius: 15px;
    font-size: 0.95rem; line-height: 1.4; word-wrap: break-word;
}
.msg-user {
    background: var(--primary-cyan); color: black;
    align-self: flex-start;
    border-bottom-right-radius: 0;
}
.msg-admin {
    background: #333; color: white;
    border: 1px solid #555;
    align-self: flex-end;
    border-bottom-left-radius: 0;
}
.msg-time { display: block; font-size: 0.7rem; opacity: 0.7; margin-top: 5px; text-align: left; }
.msg-admin .msg-time { text-align: right; }
/* === نظام الإشعارات (الجرس) === */
.notification-bell {
    position: absolute; top: 20px; right: 80px; /* بجوار أيقونة البروفايل */
    font-size: 1.8rem; color: var(--primary-cyan);
    cursor: pointer; transition: 0.3s; z-index: 200;
    background: rgba(0,0,0,0.5); border-radius: 50%;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--primary-cyan);
}
.notification-bell:hover { transform: scale(1.1); background: var(--primary-cyan); color: black; }

.bell-badge {
    position: absolute; top: -5px; right: -5px;
    background: #ff4444; color: white;
    font-size: 0.75rem; font-weight: bold;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #000;
    display: none; /* مخفي افتراضياً */
}
.bell-badge.show { display: flex; animation: pop 0.3s ease; }

@keyframes pop {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.notif-item {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #555;
    padding: 12px 15px; border-radius: 8px; margin-bottom: 10px;
    cursor: pointer; transition: 0.3s; text-align: right;
}
.notif-item.unread {
    background: rgba(0, 242, 255, 0.1);
    border-left: 4px solid var(--primary-cyan);
}
.notif-item:hover { background: rgba(0, 242, 255, 0.15); }
.notif-title { margin: 0 0 5px 0; font-size: 1rem; color: white; }
.notif-msg { margin: 0; font-size: 0.85rem; color: #aaa; }
.notif-time { display: block; font-size: 0.7rem; color: #777; margin-top: 5px; }
/* إخفاء شريط التمرير من قائمة الإشعارات والتذاكر مع إبقاء عمل السكرول */
#notificationsList::-webkit-scrollbar,
#userTicketsList::-webkit-scrollbar {
    display: none; /* إخفاء في Chrome, Safari, Opera */
}

#notificationsList,
#userTicketsList {
    -ms-overflow-style: none;  /* إخفاء في IE و Edge */
    scrollbar-width: none;  /* إخفاء في Firefox */
}
/* === إرجاع أيقونة البروفايل والجرس لأقصى اليمين === */
.user-icon-container { 
    right: 20px !important; 
} 
.notification-bell { 
    right: 80px !important; 
}

/* === زر القائمة (الـ 3 شرط) === */
/* === زر القائمة (الـ 3 شرط) - نقله لليسار === */
.menu-toggle-btn {
    position: absolute; top: 20px; 
    left: 80px; /* تم التعديل من right إلى left ليكون بجوار زر الشير */
    right: auto; /* إلغاء التموضع اليمين القديم */
    font-size: 1.5rem; color: var(--primary-cyan);
    cursor: pointer; transition: 0.3s; z-index: 200;
    background: rgba(0,0,0,0.5); border-radius: 50%;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--primary-cyan);
}
.menu-toggle-btn:hover { transform: scale(1.1); background: var(--primary-cyan); color: black; }

/* === القائمة الجانبية (تفتح من اليسار بدل اليمين) === */
.sidebar-menu {
    position: fixed; top: 0; 
    left: -320px; /* تم التعديل من right إلى left لتكون مخفية يساراً */
    right: auto; /* إلغاء التموضع اليمين القديم */
    width: 300px; height: 100%;
    background: rgba(10, 10, 15, 0.95);
    border-right: 1px solid var(--primary-cyan); /* الخط من الناحية العكسية */
    border-left: none; /* إلغاء الخط القديم */
    box-shadow: 10px 0 30px rgba(0, 242, 255, 0.1);
    z-index: 9001; 
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* الأنيميشن على الـ left */
    display: flex; flex-direction: column;
    padding: 20px; overflow-y: auto;
    
    -ms-overflow-style: none; scrollbar-width: none;
}
.sidebar-menu::-webkit-scrollbar { display: none; }

/* كلاس الفتح يغير الـ left لـ 0 بدلاً من الـ right */
.sidebar-menu.active { 
    left: 0; 
    right: auto;
} 

/* تعديل حركة الأزرار داخل القائمة (تتحرك لليمين بدلاً من اليسار عند التمرير) */
.sidebar-links a:hover, .sidebar-links button:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateX(8px); 
}

/* تعديل حركة زر الإغلاق ليدور بالعكس */
.close-sidebar:hover { transform: rotate(-90deg) scale(1.1); }


/* === القائمة الجانبية نفسها === */
.sidebar-menu {
    position: fixed; top: 0; right: -320px; /* مخفية لليمين */
    width: 300px; height: 100%;
    background: rgba(10, 10, 15, 0.95);
    border-left: 1px solid var(--primary-cyan);
    box-shadow: -10px 0 30px rgba(0, 242, 255, 0.1);
    z-index: 9001; transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex; flex-direction: column;
    padding: 20px; overflow-y: auto;
    
    /* إخفاء سكرول القائمة الجانبية */
    -ms-overflow-style: none; scrollbar-width: none;
}
.sidebar-menu::-webkit-scrollbar { display: none; }
.sidebar-menu.active { right: 0; } /* تظهر عند إضافة كلاس active */

/* === عناصر القائمة الجانبية === */
.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 20px;
}
.sidebar-header h3 { margin: 0; color: white; text-shadow: 0 0 10px var(--primary-cyan); }
.close-sidebar { font-size: 1.5rem; color: #ff4444; cursor: pointer; transition: 0.3s; }
.close-sidebar:hover { transform: rotate(90deg) scale(1.1); }

.sidebar-links { display: flex; flex-direction: column; gap: 12px; }
.sidebar-links a, .sidebar-links button {
    text-decoration: none; color: white; font-size: 1rem;
    display: flex; align-items: center; gap: 15px;
    padding: 12px 15px; border-radius: 12px;
    background: rgba(255,255,255,0.03); transition: 0.3s;
    border: 1px solid transparent; width: 100%; text-align: right;
    font-family: inherit; cursor: pointer;
}
.sidebar-links i { color: var(--primary-cyan); width: 25px; text-align: center; font-size: 1.2rem; }
.sidebar-links a:hover, .sidebar-links button:hover {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateX(-8px); /* حركة لليسار عند التمرير */
}


/* === توافق الأيقونات مع شاشات الموبايل (Responsive Mobile Icons) === */
@media (max-width: 500px) {
    /* تصغير أيقونة البروفايل */
    .user-icon-container {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.4rem !important;
        right: 15px !important; /* تقليل المسافة من الحافة */
        top: 15px !important;
    }
    
    /* تصغير جرس الإشعارات وتقريبه */
    .notification-bell {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
        right: 60px !important; /* تقريبه من البروفايل */
        top: 15px !important;
    }

    /* تصغير زر الشير (باستخدام الـ Scale لأنه معقد قليلاً) */
    .share-btn-container {
        left: 15px !important;
        top: 15px !important;
        transform: scale(0.74) !important; /* تصغيره بنسبة 20% */
        transform-origin: top left;
    }

    /* تصغير زر القائمة الجانبية (3 شرط) وتقريبه */
    .menu-toggle-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.1rem !important;
        left: 65px !important; /* تقريبه من زر الشير */
        top: 15px !important;
    }
    
    /* تصغير اللوجو درجة بسيطة جداً ليكون متناسق مع الحجم الجديد */
    .main-logo {
        width: 110px;
        height: 110px;
    }
}

 .verified-img { width: 25px; height: 25px; }
        .title-neon {
            font-size: 2.2rem;
            text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
            margin: 0;
        }

        /* === زر مشاركة الرصيد الدائري === */
.transfer-btn-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.transfer-circle-btn {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.1);
}

.transfer-circle-btn:hover {
    background: var(--primary-cyan);
    color: black;
    transform: scale(1.1);
}

/* فقاعة التلميح (Tooltip) */
.transfer-tooltip {
    position: absolute;
    top: 50px;
    left: 0;
    background: var(--primary-cyan);
    color: black;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0; pointer-events: none;
    transition: 0.3s;
    transform: translateY(-10px);
}

.transfer-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 15px;
    border-width: 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent var(--primary-cyan) transparent;
}

.transfer-btn-wrapper:hover .transfer-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* === نظام "شارك رأيك" (Suggestions) === */
.sugg-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* زرين في كل صف للموبايل */
    gap: 10px;
    margin-bottom: 20px;
}
@media (min-width: 500px) {
    .sugg-types-grid { grid-template-columns: repeat(4, 1fr); } /* 4 أزرار بجوار بعض للكمبيوتر */
}

.sugg-type-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid #444;
    color: #ccc;
    padding: 12px 5px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: bold;
    transition: all 0.3s ease;
}
.sugg-type-btn:hover { background: rgba(255,255,255,0.1); }
.sugg-type-btn.active {
    background: rgba(0, 242, 255, 0.1);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.sugg-textarea {
    width: 100%;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #444;
    color: white;
    border-radius: 10px;
    padding: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: none; /* منع تغيير الحجم */
    outline: none;
    transition: 0.3s;
}
.sugg-textarea:focus { border-color: var(--primary-cyan); box-shadow: 0 0 10px rgba(0,242,255,0.1); }

.sugg-char-counter {
    display: block;
    text-align: left; /* الرقم على الشمال */
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.sugg-char-counter.warning { color: #ffbb33; }
.sugg-char-counter.danger { color: #ff4444; font-weight: bold; }
