    :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #60a5fa;
            --secondary: #7c3aed;
            --accent: #f59e0b;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --dark: #1e293b;
            --dark-2: #334155;
            --light: #ffffff;
            --light-2: #f8fafc;
            --light-3: #f1f5f9;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius-sm: 6px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-2);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
        }

        /* Header Styles */
        .main-header {
            background: var(--light);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 1000;
        }



        /* Hero Banner */
        .hero-banner {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
        }

        .hero-banner .container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .country-card-hero {
            background: var(--light);
            border-radius: var(--radius-xl);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }
/* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray-light);
            border-radius: var(--border-radius-xs);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: var(--border-radius-xs);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }


        .country-header-hero {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .country-flag-hero {
            width: 80px;
            height: 60px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .country-flag-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .country-details-hero h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .country-code-hero {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-weight: 600;
        }

        .country-stats-hero {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .stat-item-hero {
            background: var(--light-2);
            padding: 1rem;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid var(--gray-200);
        }

        .stat-value-hero {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .stat-label-hero {
            font-size: 0.8rem;
            color: var(--gray-500);
            font-weight: 600;
        }

        /* Hero Text */
        .hero-text {
            padding-right: 1rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Tabs */
        .tabs-container {
            background: var(--light);
            border-bottom: 1px solid var(--gray-200);
            padding: 1.5rem 0;
        }

        .tabs-wrapper {
            display: flex;
            justify-content: center;
        }

        .operator-tabs {
            display: flex;
            background: var(--light-2);
            border-radius: var(--radius-xl);
            padding: 0.5rem;
            gap: 0.5rem;
            border: 1px solid var(--gray-200);
            flex-wrap: wrap;
            justify-content: center;
        }

        .operator-tab {
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            border-radius: var(--radius-lg);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--gray-600);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
            min-width: 150px;
            justify-content: center;
        }

        .operator-tab.active {
            background: var(--light);
            color: var(--primary);
            box-shadow: var(--shadow);
        }

        .operator-tab.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Operators Section */
        .operators-section {
            padding: 3rem 0;
        }

        .operators-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .operators-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
        }

        .operators-count {
            background: var(--light);
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius);
            font-weight: 700;
            color: var(--primary);
            border: 2px solid var(--gray-200);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Operators Grid */
        .operators-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        /* Operator Card */
        .operator-card-link {
            display: block;
            text-decoration: none;
            color: inherit;
            background: var(--light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-200);
            height: 100%;
            cursor: pointer;
        }

        .operator-card-header {
            padding: 1.5rem;
            text-align: center;
            background: var(--light-2);
            border-bottom: 1px solid var(--gray-200);
            position: relative;
        }

        .status-indicator {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .status-active {
            background: var(--success);
        }

        .operator-logo-container {
            width: 100px;
            height: 100px;
            margin: 0 auto 1rem;
            padding: 1rem;
            background: var(--light);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--gray-200);
        }

        .operator-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .operator-name {
            font-family: 'Poppins', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .operator-type-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.25rem;
            justify-content: center;
            margin-top: 0.5rem;
        }

        .operator-type-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .badge-prepaid {
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary);
        }

        .badge-pin {
            background: rgba(124, 58, 237, 0.1);
            color: var(--secondary);
        }

        .badge-data {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
        }

        .badge-bundle {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning);
        }

        .operator-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
        }

        .operator-country-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background: var(--light-2);
            border-radius: var(--radius-sm);
            border: 1px solid var(--gray-200);
        }

        .country-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex: 1;
        }

        .country-info i {
            color: var(--primary);
        }

        .country-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
        }

        .operator-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .status-active-badge {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
        }

        .status-inactive-badge {
            background: rgba(239, 68, 68, 0.1);
            color: var(--danger);
        }

        .operator-description {
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            flex: 1;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .operator-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--light-2);
            padding: 0.75rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            border: 1px solid var(--gray-200);
        }

        .price-item {
            text-align: center;
            flex: 1;
        }

        .price-label {
            font-size: 0.7rem;
            color: var(--gray-500);
            margin-bottom: 0.25rem;
            font-weight: 700;
        }

        .price-value {
            font-size: 1rem;
            font-weight: 800;
            color: var(--primary);
        }

        .price-divider {
            width: 1px;
            height: 20px;
            background: var(--gray-300);
        }

        .select-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 0.9rem;
        }

        /* Empty State */
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 4rem 1.5rem;
            background: var(--light);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
            border: 2px dashed var(--gray-300);
        }

        .empty-state-icon {
            font-size: 3rem;
            color: var(--gray-300);
            margin-bottom: 1rem;
        }

        .empty-state-title {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .empty-state-description {
            color: var(--gray-600);
            max-width: 500px;
            margin: 0 auto 2rem;
            font-size: 1rem;
        }

        /* PROMOTIONS SECTION - COMPLETELY NEW */
        .promotions-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            display: none;
        }

        .promotions-section.active {
            display: block;
        }

        .promotions-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .promotions-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--warning), #fbbf24);
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--shadow-md);
        }

        .promotions-title {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
        }

        .promotions-subtitle {
            color: var(--gray-600);
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
        }

        .promotion-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-200);
        }

        .promotion-card-header {
            background: linear-gradient(135deg, var(--warning), #fbbf24);
            padding: 1.5rem;
            color: white;
        }

        .promotion-operator {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .promotion-operator-logo {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: var(--radius);
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .promotion-operator-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .promotion-operator-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .promotion-title-text {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.4;
        }

        .promotion-card-content {
            padding: 1.5rem;
        }

        .promotion-description {
            color: var(--gray-600);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            white-space: pre-line;
        }

        .promotion-details {
            background: var(--light-2);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }

        .promotion-detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .promotion-detail-label {
            font-weight: 600;
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        .promotion-detail-value {
            color: var(--dark);
            font-weight: 600;
        }

        .promotion-validity {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            font-size: 0.85rem;
        }

        .no-promotions {
            text-align: center;
            padding: 3rem;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow);
        }

        .no-promotions-icon {
            font-size: 3rem;
            color: var(--gray-300);
            margin-bottom: 1rem;
        }

        .no-promotions-text {
            color: var(--gray-600);
            font-size: 1.1rem;
        }

        /* Footer */
        .main-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-column p {
            color: var(--gray-300);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-400);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .operators-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .operators-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-banner .container {
                grid-template-columns: 1fr;
            }

            .promotions-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .operators-grid {
                grid-template-columns: 1fr;
            }

            .operator-tab {
                min-width: 120px;
                padding: 0.75rem 1rem;
            }
        }