        * {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #000000;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            padding-top: 45px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(40, 40, 40, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(40, 40, 40, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .main-container {
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            position: relative;
            z-index: 1;
        }

        .main-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .input-field {
            background: rgba(5, 5, 5, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            color: white;
            padding: 10px 14px;
            border-radius: 6px;
        }

        .input-field:focus {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.05);
            background: rgba(5, 5, 5, 0.9);
            outline: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            color: #ccc;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(30, 30, 30, 0.9);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .stat-card {
            background: rgba(8, 8, 8, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            overflow: hidden;
            padding: 20px;
            border-radius: 8px;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        }

        .nav-link {
            position: relative;
            padding: 6px 12px;
            transition: all 0.3s ease;
            color: #ccc;
            text-decoration: none;
            display: inline-block;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: white;
        }

        .logo-text {
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #fff 0%, #aaa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .logo-text::after {
            content: '.cc';
            background: linear-gradient(135deg, #7289da 0%, #5b73c4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .modal-overlay,
        #captchaModal,
        #maxRelaysPopup,
        #extendPopup {
            display: none !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            background: rgba(0, 0, 0, 0.85) !important;
            z-index: 2147483647 !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 20px !important;
            overflow-y: auto !important;
            margin: 0 !important;
            border: none !important;
            inset: 0 !important;
            transform: translateZ(0) !important;
        }

        .modal-overlay:not(.hidden),
        #captchaModal:not(.hidden),
        #maxRelaysPopup:not(.hidden),
        #extendPopup:not(.hidden) {
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
            pointer-events: auto !important;
        }

        .modal-content {
            background: rgba(15, 15, 15, 0.98) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 16px !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
            max-width: 500px !important;
            width: 100% !important;
            max-height: 90vh !important;
            overflow-y: auto !important;
            position: relative !important;
            animation: modalSlideIn 0.3s ease-out !important;
            z-index: 2147483647 !important;
            margin: auto !important;
            transform: translateZ(0) !important;
        }

        #extendPopup .modal-content {
            max-width: 900px !important;
            width: 95% !important;
        }

        #maxRelaysPopup .modal-content,
        #captchaModal .modal-content {
            max-width: 420px !important;
        }

        .modal-header {
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px;
            border-radius: 16px 16px 0 0;
        }

        .modal-header h3 {
            margin: 0;
            color: white;
            font-size: 20px;
            font-weight: 600;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.2s ease;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
        }

        .modal-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: rotate(90deg);
        }

        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(30, 30, 30, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: .4s;
            border-radius: 34px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 3px;
            bottom: 3px;
            background-color: rgba(255, 255, 255, 0.9);
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: rgba(114, 137, 218, 0.3);
            border-color: rgba(114, 137, 218, 0.5);
        }

        input:checked + .toggle-slider:before {
            transform: translateX(26px);
            background-color: #7289da;
        }

        .tab-button {
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            padding: 12px 20px;
            transition: all 0.3s ease;
            color: #666;
            cursor: pointer;
            font-weight: 500;
        }

        .tab-button.active {
            border-bottom-color: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .tab-button:hover:not(.active) {
            background: rgba(255, 255, 255, 0.02);
            color: #aaa;
        }

        .success-glow {
            box-shadow: 0 0 20px rgba(76, 175, 80, 0.1);
        }

        .error-glow {
            box-shadow: 0 0 20px rgba(244, 67, 54, 0.1);
        }

        .announcement-bar {
            background: linear-gradient(90deg, #7289da, #5b73c4);
            color: white;
            padding: 8px 0;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }

        .announcement-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .announcement-icon {
            animation: pulse 2s infinite;
        }

        .announcement-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 4px 8px;
            margin-left: 15px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .announcement-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .captcha-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .captcha-text {
            font-family: 'Courier New', monospace;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 3px;
            padding: 10px 20px;
            background: linear-gradient(45deg, #0a0a0a, #222);
            border: 1px solid #333;
            border-radius: 4px;
            user-select: none;
            transform: skew(-5deg);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            color: white;
        }

        .captcha-input {
            width: 100%;
            padding: 10px;
            background: #0a0a0a;
            border: 1px solid #333;
            color: white;
            text-align: center;
            font-size: 16px;
            border-radius: 4px;
        }

        .captcha-input:focus {
            border-color: #7289da;
            outline: none;
        }

        .captcha-buttons {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        .captcha-buttons button {
            flex: 1;
            padding: 8px 0;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
        }

        .captcha-refresh {
            background: #222;
            color: white;
            border: 1px solid #333 !important;
        }

        .captcha-refresh:hover {
            background: #333;
        }

        .captcha-submit {
            background: #7289da;
            color: white;
            border: 1px solid #7289da !important;
        }

        .captcha-submit:hover {
            background: #5b73c4;
        }

        .captcha-error {
            color: #f44336;
            font-size: 14px;
            text-align: center;
            margin-top: 10px;
        }

        .captcha-success {
            color: #4CAF50;
            font-size: 14px;
            text-align: center;
            margin-top: 10px;
        }

        .option-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .option-item label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px;
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .option-item label:hover {
            border-color: rgba(114, 137, 218, 0.5);
            background: rgba(15, 15, 15, 0.9);
        }

        .option-item input[type="checkbox"] {
            margin-top: 2px;
            accent-color: #7289da;
        }

        .junkie-section {
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .junkie-header {
            background: rgba(30, 30, 30, 0.9);
            padding: 12px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            cursor: pointer;
            user-select: none;
        }

        .junkie-content {
            padding: 16px;
            background: rgba(15, 15, 15, 0.6);
        }

        .hidden {
            display: none !important;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .ad-banner {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 160px;
            z-index: 40;
            background: rgba(15, 15, 15, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .ad-banner:hover {
            transform: translateY(-50%) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        }

        .ad-banner a {
            display: block;
            text-decoration: none;
        }

        .ad-banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        .ad-banner .ad-text {
            padding: 12px;
            text-align: center;
            background: linear-gradient(90deg, #7289da, #5b73c4);
            color: white;
            font-size: 12px;
            font-weight: 600;
        }

        @media (max-width: 1200px) {
            .ad-banner {
                left: 10px;
                width: 140px;
            }
        }

        @media (max-width: 992px) {
            .ad-banner {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .announcement-content {
                font-size: 12px;
                padding: 0 10px;
            }
            
            .modal-content {
                width: 100%;
            }
            
            #extendPopup .modal-content {
                width: 100%;
                max-height: 85vh;
            }
            
            .option-grid {
                grid-template-columns: 1fr;
            }
            
            .modal-header {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 40px;
            }
            
            .announcement-bar {
                font-size: 11px;
            }
            
            .modal-header {
                padding: 16px;
            }
            
            .modal-close-btn {
                top: 16px;
                right: 16px;
                width: 32px;
                height: 32px;
            }
        }

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #111;
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #444;
        }