        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 }

a {text-decoration: none;}

 body {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    flex-direction: column;
 }

    /* Animated gradient background */
        .bg-gradient {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: 
                radial-gradient(ellipse 80% 60% at 50% -20%, rgba(120, 50, 255, 0.15), transparent),
                radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255, 0, 100, 0.08), transparent),
                radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 150, 255, 0.08), transparent);
            animation: bgPulse 8s ease-in-out infinite alternate;
        }

        @keyframes bgPulse {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-10vh) scale(1); opacity: 0; }
        }

        /* Grid lines */
        .grid-overlay {
            position: fixed;
            inset: 0;
            z-index: 1;
            background-image: 
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }


 .container {
 position: relative;
 z-index: 10;
 text-align: center;
 padding: 20px;
 width: 100%;
 max-width: 480px;
 }

 /* Lock icon */
.lock-icon img {
 width: 64px;
 height: 64px;
 margin: 0 auto 16px;
 background: linear-gradient(135deg, #7c3aed, #ec4899);
 border-radius: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 28px;
 box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
 animation: iconFloat 3s ease-in-out infinite;
 }

 @keyframes iconFloat {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-6px); }
 }

 .logo {
 font-size: 32px;
 font-weight: 900;
 letter-spacing: -1px;
 background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #ec4899 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 6px;
 }

 .subtitle {
 color: rgba(255, 255, 255, 0.4);
 font-size: 13px;
 font-weight: 500;
 letter-spacing: 4px;
 text-transform: uppercase;
 margin-bottom: 24px;
 }

 /* Access notice */
 .access-notice {
 position: relative;
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.08), rgba(255, 100, 50, 0.06));
 border: 1px solid rgba(250, 204, 21, 0.15);
 border-radius: 14px;
 padding: 16px 20px;
 margin-bottom: 28px;
 display: flex;
 align-items: center;
 gap: 12px;
 opacity: 0;
 animation: noticeAppear 0.6s ease-out 0.1s forwards;
 }

 .access-notice::before {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: 14px;
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.05), transparent);
 pointer-events: none;
 }

 .notice-icon {
 font-size: 24px;
 flex-shrink: 0;
 animation: noticeIconPulse 2.5s ease-in-out infinite;
display: block;
 }

 @keyframes noticeIconPulse {
 0%, 100% { transform: scale(1); }
 50% { transform: scale(1.1); }
 }

 .notice-text {
 text-align: left;
 }

 .notice-title {
 color: #fde68a;
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 0.5px;
 margin-bottom: 3px;
 }

 .notice-desc {
 color: rgba(255, 255, 255, 0.4);
 font-size: 11px;
 font-weight: 500;
 line-height: 1.4;
 }

 /* Action buttons in notice */
 .notice-actions {
 display: flex;
 gap: 10px;
 margin-top: 14px;
 }

 .notice-btn {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 9px 18px;
 border-radius: 10px;
 font-family: 'Inter', sans-serif;
 font-size: 12px;
 font-weight: 700;
 text-decoration: none;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 cursor: pointer;
 border: none;
 letter-spacing: 0.3px;
 white-space: nowrap;
 }

 .notice-btn-login {
 background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 0.12));
 color: #c4b5fd;
 border: 1px solid rgba(124, 58, 237, 0.2);
 }

 .notice-btn-login:hover {
 background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(124, 58, 237, 0.25));
 transform: translateY(-2px);
 box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3);
 }

 .notice-btn-vip {
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.3), rgba(255, 160, 0, 0.15));
 color: #fde68a;
 border: 1px solid rgba(250, 204, 21, 0.2);
 }

 .notice-btn-vip:hover {
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.5), rgba(255, 160, 0, 0.3));
 transform: translateY(-2px);
 box-shadow: 0 6px 24px rgba(250, 204, 21, 0.3);
 }

 .notice-btn .btn-icon {
 font-size: 14px;
 }

 @keyframes noticeAppear {
 from { opacity: 0; transform: translateY(-10px); }
 to { opacity: 1; transform: translateY(0); }
 }

 /* Divider */
 .divider {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-bottom: 20px;
 opacity: 0;
 animation: noticeAppear 0.5s ease-out 0.15s forwards;
 }

 .divider-line {
 flex: 1;
 height: 1px;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
 }

 .divider-text {
 color: rgba(255, 255, 255, 0.2);
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 3px;
 text-transform: uppercase;
 white-space: nowrap;
 }

 /* Buttons */
 .buttons {
 display: flex;
 flex-direction: column;
 gap: 14px;
 }

 .btn {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 12px;
 padding: 18px 24px;
 border: none;
 border-radius: 16px;
 font-family: 'Inter', sans-serif;
 font-size: 15px;
 font-weight: 700;
 letter-spacing: 0.5px;
 text-decoration: none;
 cursor: pointer;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 overflow: hidden;
 }

 .btn::before {
 content: '';
 position: absolute;
 inset: 0;
 border-radius: 16px;
 padding: 1px;
 background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
 -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 pointer-events: none;
 }

 .btn .icon {
 font-size: 20px;
 flex-shrink: 0;
 }

 .btn .arrow {
 position: absolute;
 right: 20px;
 font-size: 14px;
 opacity: 0;
 transform: translateX(-8px);
 transition: all 0.3s ease;
 color: inherit;
 }

 .btn:hover .arrow {
 opacity: 0.7;
 transform: translateX(0);
 }

 /* Button 1 - TOP SITES - Purple */
 .btn-sites {
 background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(124, 58, 237, 0.05));
 color: #c4b5fd;
 }
 .btn-sites:hover {
 background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(124, 58, 237, 0.15));
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(124, 58, 237, 0.25);
 }

 /* Button 2 - TOP UNDRESSER - Pink */
 .btn-undress {
 background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
 color: #f9a8d4;
 }
 .btn-undress:hover {
 background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(236, 72, 153, 0.15));
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(236, 72, 153, 0.25);
 }

 /* Button 3 - TOP TELEGRAM - Blue */
 .btn-telegram {
 background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.05));
 color: #7dd3fc;
 }
 .btn-telegram:hover {
 background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), rgba(56, 189, 248, 0.15));
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(56, 189, 248, 0.25);
 }

 /* Button 4 - PRIVAT CHAT - Gold */
 .btn-chat {
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(250, 204, 21, 0.05));
 color: #fde68a;
 }
 .btn-chat:hover {
 background: linear-gradient(135deg, rgba(250, 204, 21, 0.4), rgba(250, 204, 21, 0.15));
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(250, 204, 21, 0.25);
 }

 /* Button 5 - Free Channel - Green */
 .btn-free {
 background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0.05));
 color: #86efac;
 }
 .btn-free:hover {
 background: linear-gradient(135deg, rgba(74, 222, 128, 0.4), rgba(74, 222, 128, 0.15));
 transform: translateY(-2px);
 box-shadow: 0 8px 30px rgba(74, 222, 128, 0.25);
 }

 .btn .badge {
 font-size: 9px;
 font-weight: 800;
 padding: 2px 7px;
 border-radius: 6px;
 letter-spacing: 1px;
 text-transform: uppercase;
 flex-shrink: 0;
 }

 .badge-hot {
 background: rgba(239, 68, 68, 0.3);
 color: #fca5a5;
 }

 .badge-new {
 background: rgba(74, 222, 128, 0.3);
 color: #86efac;
 }

 .badge-vip {
 background: rgba(250, 204, 21, 0.3);
 color: #fde68a;
 }

 .badge-free {
 background: rgba(56, 189, 248, 0.3);
 color: #7dd3fc;
 }

       /* Footer */
        .footer {
            margin-top: 36px;
            color: rgba(255, 255, 255, 0.15);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 2px;
        }

        /* Entrance animation */
        .container {
            animation: fadeInUp 0.8s ease-out;
        }

        .btn {
            opacity: 0;
            animation: slideIn 0.5s ease-out forwards;
        }

        .btn:nth-child(1) { animation-delay: 0.3s; }
        .btn:nth-child(2) { animation-delay: 0.45s; }
        .btn:nth-child(3) { animation-delay: 0.6s; }
        .btn:nth-child(4) { animation-delay: 0.75s; }
        .btn:nth-child(5) { animation-delay: 0.9s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        /* Glow cursor effect */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
            pointer-events: none;
            z-index: 2;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
        }

        /* Pulse dot on VIP button */
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #facc15;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            border: 2px solid rgba(250, 204, 21, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.8); opacity: 0; }
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            position: relative;
            background: linear-gradient(145deg, #16151f, #0f0e17);
            border: 1px solid rgba(124, 58, 237, 0.15);
            border-radius: 22px;
            padding: 32px 28px 24px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(124, 58, 237, 0.08);
            transform: translateY(30px) scale(0.95);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.4);
            width: 32px;
            height: 32px;
            border-radius: 10px;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .modal-close:hover {
            background: rgba(239, 68, 68, 0.15);
            border-color: rgba(239, 68, 68, 0.3);
            color: #fca5a5;
            transform: rotate(90deg);
        }

        .modal-icon {
            text-align: center;
            font-size: 36px;
            margin-bottom: 8px;
            animation: iconFloat 3s ease-in-out infinite;
        }

        /* Modal title */
        .modal-title {
            text-align: center;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }

        .modal-subtitle {
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 22px;
            font-weight: 500;
        }

        /* Form alerts */
        .form-alert {
            padding: 10px 14px;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 16px;
        }

        .form-alert-info {
            background: rgba(56, 189, 248, 0.1);
            border: 1px solid rgba(56, 189, 248, 0.2);
            color: #7dd3fc;
        }

        .form-alert-error {
            background: rgba(239, 68, 68, 0.12);
            border: 1px solid rgba(239, 68, 68, 0.25);
            color: #fca5a5;
            margin-top: 12px;
            margin-bottom: 0;
        }

 
        /* Form divider */
        .form-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 4px;
        }

        .form-divider-line {
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-divider-text {
            color: rgba(255, 255, 255, 0.25);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Register button */
        .form-register-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(16, 185, 129, 0.08));
            border: 1px solid rgba(74, 222, 128, 0.2);
            color: #86efac;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            letter-spacing: 0.3px;
        }

        .form-register-btn:hover {
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.25), rgba(16, 185, 129, 0.15));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(74, 222, 128, 0.2);
        }

        .form-register-btn .submit-arrow {
            transition: transform 0.3s ease;
        }

        .form-register-btn:hover .submit-arrow {
            transform: translateX(4px);
        }

        /* Form */
        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .modal-form.hidden {
            display: none;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.3px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 14px;
            font-size: 14px;
            pointer-events: none;
            z-index: 1;
        }

        .form-input {
            width: 100%;
            padding: 13px 16px 13px 42px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .form-input:focus {
            border-color: rgba(124, 58, 237, 0.4);
            background: rgba(124, 58, 237, 0.06);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .form-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            user-select: none;
        }

        .form-checkbox input {
            display: none;
        }

        .checkmark {
            width: 16px;
            height: 16px;
            border: 1.5px solid rgba(255, 255, 255, 0.15);
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .form-checkbox input:checked + .checkmark {
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            border-color: #7c3aed;
        }

        .form-checkbox input:checked + .checkmark::after {
            content: '✓';
            font-size: 10px;
            color: #fff;
            font-weight: 700;
        }

        .form-link {
            font-size: 12px;
            color: #a78bfa;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .form-link:hover {
            color: #c4b5fd;
        }

        .form-submit {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 4px;
            letter-spacing: 0.3px;
        }

        .form-submit:hover {
            background: linear-gradient(135deg, #6d28d9, #9333ea);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .form-submit-reg {
            background: linear-gradient(135deg, #059669, #10b981);
        }

        .form-submit-reg:hover {
            background: linear-gradient(135deg, #047857, #059669);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
        }

        .submit-arrow {
            transition: transform 0.3s ease;
        }

        .form-submit:hover .submit-arrow {
            transform: translateX(4px);
        }

        .modal-footer {
            text-align: center;
            margin-top: 18px;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.2);
        }

        .modal-footer a {
            color: #a78bfa;
            text-decoration: none;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        /* Social login section */
        .social-login-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .social-label-text {
            font-size: 11px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .auth-social-list {
            display: flex;
            gap: 10px;
            justify-content: center;
            width: 100%;
        }

        .tg-auth-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 13px 28px;
            background: linear-gradient(135deg, rgba(0, 136, 204, 0.18), rgba(0, 136, 204, 0.06));
            border: 1px solid rgba(0, 136, 204, 0.2);
            border-radius: 12px;
            color: #7dd3fc;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            letter-spacing: 0.3px;
        }

        .tg-auth-btn:hover {
            background: linear-gradient(135deg, rgba(0, 136, 204, 0.3), rgba(0, 136, 204, 0.12));
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
            color: #bae6fd;
        }

        .tg-auth-btn:active {
            transform: translateY(0);
        }

        .tg-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            padding: 14px 24px;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            z-index: 2000;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .toast-success {
            background: linear-gradient(135deg, #059669, #10b981);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
        }

        .toast-error {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            box-shadow: 0 8px 30px rgba(239, 68, 68, 0.3);
        }

        /* Tablet */
        @media (max-width: 600px) {
            body {
                align-items: flex-start;
                padding-top: 20px;
                padding-bottom: 30px;
            }

            .container {
                max-width: 100%;
                padding: 16px;
            }

            .logo {
                font-size: 28px;
            }

            .subtitle {
                font-size: 12px;
                letter-spacing: 3px;
                margin-bottom: 20px;
            }

            .lock-icon img {
                width: 56px;
                height: 56px;
                font-size: 24px;
                border-radius: 16px;
                margin-bottom: 12px;
            }

            .access-notice {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px 16px;
                gap: 10px;
            }

            .notice-title {
                font-size: 12px;
            }

            .notice-desc {
                font-size: 10px;
            }

            .notice-actions {
                flex-direction: column;
                width: 100%;
                gap: 8px;
            }

            .notice-btn {
                justify-content: center;
                padding: 10px 16px;
                font-size: 12px;
                width: 100%;
                text-align: center;
            }

            .btn {
                padding: 15px 18px;
                font-size: 13px;
                border-radius: 14px;
                gap: 10px;
            }

            .btn .icon {
                font-size: 18px;
            }

            .btn .arrow {
                right: 14px;
                font-size: 12px;
            }

            .btn .badge {
                font-size: 8px;
                padding: 2px 5px;
            }

            .buttons {
                gap: 10px;
            }

            .footer {
                margin-top: 28px;
            }

            .cursor-glow {
                display: none;
            }

            .modal {
                padding: 24px 20px 20px;
                border-radius: 18px;
                max-height: 85vh;
            }

            .modal-icon {
                font-size: 30px;
            }

            .modal-title {
                font-size: 18px;
            }

            .modal-subtitle {
                font-size: 11px;
                margin-bottom: 18px;
            }

            .form-register-btn {
                font-size: 13px;
                padding: 13px 20px;
            }

            .form-input {
                padding: 12px 14px 12px 38px;
                font-size: 13px;
            }

            .form-submit {
                padding: 13px 20px;
                font-size: 13px;
            }

            .tg-auth-btn {
                padding: 12px 20px;
                font-size: 13px;
            }

            .tg-icon {
                width: 20px;
                height: 20px;
            }

            .social-label-text {
                font-size: 10px;
            }

            .toast {
                font-size: 12px;
                padding: 12px 18px;
                bottom: 20px;
            }
        }

        /* Small phones */
        @media (max-width: 380px) {
            .container {
                padding: 12px;
            }

            .logo {
                font-size: 24px;
            }

            .subtitle {
                font-size: 11px;
                letter-spacing: 2px;
            }

            .lock-icon img {
                width: 48px;
                height: 48px;
                font-size: 22px;
                border-radius: 14px;
            }

            .access-notice {
                padding: 12px 14px;
            }

            .notice-title {
                font-size: 11px;
            }

            .notice-desc {
                font-size: 9.5px;
            }

            .btn {
                padding: 14px 14px;
                font-size: 12px;
                gap: 8px;
            }

            .btn .icon {
                font-size: 16px;
            }

            .btn .arrow {
                right: 12px;
                font-size: 11px;
            }

            .pulse-dot {
                width: 6px;
                height: 6px;
            }
        }

 

.relative {
 padding: 16px 0;
}

.social-label, .auth-social-list {
 display: none;
}

.sidebar-block div.input_submit {
 text-shadow: 1px 1px 2px #00000037;
 display: inline-block;
 padding: 0 10px;
 text-align: center;
 border-radius: 1px;
}

.myWinCont a:where(:not(.ubtn-default)) {
 text-decoration: underline;
 color: var(--fuscous-gray);
}