 /* --- 1. Global & Background Logic --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .gty-no-scroll {
            overflow: hidden !important;
            height: 100vh;
            width: 100%;
            position: fixed;
        }

        #gty-main-wrapper {
            filter: blur(2.5px) !important;
            pointer-events: none;
            transition: filter 0.5s ease-out;
        }

        /* --- 2. Overlay --- */
        #gty-overlay-unique {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 24, 46, 0.85);
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        #gty-overlay-unique .gty-card-box {
            background: #ffffff;
            padding: 35px 25px;
            border-radius: 28px;
            width: 100%;
            max-width: 380px;
            text-align: center;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* --- 3. CUSTOM SCROLLABLE DROPDOWN --- */
        .gty-custom-select {
            position: relative;
            text-align: left;
            margin-bottom: 20px;
        }

        /* Selected Box */
        .gty-selected-display {
            width: 100%;
            height: 56px;
            padding: 0 20px;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #f8fafc;
            cursor: pointer;
            color: #1e293b;
            font-size: 17px;
            font-weight: 500;
        }

        /* The Options Container (ONLY THIS SCROLLS) */
        .gty-options-container {
            position: absolute;
            top: 62px;
            left: 0;
            width: 100%;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            z-index: 10;
            display: none;
            /* JS se toggle hoga */

            /* SCROLL LOGIC HERE */
            max-height: 200px;
            /* Sirf 4-5 options dikhenge, baki scroll */
            overflow-y: auto;
            scrollbar-width: none;
            /* Firefox hide */
            -ms-overflow-style: none;
            /* IE hide */
        }

        /* Hide Scrollbar Chrome/Safari */
        .gty-options-container::-webkit-scrollbar {
            display: none;
        }

        .gty-option {
            padding: 12px 20px;
            cursor: pointer;
            transition: background 0.2s;
            border-bottom: 1px solid #f1f5f9;
        }

        .gty-option:hover {
            background: #f8fafc;
            color: #d4af37;
        }

        .gty-option:last-child {
            border-bottom: none;
        }

        /* --- 4. Rest of the UI --- */
        #gty-overlay-unique .gty-icon {
            font-size: 40px;
            margin-bottom: 10px;
            display: block;
        }

        #gty-overlay-unique .gty-title {
            color: #0f172a;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        #gty-overlay-unique .gty-text {
            color: #64748b;
            font-size: 14px;
            margin-bottom: 25px;
        }

        #gty-overlay-unique .gty-btn-primary {
            width: 100%;
            height: 56px;
            background: #d4af37;
            color: #ffffff;
            border: none;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
        }

        #gty-overlay-unique .gty-btn-primary:active {
            transform: scale(0.97);
        }

        .rotate-arrow {
            transform: rotate(180deg);
            transition: 0.3s;
        }