 .contact-wrapper {
        max-width: 1000px;
        margin: 40px auto;
        padding: 0 20px;
        position: relative;
    }

    .blur-background {
        filter: blur(6px);
        pointer-events: none;
        user-select: none;
        opacity: 0.4;
        transition: all 0.3s ease;
    }

    /* --- מודל התחברות (פופ-אפ) --- */
    .access-overlay {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 9999;
        display: none; /* מוסתר כברירת מחדל */
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        animation: fadeIn 0.3s ease-out;
    }

    .access-modal {
        background: rgba(11, 12, 16, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 3px solid var(--primary);
        padding: 40px;
        width: 100%;
        max-width: 500px;
        text-align: center;
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        border-radius: 12px;
        position: relative;
        animation: floatIn 0.4s ease-out;
    }

    .close-modal-btn {
        position: absolute;
        top: 15px; left: 15px;
        background: transparent;
        border: none;
        color: #888;
        font-size: 1.2rem;
        cursor: pointer;
        transition: 0.2s;
    }
    .close-modal-btn:hover { color: #fff; }

    .social-login-row { display: flex; justify-content: center; gap: 15px; margin-top: 20px; }
    .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);
        border-radius: 8px;
        transition: 0.3s;
        text-decoration: none;
    }
    .social-btn-big:hover { background: var(--primary); color: #000; border-color: var(--primary); transform: translateY(-3px); }

    /* --- שאר העיצוב (האדר, ריבועים, טופס) --- */
    .contact-header { text-align: center; margin-bottom: 40px; transition: 0.3s; }
    .contact-header h1 { font-size: 3rem; font-weight: 900; background: linear-gradient(45deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; margin-bottom: 10px; }
    .contact-header p { color: var(--text-muted); font-size: 1.2rem; }

    .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; animation: fadeIn 0.4s ease-out; transition: 0.3s; }
    .contact-card { background: rgba(11, 12, 16, 0.7); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 30px 20px; text-align: center; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: flex; flex-direction: column; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
    .contact-card:hover { background: rgba(11, 12, 16, 0.95); border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 240, 255, 0.1); }
    .contact-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; transition: 0.3s; }
    .contact-card:hover i { color: var(--accent); transform: scale(1.1); }
    .contact-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
    .contact-card p { color: #aaa; font-size: 0.95rem; line-height: 1.4; margin: 0; }

    .contact-card.external-link { border-style: dashed; }
    .contact-card.discord-link i { color: #5865F2; }
    .contact-card.discord-link:hover { border-color: #5865F2; }

    #formArea { display: none; animation: fadeIn 0.4s ease-out; }
    .back-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; padding: 10px 20px; border-radius: 8px; cursor: pointer; font-size: 1rem; font-weight: 600; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
    .back-btn:hover { background: rgba(255, 255, 255, 0.1); color: var(--primary); }

    .contact-form-container { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
    .form-title-area { margin-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 20px; }
    .form-title-area h2 { margin: 0 0 5px 0; color: var(--primary); font-size: 1.8rem; }
    .form-title-area p { margin: 0; color: #aaa; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .full-width { grid-column: 1 / -1; }
    .dynamic-field { display: none; }
    .apply-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #ddd; }
    .apply-group label span.req { color: var(--primary); }
    .apply-control { width: 100%; padding: 14px 18px; background: #0d0d12; border: 1px solid #2a2a35; border-radius: 8px; color: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; }
    .apply-control:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 10px rgba(0, 240, 255, 0.1); }
    .apply-btn { width: 100%; padding: 16px; background: linear-gradient(45deg, var(--primary), #d3004d); border: none; border-radius: 8px; color: #fff; font-size: 1.2rem; font-weight: 800; cursor: pointer; transition: 0.3s; text-transform: uppercase; margin-top: 20px; }
    .apply-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 0, 92, 0.3); }

    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes floatIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

    @media (max-width: 768px) {
        .form-grid { grid-template-columns: 1fr; }
        .contact-form-container { padding: 25px; }
    }