       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #2ecc71;
            --warning: #f39c12;
            --danger: #e74c3c;
            --gray: #95a5a6;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --protected: #9b59b6;
        }

        body {
            background: linear-gradient(135deg, #1a2a3a, #2c3e50);
            color: var(--light);
            line-height: 1.6;
            min-height: 100vh;
            padding: 15px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Top Bar */
        .top-bar {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow-x: auto;
        }

        .top-menu {
            display: flex;
            justify-content: center;
            gap: 15px;
            list-style: none;
            flex-wrap: nowrap;
            min-width: max-content;
        }

        .top-menu a {
            color: var(--light);
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-weight: 500;
            white-space: nowrap;
            font-size: 14px;
        }

        .top-menu a:hover {
            background: var(--secondary);
            color: white;
        }

        /* Device Icons Section */
        .devices-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            text-align: center;
        }

        .devices-section h3 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .devices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
            justify-items: center;
        }

        .device-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .device-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .device-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        /* Mobile-specific styles */
        @media (max-width: 768px) {
            .devices-section {
                padding: 10px;
            }
            
            .devices-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }
            
            .device-icon {
                width: 60px;
                height: 60px;
            }
            
            .device-icon img {
                width: 50px;
                height: 50px;
            }
        }

        /* Header */
        .main-header {
            text-align: center;
            padding: 20px 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Wave Decor */
        .decor-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }

        .decor-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 50px;
        }

        .decor-wave .shape-fill {
            fill: rgb(208 208 208);
        }

        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .logo-img {
            width: 330px;
            height: 105px;
            border-radius: 10px; /* Fixed from 60% */
            object-fit: contain; /* Changed from cover */
        }

        .header-title {
            font-size: 1.8rem;
            margin-bottom: 8px;
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .header-subtitle {
            font-size: 0.95rem;
            color: var(--gray);
            max-width: 100%;
            margin: 0 auto 15px;
            line-height: 1.5;
        }

        .quick-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .quick-link {
            background: rgba(52, 152, 219, 0.2);
            color: var(--light);
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.3);
            font-size: 14px;
            white-space: nowrap;
        }

        .quick-link:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        .language-switcher {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .lang-btn {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--light);
            padding: 8px 16px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        /* Content Grid */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr 1fr;
                gap: 25px;
            }
            
            .header-title {
                font-size: 2.2rem;
            }
            
            .logo-img {
                width: 440px;
                height: 105px;
            }
        }

        @media (min-width: 1024px) {
            .content-grid {
                gap: 30px;
            }
            
            .header-title {
                font-size: 2.5rem;
            }
            
            .logo-img {
                width: 440px;
                height: 105px;
            }
        }

        .card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .card h2 {
            color: var(--secondary);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.3rem;
        }

        .tabs {
            display: flex;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
            flex-wrap: wrap;
        }

        .tab {
            flex: 1;
            padding: 12px 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            font-size: 14px;
            min-width: 120px;
        }

        .tab.active {
            background: rgba(52, 152, 219, 0.2);
            border-bottom: 3px solid var(--secondary);
            color: var(--secondary);
        }

        .tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.05);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        textarea {
            width: 100%;
            height: 180px;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.2);
            color: var(--light);
            font-size: 14px;
            resize: vertical;
            transition: border 0.3s ease;
        }

        textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .file-input-container {
            margin: 15px 0;
        }

        .file-input-label {
            display: block;
            padding: 15px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .file-input-label:hover {
            border-color: var(--secondary);
            background: rgba(52, 152, 219, 0.1);
        }

        .url-input-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 12px;
        }

        @media (min-width: 480px) {
            .url-input-container {
                flex-direction: row;
            }
        }

        .url-input-container input {
            flex: 1;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.2);
            color: var(--light);
            font-size: 14px;
        }

        .url-input-container input:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            white-space: nowrap;
        }

        .btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn-danger {
            background: var(--danger);
        }

        .btn-danger:hover {
            background: #c0392b;
        }

        .btn-success {
            background: var(--success);
        }

        .btn-success:hover {
            background: #27ae60;
        }

        .btn-warning {
            background: var(--warning);
        }

        .btn-warning:hover {
            background: #d35400;
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: #c0392b;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 20px 0;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 25px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--secondary);
        }

        .stat-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--secondary);
        }

        .stat-card p {
            color: var(--gray);
            font-size: 0.8rem;
        }

        .results {
            margin-top: 25px;
        }

        .country-section {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .country-header {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (min-width: 640px) {
            .country-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .country-info {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .flag {
            width: 28px;
            height: 21px;
            border-radius: 3px;
            object-fit: cover;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .country-name {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .channel-count {
            background: var(--secondary);
            color: white;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        .sport-badge {
            background: var(--accent);
            color: white;
            padding: 2px 6px;
            border-radius: 12px;
            font-size: 0.7rem;
            margin-left: 5px;
        }

        .channel-list {
            max-height: 200px;
            overflow-y: auto;
            margin-top: 12px;
            padding: 8px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
        }

        .channel-item {
            padding: 6px 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }

        .channel-item:last-child {
            border-bottom: none;
        }

        .channel-icon {
            color: var(--secondary);
            font-size: 14px;
        }

        .channel-name {
            flex: 1;
        }

        .loading {
            display: none;
            text-align: center;
            padding: 25px;
        }

        .spinner {
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 4px solid var(--secondary);
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            margin: 12px 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: var(--secondary);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .message {
            padding: 12px;
            border-radius: 8px;
            margin: 12px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .message-success {
            background: rgba(46, 204, 113, 0.2);
            border: 1px solid rgba(46, 204, 113, 0.5);
            color: #2ecc71;
        }

        .message-error {
            background: rgba(231, 76, 60, 0.2);
            border: 1px solid rgba(231, 76, 60, 0.5);
            color: #e74c3c;
        }

        .message-warning {
            background: rgba(243, 156, 18, 0.2);
            border: 1px solid rgba(243, 156, 18, 0.5);
            color: #f39c12;
        }

        footer {
            text-align: center;
            padding: 30px 0 15px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-bottom: 25px;
            text-align: left;
        }

        @media (min-width: 640px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
        }

        .footer-section h3 {
            color: var(--secondary);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 6px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 15px;
            font-size: 0.8rem;
        }

        .feature-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 15px;
        }

        @media (min-width: 480px) {
            .feature-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .feature-icon {
            font-size: 1.3rem;
            color: var(--secondary);
        }

        /* Scrollbar customization */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 8px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #2980b9;
        }

        .quality-badge {
            background: #9b59b6;
            color: white;
            padding: 2px 5px;
            border-radius: 8px;
            font-size: 0.65rem;
            margin-left: 4px;
        }

        .music-badge {
            background: #1abc9c;
            color: white;
            padding: 2px 5px;
            border-radius: 8px;
            font-size: 0.65rem;
            margin-left: 4px;
        }

        .bein-badge {
            background: #e67e22;
            color: white;
            padding: 2px 5px;
            border-radius: 8px;
            font-size: 0.65rem;
            margin-left: 4px;
        }

        /* Version Badge */
        .version-badge {
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 10px;
            display: inline-block;
            vertical-align: middle;
        }

        .feature-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .feature-highlight {
            background: rgba(255,255,255,0.2);
            padding: 10px 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(5px);
        }

        .feature-highlight i {
            font-size: 1.2rem;
        }

        .new-feature-tag {
            background: var(--accent);
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 5px;
            
        }

        /* Enhanced responsive design */
        @media (max-width: 768px) {
            .feature-highlights {
                flex-direction: column;
            }
            
            .version-selector {
                flex-wrap: wrap;
            }
        }

        /* Cloud options */
        .cloud-options {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        /* Search functionality */
        .search-container {
            margin-bottom: 20px;
        }

        #channelSearch {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(0,0,0,0.2);
            color: white;
        }

        #channelSearch:focus {
            outline: none;
            border-color: var(--secondary);
        }

        /* Notification System */
        .notification-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            max-width: 350px;
        }

        .notification {
            background: rgba(44, 62, 80, 0.95);
            border-left: 4px solid var(--secondary);
            color: white;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideInRight 0.3s ease-out;
            transition: all 0.3s ease;
        }

        .notification.success {
            border-left-color: var(--success);
        }

        .notification.error {
            border-left-color: var(--danger);
        }

        .notification.warning {
            border-left-color: var(--warning);
        }

        .notification.hiding {
            transform: translateX(100%);
            opacity: 0;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .notification-icon {
            font-size: 1.2rem;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .notification-message {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .notification-close {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 1rem;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .notification-close:hover {
            opacity: 1;
        }

        /* Flag Counter */
        .flag-counter {
            text-align: center;
        }
		
	/* Chat Toggle Styles */
	.chat-toggle-container {
	    background: rgba(255, 255, 255, 0.08);
	    border-radius: 12px;
	    overflow: hidden;
	    box-shadow: var(--shadow);
	    margin-bottom: 2rem;
	    transition: all 0.3s ease;
	    width: 100%;
	    border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.chat-header {
	    background: rgba(0, 0, 0, 0.2);
	    padding: 1rem;
	    display: flex;
	    justify-content: space-between;
	    align-items: center;
	    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.chat-title {
	    display: flex;
	    align-items: center;
	    gap: 10px;
	}

	.chat-title i {
	    color: var(--secondary);
	    font-size: 1.8rem;
	}

	.chat-title h1 {
	    font-size: 1.8rem;
	    background: linear-gradient(90deg, #4CAF50, #2196F3);
	    -webkit-background-clip: text;
	    -webkit-text-fill-color: transparent;
	}

	.header-btn {
	    background: linear-gradient(90deg, var(--secondary), #21CBF3);
	    border: none;
	    color: white;
	    padding: 0.8rem 1.5rem;
	    border-radius: 30px;
	    font-size: 1rem;
	    font-weight: 600;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	    display: flex;
	    align-items: center;
	    gap: 8px;
	}

	.header-btn:hover {
	    transform: translateY(-2px);
	    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
	}

	.chat-widget {
	    width: 100%;
	    height: 400px;
	    border: none;
	    border-radius: 0 0 8px 8px;
	    overflow: hidden;
	}

	.hidden {
	    display: none;
	}

	/* Responsive adjustments */
	@media (max-width: 768px) {
	    .chat-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	    }
	    
	    .chat-title h1 {
		font-size: 1.5rem;
	    }
	    
	    .header-btn {
		width: 100%;
		justify-content: center;
	    }
	}	
	
	/* Chat Security Styles */
.security-warning-banner {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    margin-top: 8px;
    border: 1px solid #c0392b;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.chat-security-notice {
    background: #2c3e50;
    color: white;
    padding: 15px;
    border-bottom: 1px solid #34495e;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.chat-security-notice i {
    color: #3498db;
    font-size: 20px;
}

.safe-domain {
    color: #2ecc71;
    font-weight: bold;
    background: rgba(46, 204, 113, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #27ae60;
}

/* Enhanced Chat Header Styles */
.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.chat-title h2 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #4CAF50, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
	
       .flylinks-footer-container {
          font-family: 'Segoe UI', system-ui, sans-serif;
          margin-top: 50px;
        }

        .flylinks-footer-img-container {
          display: flex;
          justify-content: center;
          padding: 0 20px;
        }

        .flylinks-footer-img {
          max-width: 100%;
          height: auto;
          border-radius: 12px;
          box-shadow: 0px 20px 0px rgb(255 255 255 / 20%);
          transition: transform 0.3s ease;
        }

        .flylinks-footer-img:hover {
          transform: translateY(-5px);
        }

        .flylinks-main-footer {
          padding: 30px 20px;
          text-align: center;
          color: rgba(255, 255, 255, 0.8);
        }

        .flylinks-footer-content {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-direction: column;
          gap: 15px;
        }	
		
		/* Xtream Details Grid */
.xtream-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.xtream-detail-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid var(--secondary);
}

.xtream-detail-card h5 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xtream-detail-card .detail-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--light);
    word-break: break-all;
    font-family: 'Courier New', monospace;
}

.xtream-detail-card.copyable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.xtream-detail-card.copyable:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.connection-status {
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.connection-success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #27ae60;
}

.connection-error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #c0392b;
}

.connection-testing {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid #d35400;
}
.xtream-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border-left: 4px solid var(--secondary);
}

.xtream-stat-card h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}