:root {
    --brand-color: #00ffcc; /* لون هويتك من ملف Color-09 */
    --bg-color: #06090f;
    --text-color: #ffffff;
    --accent-bg: #141824;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    margin: 0; cursor: none;
}

/* الماوس الخارق */
#custom-cursor {
    width: 25px; height: 25px;
    border: 2px solid var(--brand-color);
    border-radius: 50%;
    position: fixed; pointer-events: none;
    z-index: 10000; mix-blend-mode: difference;
    transition: transform 0.1s;
    box-shadow: 0 0 10px var(--brand-color);
}

/* تصميم العداد ليطابق الموقع الأصلي */
.gauge-wrapper {
    position: relative; width: 400px; height: 400px;
    margin: 50px auto;
    display: flex; align-items: center; justify-content: center;
}

#start-btn-main {
    width: 150px; height: 150px;
    border: 4px solid var(--brand-color);
    background: transparent; color: white;
    font-size: 2rem; font-weight: bold;
    border-radius: 50%;
    transition: 0.4s; z-index: 10;
}

#start-btn-main:hover {
    background: var(--brand-color);
    box-shadow: 0 0 50px var(--brand-color);
    color: black;
}

/* الـ Results Bar */
.results-bar {
    display: flex; justify-content: space-around;
    background: var(--accent-bg);
    padding: 20px; border-radius: 10px;
    width: 80%; margin: 20px auto;
}

.res-item span { color: #888; font-size: 0.8rem; }

/* الجسيمات بالخلفية */
#particles-js {
    position: absolute; width: 100%; height: 100%; z-index: -1;
}