   :root {
        --bot-primary: #00f3ff;
        --bot-danger: #ff0055;
        --bot-success: #00ff88;
        --glass-panel: rgba(20, 20, 30, 0.75);
    }
    
    /* --- CSS למודל חסימה וטשטוש --- */
    .bot-dashboard-wrapper {
        position: relative;
        min-height: 80vh;
    }

    .blur-content {
        filter: blur(1px);
        pointer-events: none; /* מונע לחיצות על הרקע */
        user-select: none;
        opacity: 0.6;
        transition: 0.3s;
    }

    .access-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: flex-start; /* שיהיה קצת למעלה ולא באמצע בול */
        padding-top: 150px;
    }

    .access-modal {
        background: rgba(11, 12, 16, 0.9);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--bot-primary);
        padding: 40px;
        width: 100%;
        max-width: 500px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        animation: floatIn 0.5s ease-out;
    }

    @keyframes floatIn {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .modal-icon { font-size: 3rem; margin-bottom: 20px; color: var(--bot-primary); }
    .modal-title { font-family: 'Teko', sans-serif; font-size: 2.5rem; margin: 0; line-height: 1; color: #fff; text-transform: uppercase; }
    .modal-desc { font-family: 'Heebo', sans-serif; color: #aaa; margin: 15px 0 30px; font-size: 1.1rem; }

    .btn-connect-twitch {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #6441a5; /* Twitch Purple */
        color: white;
        padding: 12px 30px;
        font-family: 'Heebo', sans-serif;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
        border: none;
        transition: 0.3s;
        clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }
    .btn-connect-twitch:hover { background: #7d5bbe; transform: translateY(-2px); box-shadow: 0 0 20px rgba(100, 65, 165, 0.5); color: #fff; }

    .social-login-row { display: flex; justify-content: center; gap: 15px; }
    .social-btn-big {
        width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255,255,255,0.05);
        color: #fff; font-size: 1.5rem;
        border: 1px solid rgba(255,255,255,0.1);
        transition: 0.3s;
        text-decoration: none;
    }
    .social-btn-big:hover { background: var(--bot-primary); color: #000; border-color: var(--bot-primary); }
/* --- עדכון: כפתור הפעלה והערה --- */
    .bot-status-toggle { 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        background: rgba(255,255,255,0.05); 
        padding: 10px 25px; 
        border-radius: 50px; 
        border: 1px solid rgba(255,255,255,0.1); 
        cursor: pointer; 
        transition: all 0.3s ease;
    }
    
    .bot-status-toggle:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-2px);
    }

    /* עיצוב האייקון */
    .powerLIVE-icon {
        font-size: 1.2rem;
        transition: all 0.3s ease;
        color: #666; /* ברירת מחדל - אפור (כבוי) */
        filter: drop-shadow(0 0 0 transparent);
    }

    /* מצב פעיל - ירוק וזוהר */
    .bot-status-toggle.active .powerLIVE-icon {
        color: var(--bot-success);
        filter: drop-shadow(0 0 8px var(--bot-success));
    }
    
    .bot-status-toggle.active {
        border-color: var(--bot-success);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
    }

    /* טקסט ההסבר הקטן */
    .visibility-note {
        font-size: 0.85rem;
        color: #FFFFFF;
        margin-top: 8px;
        text-align: center;
        max-width: 220px;
        line-height: 1.3;
        opacity: 0.7;
        transition: 0.3s;
    }
    
    .bot-status-toggle:hover + .visibility-note {
        opacity: 1;
        color: #aaa;
    }
    /* --- סגנונות מקוריים של הבוט (נשמרים) --- */
    .bot-dashboard { max-width: 1400px; margin: 50px auto; padding: 20px; color: #fff; direction: rtl; font-family: 'Heebo', sans-serif;}
    .dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .status-indicator { width: 12px; height: 12px; border-radius: 50%; background: #444; box-shadow: 0 0 5px #444; transition: 0.3s; }
    .status-indicator.active { background: var(--bot-success); box-shadow: 0 0 15px var(--bot-success); }
    .settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 25px; }
    .glass-card { background: var(--glass-panel); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 25px; transition: transform 0.3s; display: flex; flex-direction: column;}
    .glass-card:hover { transform: translateY(-5px); border-color: var(--bot-primary); }
    .card-title { font-size: 1.4rem; font-weight: bold; margin-bottom: 20px; color: var(--bot-primary); display: flex; align-items: center; gap: 10px; }
    .form-group { margin-bottom: 15px; }
    .form-label { display: block; margin-bottom: 5px; font-size: 0.9rem; color: #ccc; }
    .glass-input, .glass-textarea { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-family: inherit; }
    .glass-textarea { resize: vertical; min-height: 80px; }
    .glass-input:focus, .glass-textarea:focus { outline: none; border-color: var(--bot-primary); }
    .switch-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .switch { position: relative; display: inline-block; width: 50px; height: 26px; }
    .switch input { opacity: 0; width: 0; height: 0; }
    .slider { position: absolute; cursor: pointer; inset: 0; background-color: #333; transition: .4s; border-radius: 34px; }
    .slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
    input:checked + .slider { background-color: var(--bot-primary); }
    input:checked + .slider:before { transform: translateX(24px); }
    .items-list { list-style: none; padding: 0; margin-top: 15px; max-height: 250px; overflow-y: auto; flex-grow: 1; }
    .list-item { background: rgba(255,255,255,0.03); padding: 10px; border-radius: 8px; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
    .btn-delete { background: none; border: none; color: var(--bot-danger); cursor: pointer; transition: 0.2s; }
    .btn-delete:hover { transform: scale(1.2); }
    .btn-primary { background: var(--bot-primary); color: #000; font-weight: bold; padding: 10px 20px; border: none; border-radius: 8px; cursor: pointer; width: 100%; margin-top: 10px; transition: 0.3s; }
    .btn-primary:hover { box-shadow: 0 0 20px rgba(0, 243, 255, 0.4); }
    .poll-preview { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 10px; margin-top: 15px; border-right: 3px solid var(--bot-success); }
