
        :root {
            --purple-border: rgba(15, 11, 20, 0.3);
            --btn-gradient: linear-gradient(90deg, #7634ea, #c8a0f9);
            --error-red: #ff4d4d;
        }

        body,
        html {
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 10px var(--neon);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 25px var(--neon);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 10px var(--neon);
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .loading-ring {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(191, 149, 247, 0.1);
            border-top-color: #c8a0f9;
            border-radius: 50%;
            animation: spin 1s infinite linear;
            margin-bottom: 15px;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        #screen-loading {
            display: flex;
            height: 100vh;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--bg);
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }

        .loader-ring {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(0, 242, 255, 0.1);
            border-top-color: var(--neon);
            border-radius: 50%;
            animation: spin 1s infinite linear;
            margin-bottom: 25px;
        }

        .loading-text {
            color: var(--neon);
            font-family: monospace;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        #star-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .header-logo {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 100;
        }

        .header-logo img {
            width: 32px;
            filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
        }

        .swiper-wrapper-outer {
            width: 100%;
            height: 48vh;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .swiper {
            width: 100%;
            height: 100%;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .swiper-slide {
            width: 100% !important;
            height: 340px;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.5s ease;
            margin-top: 20px;
        }

        .swiper-slide-active {
            transform: scale(1);
        }

        .swiper-slide:not(.swiper-slide-active) {
            transform: scale(0.95);
            opacity: 0.7;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .main-container {
            position: relative;
            z-index: 10;
            padding: 10px 20px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .text-info {
            text-align: center;
            margin-bottom: 20px;
        }

        .text-info h2 {
            font-size: 1.3rem;
            margin: 0 0 5px;
        }

        .text-info p {
            color: #fff;
            font-size: 22px;
        }

        .login-box {
            width: 100%;
            max-width: 560px;
            background: linear-gradient(135deg, rgba(50, 20, 80, .6), rgba(80, 40, 120, .55) 25%, rgba(100, 60, 140, .5) 50%, rgba(140, 100, 180, .45) 75%, rgba(180, 150, 220, .4)) !important;
            border: 2px solid var(--purple-border);
            border-radius: 16px;
            padding: 25px 20px;
            box-sizing: border-box;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .login-box.error-shake {
            border-color: var(--error-red);
            animation: shake 0.4s ease-in-out;
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-8px);
            }

            50% {
                transform: translateX(8px);
            }

            75% {
                transform: translateX(-4px);
            }
        }

        .input-label {
            font-size: 1.25rem !important;
            color: #fff !important;
            display: block;
            margin-bottom: 12px;
            text-align: center;
            font-weight: 700 !important;
        }

        .iti {
            width: 100%;
        }

        .iti__flag-container {
            padding: 2px;
            border-right: 1px solid #444;
            background: rgba(255,255,255,0.08);
            border-radius: 8px 0 0 8px;
        }

        .iti__selected-flag {
            background-color: transparent !important;
        }

        #phone {
            width: 100%;
            height: 50px;
            background: transparent;
            border: 1px solid #333;
            color: #fff;
            border-radius: 8px;
            font-size: 16px;
            padding-left: 105px !important;
            outline: none;
            border: 2px solid rgba(191, 149, 247, 0.3);
        }

        .iti__country-list {
            background-color: #1a1a1a !important;
            color: #fff !important;
            border: 1px solid var(--primary) !important;
            border-radius: 8px;
            width: 90vw !important;
            max-width: 500px !important;
            min-width: 280px !important;
            position: fixed !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            box-shadow: 0 8px 32px rgba(118, 52, 234, 0.3) !important;
            z-index: 1000 !important;
            top: 50px !important;
            bottom: 50px !important;
        }

        .iti__search-wrapper {
            background: #1a1a1a;
            padding: 10px;
            position: sticky;
            top: 0;
            z-index: 9999;
            border-bottom: 1px solid rgba(118, 52, 234, 0.2);
        }

        .iti__search-field {
            width: 100% !important;
            height: 40px !important;
            background: #222 !important;
            border: 1px solid rgba(118, 52, 234, 0.4) !important;
            color: #fff !important;
            border-radius: 6px !important;
            padding: 0 12px !important;
            box-sizing: border-box !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
        }

        .iti__search-field:focus {
            background: #2a2a2a !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 10px rgba(118, 52, 234, 0.2) !important;
        }

        .iti__country {
            display: flex !important;
            align-items: center !important;
            padding: 10px 12px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
            transition: all 0.2s ease !important;
        }

        .iti__country:hover {
            background-color: rgba(118, 52, 234, 0.2) !important;
            padding-left: 16px;
        }

        .iti__country-name {
            color: #fff !important;
            font-size: 14px !important;
        }

        .iti__dial-code {
            color: var(--primary) !important;
            font-size: 12px !important;
            margin-left: auto;
            font-weight: 600;
        }

        /* .iti__flag {
            margin-right: 10px !important;
            width: 28px !important;
            height: 20px !important;
            object-fit: cover !important;
            border-radius: 2px !important;
        } */

        .iti__search-input {
            background: #333;
            color: white;
            border: 1px solid #555;
        }

        #custom-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: rgba(255, 77, 77, 0.95);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            z-index: 10000;
            transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
        }

        #custom-toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .continue-btn {
            width: 100%;
            max-width: 560px;
            height: 55px;
            background: var(--btn-gradient) !important;
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(118, 52, 234, 0.4);
        }

        .share-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .share-trigger {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            backdrop-filter: blur(5px);
        }

        .share-modal {
            display: none;
            position: absolute;
            bottom: 65px;
            right: 0;
            background: #1a1a1a;
            border: 1px solid var(--purple-border);
            padding: 10px;
            border-radius: 12px;
            width: 160px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        }

        .share-modal a {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            padding: 12px;
            font-size: 14px;
        }

        .share-modal i {
            margin-right: 12px;
            font-size: 18px;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal {
            width: 80%;
            max-width: 320px;
            background: rgba(20, 20, 20, 0.8);
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid var(--purple-border);
            z-index: 2002;
            position: relative;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal .prize-val {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            margin: 15px 0;
        }

        .code-display-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }

        .code-char {
            width: 32px;
            height: 42px;
            border: 1px solid var(--primary);
            border-radius: 6px;
            background: rgba(0, 210, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 5px var(--primary);
        }

        .copy-btn {
            width: 100%;
            max-width: 360px;
            height: 55px;
            background: var(--btn-gradient) !important;
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(118, 52, 234, 0.4);
        }

        .copy-btn:active {
            background: var(--primary);
            color: #000;
        }

        .tip-img {
            width: 100%;
            max-width: 240px;
            border-radius: 10px;
            margin: 15px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .verification-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px dashed var(--primary);
            padding: 10px;
            margin: 15px 0;
            border-radius: 8px;
        }

        .retry-btn {
            width: 100%;
            background: var(--btn-gradient) !important;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 0;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 800;
            cursor: pointer;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(118, 52, 234, 0.4);
        }

        /* .retry-btn:active {
            background: var(--btn-gradient) !important;
            border: 2px solid var(--primary);
            color: var(--primary);
            transform: scale(0.95);
        } */

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal {
            width: 80%;
            max-width: 320px;
            background: #000;
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--primary);
            z-index: 2002;
        }

        .modal .prize-val {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            margin: 15px 0;
        }

        .iti__country-list {
            max-height: 600px !important;
            overflow-y: auto !important;
        }

        .iti__search-container {
            position: sticky;
            top: 0;
            z-index: 10;
            background: #222;
        }

        .iti__search-input::placeholder {
            color: #888;
        }
    
:root {
  --primary: #c8a0f9;
  --neon: #c8a0f9;
  --bg: #000;
  --gold: #ffd700;
}
#screen-loading { display: none; }
.swiper-wrapper { display: flex; width: max-content; gap: 14px; animation: login7Slide 32s linear infinite; }
.swiper-slide { width: min(82vw, 360px) !important; flex: 0 0 min(82vw, 360px); }
@keyframes login7Slide { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 56px)); } }
.exclusive-phone-grid { display: grid; gap: 10px; }
.exclusive-country-select,
#phone.phone-input {
  width: 100%;
  height: 50px;
  background: rgba(0,0,0,.25);
  border: 2px solid rgba(191,149,247,.3);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  padding: 0 14px !important;
  outline: none;
}
.exclusive-country-select option { background: #171022; color: #fff; }
.stable-toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 9999; background: #111827; color: #fff; border-radius: 999px; padding: 10px 16px; font: 600 14px/1.2 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; box-shadow: 0 12px 34px #0008; }
.stable-copy-buffer,.stable-hidden-frame{position:fixed;left:-9999px;top:auto;width:1px;height:1px;opacity:0;pointer-events:none}
.exclusive-modal-actions { display: grid; gap: 10px; margin-top: 14px; }
.exclusive-secondary-btn { width: 100%; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 30px; color: #fff; background: rgba(255,255,255,.08); font-weight: 800; cursor: pointer; }
@media (min-width: 768px) { .swiper-wrapper-outer { height: 50vh; } .main-container { max-width: 620px; margin: 0 auto; } }
