        * { cursor: none !important; }
        body.cursor-off, body.cursor-off * { cursor: auto !important; }

        #custom-cursor {
            position: fixed;
            width: 32px;
            height: 32px;
            background: url('/assets/img/cursor.png') no-repeat center center;
            background-size: contain;
            pointer-events: none;
            z-index: 999999;
            transform: translate(0, 0);
            transition: opacity 0.2s ease;
        }
        body.cursor-off #custom-cursor { opacity: 0; pointer-events: none; }

        #credits-modal { transition: opacity 0.4s ease, visibility 0.4s ease; }
        #credits-modal.active { opacity: 1; visibility: visible; }
        #credits-modal.hide { opacity: 0; visibility: hidden; pointer-events: none; }
        #credits-modal .modal-box { transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease; }
        #credits-modal:not(.active) .modal-box { transform: translateY(40px) scale(0.95); opacity: 0; }
        #credits-modal.active .modal-box { transform: translateY(0) scale(1); opacity: 1; }
        #credits-modal.hide .modal-box { transform: translateY(30px) scale(0.92); opacity: 0; }

        #mail-fallback { transition: opacity 0.4s ease, visibility 0.4s ease; }
        #mail-fallback.hide { opacity: 0; visibility: hidden; pointer-events: none; }
        #mail-fallback .fallback-box { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease; }
        #mail-fallback.hide .fallback-box { transform: translateY(30px) scale(0.92); opacity: 0; }

        #settings-modal { transition: opacity 0.4s ease, visibility 0.4s ease; }
        #settings-modal.active { opacity: 1; visibility: visible; }
        #settings-modal.hide { opacity: 0; visibility: hidden; pointer-events: none; }
        #settings-modal .modal-box { transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease; }
        #settings-modal:not(.active) .modal-box { transform: translateY(40px) scale(0.95); opacity: 0; }
        #settings-modal.active .modal-box { transform: translateY(0) scale(1); opacity: 1; }
        #settings-modal.hide .modal-box { transform: translateY(30px) scale(0.92); opacity: 0; }

        #loader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #001107; display: flex; justify-content: center; align-items: center;
            z-index: 100000 !important; color: #fff; font-family: sans-serif;
            transition: opacity 0.5s ease;
        }
        .loader-content { text-align: center; }
        .loader-avatar { width: 180px; height: 180px; object-fit: cover; margin-bottom: 15px; }
        .loader-content i { font-size: 40px; color: #38f882; display: block; margin-bottom: 10px; }
        .loader-content p { margin: 5px 0; font-size: 18px; font-weight: bold; }
        #progress-percentage { font-size: 14px; color: #94b897; }
        #progress-bar { width: 0%; height: 6px; background: #38f858; margin-top: 20px; border-radius: 2px; transition: width 1s ease; }

        #pre-curtain, #click-curtain { z-index: 99990 !important; }

        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 10, 5, 0.85); backdrop-filter: blur(8px);
            display: flex; justify-content: center; align-items: center;
            z-index: 10000; opacity: 0; visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-box {
            background: #001a0c; border: 1px solid #2a5c3a; border-radius: 16px;
            padding: 35px 30px; width: 90%; max-width: 520px; position: relative;
            transform: translateY(40px) scale(0.95); opacity: 0;
            transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .modal-overlay.active .modal-box { transform: translateY(0) scale(1); opacity: 1; }
        .modal-close {
            position: absolute; top: 14px; right: 18px; background: none; border: none;
            color: #5ff578; font-size: 28px; cursor: pointer; line-height: 1;
            transition: transform 0.25s ease, color 0.25s ease;
        }
        .modal-close:hover { transform: rotate(90deg); color: #ff5d5d; }
        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; margin-bottom: 6px; color: #5ff578; font-weight: 600; font-size: 14px; }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 12px 15px; border-radius: 8px; border: 1px solid #2a5c3a;
            background: #002211; color: #e0ffe8; font-size: 15px; outline: none; box-sizing: border-box;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #5ff578; box-shadow: 0 0 0 3px rgba(95, 245, 120, 0.15);
        }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .modal-btn { display: block; width: 100%; margin-top: 10px; text-align: center; cursor: pointer; }

        .settings-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 14px 0; border-bottom: 1px solid rgba(95, 245, 120, 0.15);
        }
        .settings-row:last-child { border-bottom: none; }
        .settings-row span { color: #c8e6d0; font-size: 15px; }
        .switch { position: relative; width: 48px; height: 26px; }
        .switch input { opacity: 0; width: 0; height: 0; }
        .slider {
            position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
            background: #2a5c3a; border-radius: 26px; transition: 0.3s;
        }
        .slider:before {
            position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px;
            background: #e0ffe8; border-radius: 50%; transition: 0.3s;
        }
        .switch input:checked + .slider { background: #5ff578; }
        .switch input:checked + .slider:before { transform: translateX(22px); }

        .nav-settings {
            display: inline-flex; align-items: center; gap: 6px;
            color: var(--text-color, #fff); font-size: 1.1rem; margin-left: 1.5rem;
            transition: color 0.3s;
        }
        .nav-settings:hover { color: #5ff578; }
        .nav-settings i { font-size: 1.4rem; }

        @media (max-width: 768px) {
            .nav-settings span { display: none; }
            .nav-settings {
                position: absolute;
                right: 4.5rem;
                top: 50%;
                transform: translateY(-50%);
                margin-left: 0;
                font-size: 1.5rem;
            }
        }