.omg-countdown {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
            font-size: 15px;
            color: #ffffff;
            opacity: 0.9;
        }
        
        .omg-countdown-icon {
            font-size: 16px;
        }
        
        .omg-countdown-text {
            font-weight: 500;
        }
        
        .omg-countdown-timer {
            font-family: monospace;
            font-weight: 700;
            color: #ffcc00;
            background: rgba(0, 0, 0, 0.2);
            padding: 2px 8px;
            border-radius: 4px;
        }
        
        .omg-spinner {
            display: inline-block;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Base Styles */
        .omg-leaderboard {
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: #2d3748;
            background: #ffe3e2;
            border-radius: 16px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: visible;
        }
        
        /* Header */
        .omg-header {
            padding: 24px;
            background-image: url(/wp-content/uploads/geopattern.png),linear-gradient(to left,#24C6DC,#E91E63);
            background-image: url(/wp-content/uploads/geopattern.png),-webkit-linear-gradient(right,#24C6DC,#E91E63);
            color: white;
            text-align: center;
        }
        
        .omg-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }
        
        .omg-title h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 700;
        }
        
        .omg-main-trophy {
            width: 36px;
            height: 36px;
        }
        
        .omg-subtitle {
            margin: 0;
            font-size: 20px;
            text-transform: uppercase;
            font-weight: 700;
            color: #ffffff;
        }
        
        /* Tabs */
        .omg-tabs {
            display: flex;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .omg-tab {
            flex: 1;
            padding: 16px;
            text-align: center;
            text-decoration: none;
            color: #64748b;
            font-weight: 600;
            transition: all 0.2s;
            border-bottom: 3px solid transparent;
        }
        
        .omg-tab.active {
            color: #e20e6d;
            border-bottom-color: #24C6DC;
            background: #ffe3e2;
        }
        
        .omg-tab:hover {
            background: rgba(255, 255, 255, 0.7);
        }
        
        /* Search */
        .omg-search {
            padding: 25px;
            position: relative;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .omg-search-input {
            width: 100%;
            padding: 12px 16px !important;
            padding-right: 48px;
            border: 1px solid #50545a !important;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.2s;
            height: 50px;
            background-color: rgba(0, 0, 0, .1) !important;
        }
        
        .omg-search-input:focus {
            outline: none;
            border-color: #e20e6d;
            background-color: #fff !important;
            box-shadow: 0 0 0 3px rgba(226, 14, 109, 0.1);
        }
        
        .omg-search-btn {
            position: absolute;
            right: 28px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
        }
        
        /* Content */
        .omg-content {
            padding: 16px;
        }
        
        .omg-description {
            padding: 12px 16px;
            background: #ffe3e2;
            border-radius: 8px;
            font-size: 16px;
            color: #000;
            text-align: unset;
        }
        
        .omg-description h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #333;
        }
        
       .sign-in-shortcode {
			display: block !important;
			margin-top: 1rem; /* optional spacing */
		}

        
        /* Player Cards */
        .omg-player-card {
            z-index: 1;
            padding: 10px 16px;
            margin-bottom: 12px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: transform .25s cubic-bezier(.7, .98, .86, .98), box-shadow .25s cubic-bezier(.7, .98, .86, .98), opacity .5s ease-out;
            border-left: 4px solid transparent;
        }
        
        .omg-player-card:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }
        
        .omg-player-card.top-1 {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            border-left-color: #f44336;
            transform: scale(1.2);
            margin-bottom: 23px;
        }
        
        .omg-player-card.top-2 {
            background: linear-gradient(135deg, #f47e36 0%, #e06b1f 100%);
            border-left-color: #f47e36;
            transform: scale(1.15);
            margin-bottom: 20px;
        }
        
        .omg-player-card.top-3 {
            background: linear-gradient(135deg, #cd7f32 0%, #a05a1a 100%);
            border-left-color: #cd7f32;
            transform: scale(1.10);
            margin-bottom: 20px;
        }
        
        .omg-player-card.top-4 {
            background: linear-gradient(135deg, #b75aff 0%, #9545e6 100%);
            border-left-color: #b75aff;
            transform: scale(1.05);
            margin-bottom: 20px;
        }
        
        .omg-player-card.top-1 .omg-player-name,
        .omg-player-card.top-1 .omg-rank,
        .omg-player-card.top-2 .omg-player-name,
        .omg-player-card.top-2 .omg-rank,
        .omg-player-card.top-3 .omg-player-name,
        .omg-player-card.top-3 .omg-rank,
        .omg-player-card.top-4 .omg-player-name,
        .omg-player-card.top-4 .omg-rank {
            color: white;
        }
        
        .omg-player-card.top-1 .omg-stat-value,
        .omg-player-card.top-1 .omg-stat-label,
        .omg-player-card.top-2 .omg-stat-value,
        .omg-player-card.top-2 .omg-stat-label,
        .omg-player-card.top-3 .omg-stat-value,
        .omg-player-card.top-3 .omg-stat-label,
        .omg-player-card.top-4 .omg-stat-value,
        .omg-player-card.top-4 .omg-stat-label {
            color: #ffefc0 !important;
        }
        
        .omg-player-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }
        
        .omg-player-left {
            display: flex;
            align-items: center;
            flex: 1;
            min-width: 0;
            gap: 12px;
        }
        
        .omg-player-right {
            margin-left: 16px;
        }
        
        .omg-trophy-badge {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            text-align: center;
            margin-right: 15px;
        }
        
        .omg-trophy-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .omg-rank {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #64748b;
            font-size: 25px;
            margin-right: 15px;
            text-align: center;
        }
        
        .omg-player-avatar {
            margin-left: 10px;
            width: 48px;
            height: 48px;
        }
        
        .omg-player-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .omg-avatar-default {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #475569;
            font-size: 20px;
        }
        
        .omg-player-info {
            flex: 1;
            min-width: 0;
            margin-right: 16px;
            text-decoration: none;
            color: inherit;
        }
        
        .omg-player-info:hover {
            text-decoration: underline;
        }
        
        .omg-player-name {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .omg-player-stats {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }
        
        .omg-stat-value {
            font-size: 25px;
            font-weight: 700;
            color: #e20e6d;
        }
        
        .omg-stat-label {
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
        }
        
        /* Updated Pagination */
        .omg-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 24px;
            padding: 16px 0;
            flex-wrap: wrap;
        }
        
        .omg-page-info {
            width: 100%;
            text-align: center;
            margin-bottom: 12px;
            font-size: 14px;
            color: #64748b;
        }
        
        .omg-pagination .page-numbers {
            padding: 8px 16px;
            border-radius: 6px;
            background: #f8fafc;
            color: #64748b;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            border: 1px solid #e2e8f0;
        }
        
        .omg-pagination a.page-numbers:hover {
            background: #e2e8f0;
            color: #475569;
        }
        
        /* Previous/Next buttons */
        .omg-pagination .prev,
        .omg-pagination .next {
            background-color: #6a2c70;
            color: white !important;
            border-color: #6a2c70 !important;
        }
        
        .omg-pagination .prev:hover,
        .omg-pagination .next:hover {
            background-color: #5a2460 !important;
            border-color: #5a2460 !important;
        }
        
        .omg-pagination .page-numbers.current {
            background: #6a2c70;
            color: white;
            border-color: transparent;
        }
        
        .omg-pagination .page-numbers.dots {
            background: transparent;
            border: none;
        }
        
        .omg-cron-times {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-top: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.7);
        }
        
        .omg-cron-times small {
            line-height: 1.3;
        }
        
        /* Countdown container*/
        .omg-countdown {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        /* Mobile-specific pagination styles */
        @media (max-width: 480px) {
            .omg-pagination .prev .full-text,
            .omg-pagination .next .full-text {
                display: none;
            }
            
            .omg-pagination .prev::before {
                content: "<";
                display: inline-block;
            }
            
            .omg-pagination .next::after {
                content: ">";
                display: inline-block;
            }
            
            .omg-pagination .prev,
            .omg-pagination .next {
                min-width: 40px;
                text-align: center;
                padding: 8px 12px;
            }
        }
        
        /* Desktop - show full text */
        @media (min-width: 481px) {
            .omg-pagination .prev::before,
            .omg-pagination .next::after {
                display: none;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 640px) {
            .omg-header {
                padding: 20px 16px;
            }
            
            .omg-content {
                padding: 5px;
            }
            
            .omg-title h2 {
                font-size: 20px;
            }
            
            .omg-tabs {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            .omg-tab {
                min-width: 120px;
                padding: 12px 8px;
                font-size: 14px;
            }
            
            .omg-player-card {
                padding: 10px 12px;
            }
            
            .omg-player-left {
                gap: 8px;
            }
            
            .omg-player-avatar {
                width: 25px;
                height: 25px;
            }
            
            .omg-player-name {
                font-size: 15px;
            }
            
            .omg-stat-value {
                font-size: 16px;
            }
            
            .omg-stat-label {
                font-size: 13px;
            }
            
            .omg-pagination {
                gap: 4px;
            }
            
            .omg-pagination .page-numbers {
                padding: 6px 12px;
                font-size: 14px;
            }
			
			.omg-description h2 {
				font-size: 17px !important;
				line-height: 25px !important;
			}
			
			.omg-player-card.top-1 {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            border-left-color: #f44336;
            transform: scale(1.08);
            margin-bottom: 23px;
        }
		
		.omg-player-card.top-2 {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            border-left-color: #f44336;
            transform: scale(1.05);
            margin-bottom: 23px;
        }
		
		.omg-player-card.top-3 {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            border-left-color: #f44336;
            transform: scale(1.02);
            margin-bottom: 23px;
        }
		
		.omg-player-card.top-4 {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
            border-left-color: #f44336;
            transform: scale(0.99);
            margin-bottom: 23px;
        }
		
        }

/* Empty State */
.omg-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    margin: 20px 0;
}

.omg-empty-icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.omg-empty-state h3 {
    color: #2d3748;
    margin-bottom: 10px;
}

.omg-empty-state p {
    color: #64748b;
    margin-bottom: 0;
}

/* Active Tab Highlight */
.omg-tab.active {
    position: relative;
    background: #ffe3e2;
    color: #e20e6d !important;
    font-weight: 700;
}

.omg-tab.active:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #24C6DC;
}

/* Top Scorers Specific Styles */
.omg-player-card.top-1 {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%) !important;
    border-left-color: #f44336 !important;
    transform: scale(1.1) !important;
    margin-bottom: 25px !important;
    z-index: 10 !important;
}

.omg-player-card.top-2 {
    background: linear-gradient(135deg, #f47e36 0%, #e06b1f 100%) !important;
    border-left-color: #f47e36 !important;
    transform: scale(1.07) !important;
    margin-bottom: 22px !important;
    z-index: 9 !important;
}

.omg-player-card.top-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #a05a1a 100%) !important;
    border-left-color: #cd7f32 !important;
    transform: scale(1.04) !important;
    margin-bottom: 20px !important;
    z-index: 8 !important;
}

.omg-player-card.top-4 {
    background: linear-gradient(135deg, #b75aff 0%, #9545e6 100%) !important;
    border-left-color: #b75aff !important;
    transform: scale(1.01) !important;
    margin-bottom: 18px !important;
    z-index: 7 !important;
}

/* Ensure top players stand out */
.omg-player-card.top-1,
.omg-player-card.top-2,
.omg-player-card.top-3,
.omg-player-card.top-4 {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Countdown low time animation */
.omg-countdown-timer.low-time {
    animation: pulse 1s infinite;
    color: #ffcc00 !important;
}

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

/* Responsive adjustments */
@media (max-width: 640px) {
    .omg-player-card.top-1 {
        transform: scale(1.05) !important;
    }
    
    .omg-player-card.top-2 {
        transform: scale(1.03) !important;
    }
    
    .omg-player-card.top-3 {
        transform: scale(1.01) !important;
    }
    
    .omg-player-card.top-4 {
        transform: scale(1) !important;
    }
	
	.omg-trophy-badge img {
         object-fit: none !important;
        }
		
		
	.omg-trophy-badge {
		
		margin-right: auto;	
	}	
	
	.omg-rank {
		margin-right: auto;
		font-size: 20px;
	}
	
	.omg-player-avatar {
		margin-left: auto;
	}
	
}

