    * {
            font-family: 'Quicksand', sans-serif;
            user-select: none;
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            background: #020209;
            color: #fff;
            height: 100vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .header {
            background: #181834;
            position: relative;
            flex: 0 0 auto;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        #playerFrame {
            width: 100%;
            height: 100%;
            border: none;
            background: #000;
            flex: 1 1 auto;
        }
        
        .server-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(20, 20, 20, 0.7);
            color: #fff;
            padding: 10px 15px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            box-shadow: rgba(255, 255, 255, 0.15) 0px 4px 20px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            z-index: 100;
            gap: 8px;
        }
        
        .server-btn:hover {
            box-shadow: rgba(255, 255, 255, 0.15) 0px 4px 20px;
            transform: scale(1.03);
        }
        
        .server-btn i {
            font-size: 16px;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background: rgba(20, 20, 20, 0.7);
            width: 90%;
            max-width: 300px;
            max-height: 80vh;
            overflow-y: auto;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .modal-header h3 {
            font-size: 1.1rem;
            color: #fff;
            margin: 0;
            text-align: center;
            width: 100%;
        }
        
        .close-btn {
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.2s ease;
            background: transparent;
            border: none;
            padding: 5px;
        }
        
        .close-btn:hover {
            color: #2575fc;
            transform: rotate(90deg);
        }
        
        .server-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .server-option {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .server-option:hover {
            background: rgba(106, 17, 203, 0.2);
            border-color: rgba(106, 17, 203, 0.5);
            transform: translateX(5px);
        }
        
        .server-option.active {
            background: rgba(106, 17, 203, 0.3);
            border-color: #6a11cb;
        }
        
        .server-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(106, 17, 203, 0.2);
            border-radius: 50%;
            margin-right: 12px;
            font-size: 16px;
            color: #6a11cb;
        }
        
        .server-info {
            flex: 1;
        }
        
        .server-name {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }
        
        .server-desc {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .server-status {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #0f0;
            box-shadow: 0 0 6px #0f0;
            margin-left: 8px;
        }
        
        .request-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            font-size: 1.2rem;
            color: #6a11cb;
            font-weight: 600;
            padding: 20px;
            max-width: 90%;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
            100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
        }
        
        @media (max-width: 480px) {
            .server-btn {
                padding: 8px 12px;
                font-size: 14px;
            }
            
            .modal-content {
                max-width: 280px;
                padding: 15px;
            }
            
            .server-option {
                padding: 10px 12px;
            }
            
            .server-icon {
                width: 28px;
                height: 28px;
                font-size: 14px;
                margin-right: 8px;
            }
            
            .server-name {
                font-size: 0.85rem;
            }
            
            .server-desc {
                font-size: 0.65rem;
            }
            
            .modal-header h3 {
                font-size: 1rem;
            }
            
            .close-btn {
                font-size: 1.2rem;
            }
        }
        @font-face {
              font-family: 'Open Sans Regular';
              font-style: normal;
              font-weight: 400;
              src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/open-sans-v18-latin-regular.woff');
          }
          @font-face {
              font-family: 'Open Sans Bold';
              font-style: normal;
              font-weight: 800;
              src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/OpenSans-Bold.woff');
          }
          @font-face {
              font-family: 'Open Sans ExtraBold';
              font-style: normal;
              font-weight: 800;
              src: url('chrome-extension://gkkdmjjodidppndkbkhhknakbeflbomf/fonts/open_sans/open-sans-v18-latin-800.woff');
          }