 /* --- הגדרות גלובליות לכל האתר (Main Styles) --- */
    :root {
        --bg-body: #0a0a0f;
        --bg-card: #14141a;
        --bg-card-hover: #1c1c24;
        --border: rgba(255, 255, 255, 0.08);
        --primary: #FF005C; /* ורוד ניאון */
        --accent: #00F0FF; /* תכלת סייבר */
        --text-main: #ffffff;
        --text-muted: #9494a0;
        --glass: rgba(20, 20, 26, 0.7);
    }

    /* Animations */
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    /* Base Styles */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body { 
        background-color: #050508;
        color: var(--text-main);
        font-family: 'Heebo', sans-serif;
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(255, 0, 92, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 90% 60%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
        background-attachment: fixed;
        overflow-anchor: none; 
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    a { text-decoration: none; color: inherit; transition: 0.3s; }
    img { width: 100%; display: block; }
    
   
   
    .copyright { color: #444; font-size: 0.8rem; }
    /* --- עיצוב המודל --- */
    .unban-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 9999;
        display: none; /* מוסתר כברירת מחדל */
        justify-content: center;
        align-items: center;
        animation: fadeInOverlay 0.5s ease-out forwards;
    }

    .unban-card {
        background: #121212;
        width: 90%; max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
        border: 1px solid #1f2937;
        text-align: center;
        position: relative;
        transform: scale(0.8);
        opacity: 0;
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        animation-delay: 0.2s;
    }

    /* פס ירוק זוהר למעלה */
    .unban-card::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
        background: linear-gradient(90deg, #10b981, #34d399);
        box-shadow: 0 0 15px #10b981;
    }

    .unban-header {
        padding-top: 40px;
    }

    .success-icon {
        width: 80px; height: 80px;
        background: rgba(16, 185, 129, 0.1);
        border: 2px solid #10b981;
        color: #10b981;
        font-size: 40px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto;
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }

    .unban-body {
        padding: 30px;
        color: #fff;
    }

    .unban-body h2 {
        margin: 0 0 10px 0;
        font-size: 1.8rem;
        font-weight: 800;
    }

    .welcome-back {
        color: #9ca3af;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .rules-reminder {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid #374151;
        padding: 15px;
        border-radius: 10px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #d1d5db;
        margin-bottom: 30px;
    }

    .btn-confirm {
        background: #10b981;
        color: #000;
        font-weight: 700;
        border: none;
        padding: 12px 30px;
        font-size: 1rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        width: 100%;
    }

    .btn-confirm:hover {
        background: #059669;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }

    @keyframes fadeInOverlay { to { opacity: 1; } }
    @keyframes popIn { 
        to { opacity: 1; transform: scale(1); } 
    }