/* PUBG UC Store - Midasbuy Style Professional Design */

:root {
    --primary-color: #1e3c72;
    --primary-light: #2a5298;
    --primary-dark: #1a2e5c;
    --secondary-color: #667eea;
    --accent-color: #f39c12;
    --success-color: #27ae60;
    --warning-color: #f1c40f;
    --danger-color: #e74c3c;
    --info-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --card-hover-shadow: 0 20px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Top Notification Bar */
.top-notification-bar {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--accent-color) 100%);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Main Navbar */
.main-navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(30, 60, 114, 0.2);
    padding: 1rem 0;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warning-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--light-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--warning-color) !important;
    transform: translateY(-1px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--secondary-color) 100%);
}

.hero-slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge .badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin: 0.5rem;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.phone-frame {
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.uc-display {
    text-align: center;
    padding: 20px;
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Device Showcase */
.device-showcase {
    margin-top: 3rem;
}

.device-icon {
    transition: var(--transition);
}

.device-icon:hover {
    transform: translateY(-10px);
}

/* Quick Access Bar */
.quick-access-bar {
    background: var(--dark-color);
    border-top: 3px solid var(--primary-color);
}

.quick-access-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Popular Games Section - Professional Design */
.popular-games {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.professional-game-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.professional-game-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.professional-game-card.featured-card {
    border: 3px solid #ffbb33;
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.professional-game-card.featured-card:hover {
    border-color: #ff9800;
    box-shadow: 0 25px 50px rgba(255, 152, 0, 0.2);
}

.card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    position: relative;
}

.professional-game-card:hover .game-image-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.professional-game-card:hover .card-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.game-logo {
    text-align: center;
}

.game-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.professional-game-card:hover .game-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.badge-discount {
    background: linear-gradient(135deg, #ffbb33, #ff9800);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 187, 51, 0.3);
}

.badge-bonus {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.badge-fire {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.badge-new {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.badge-sports {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.badge-casual {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.badge-more {
    background: linear-gradient(135deg, #607d8b, #455a64);
    color: white;
    box-shadow: 0 4px 15px rgba(96, 125, 139, 0.3);
}

.card-content {
    padding: 0;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.game-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.game-purchase-btn {
    margin-top: auto;
}

.professional-btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.professional-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.professional-btn:hover::before {
    left: 100%;
}

.professional-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #4285f4);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.professional-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

.professional-btn.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.professional-btn.btn-outline:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

/* Professional Game Backgrounds */
.pubg-mobile-professional {
    background: linear-gradient(135deg, #4a69bd 0%, #3742fa 100%);
}

.delta-force-professional {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.honor-kings-professional {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.age-empires-professional {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
}

.arena-breakout-professional {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.arena-valor-professional {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.undawn-professional {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.nba-infinite-professional {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.arena-breakout-infinite-professional {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
}

.dragonheir-professional {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.ludo-world-professional {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
}

.more-games-professional {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

/* How it Works Section - Simple & Clean */
.how-it-works {
    background: var(--light-bg);
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.step-card.featured-step {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, var(--white) 100%);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    margin-top: 1rem;
}

.step-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-features {
    margin-top: 1rem;
}

/* Trust Indicators - Simple */
.trust-indicators-simple {
    margin-top: 2rem;
}

.trust-item-simple {
    padding: 1rem;
    transition: var(--transition);
}

.trust-item-simple:hover {
    transform: translateY(-3px);
}

/* Game Pages - Improved UI/UX */
.game-header-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.game-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.game-badges .badge {
    font-size: 0.875rem;
    font-weight: 500;
}

.game-visual-modern {
    position: relative;
}

.game-bg-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.game-bg-circle i {
    font-size: 3rem;
    color: white;
}

/* Improved Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.package-card-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e9ecef;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.package-card-modern.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05) 0%, var(--white) 100%);
    position: relative;
}

.package-card-modern.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-header-modern {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.package-currency {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.package-price-modern {
    text-align: center;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.original-price {
    font-size: 1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.package-features-modern {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feature-modern {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-color);
}

.feature-modern i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.bonus-highlight {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

.discount-highlight {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin: 1rem 0;
}

.buy-btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.buy-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.buy-btn-modern:hover::before {
    left: 100%;
}

.buy-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
}

/* Modal Improvements */
.modal-modern .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-modern .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.modal-modern .form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
}

.modal-modern .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .package-amount {
        font-size: 2.5rem;
    }
    
    .game-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .game-bg-circle {
        width: 100px;
        height: 100px;
    }
    
    .game-bg-circle i {
        font-size: 2.5rem;
    }
}

.game-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

/* Game Background Images - Professional Design */
.pubg-mobile-bg {
    background: linear-gradient(135deg, #4a69bd 0%, #3742fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.pubg-mobile-bg::before {
    content: '🎮';
    font-size: 3.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.pubg-mobile-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.delta-force-bg {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.delta-force-bg::before {
    content: '⚔️';
    font-size: 3.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.delta-force-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.honor-kings-bg {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.honor-kings-bg::before {
    content: '👑';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.age-empires-bg {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.age-empires-bg::before {
    content: '🏰';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.arena-breakout-bg {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.arena-breakout-bg::before {
    content: '🔫';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.arena-valor-bg {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.arena-valor-bg::before {
    content: '⚡';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.undawn-bg {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.undawn-bg::before {
    content: '🧟';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.nba-infinite-bg {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.nba-infinite-bg::before {
    content: '🏀';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.arena-breakout-infinite-bg {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.arena-breakout-infinite-bg::before {
    content: '🎯';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.dragonheir-bg {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.dragonheir-bg::before {
    content: '🐉';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.ludo-world-bg {
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.ludo-world-bg::before {
    content: '🎲';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.more-games-bg {
    background: linear-gradient(135deg, #95a5a6 0%, #bdc3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.more-games-bg::before {
    content: '➕';
    font-size: 3rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.game-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.game-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.featured-game {
    border: 2px solid var(--warning-color);
    position: relative;
}

.featured-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warning-color), var(--accent-color));
}

/* UC Packages */
.uc-packages {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.uc-package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.uc-package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.uc-package-card.most-popular {
    border: 3px solid var(--warning-color);
    transform: scale(1.05);
}

.uc-package-card.most-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--danger-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.package-header {
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.uc-amount {
    margin-bottom: 1rem;
}

.uc-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.uc-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-top: 0.5rem;
}

.bonus-uc {
    margin-top: 1rem;
}

.bonus-badge {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.package-body {
    padding: 1.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.total-uc {
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 600;
}

.package-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-item i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
}

.buy-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.buy-btn:hover::before {
    left: 100%;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

/* How it Works */
.how-it-works {
    background: var(--white);
}

.step-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 2rem 0 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Payment Methods */
.payment-method-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.payment-icon {
    margin-bottom: 1rem;
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.payment-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: #666;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
    color: var(--light-color);
}

.footer-brand {
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-description {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warning-color);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.copyright-text {
    opacity: 0.8;
}

.footer-badges .badge {
    margin-right: 0.5rem;
    padding: 8px 12px;
    font-size: 0.8rem;
}

/* Admin UI polish */
.admin-navbar {
	box-shadow: 0 2px 14px rgba(0,0,0,.18);
}

.admin-navbar .navbar-brand {
	font-weight: 700;
}

.admin-table thead th {
	font-weight: 700;
}

.card.shadow-sm {
	border-radius: 16px;
}

.card .badge {
	border-radius: 999px;
}

/* Admin Sidebar Layout */
.admin-layout .admin-sidebar {
	background: #111827;
	color: #e5e7eb;
	min-height: calc(100vh - 56px);
	position: sticky;
	top: 56px;
	padding: 16px 12px;
}

.admin-sidebar .nav-link {
	color: #e5e7eb;
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 6px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
	background: rgba(255,255,255,.08);
	color: #fff;
}

.admin-layout .content-wrapper {
	padding: 16px;
}

@media (max-width: 991.98px) {
	.admin-layout .admin-sidebar { position: static; min-height: auto; }
}

/* Package Cards - Redesigned */
.uc-package-card {
	background: #ffffff;
	border: 1px solid #eaeef4;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(16,24,40,.06);
	transition: transform .18s ease, box-shadow .18s ease;
}

.uc-package-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(16,24,40,.12);
}

.uc-package-card .package-header {
	background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 40%, #f8fafc 100%);
	padding: 28px 20px 18px;
}

.uc-package-card .uc-number {
	font-size: 2.75rem;
	font-weight: 800;
	color: #1f2937;
}

.uc-package-card .bonus-badge {
	background: linear-gradient(135deg, #22c55e, #16a34a);
	border: none;
}

.uc-package-card .package-body {
	padding: 18px 20px 20px;
}

.uc-package-card .current-price {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0f766e;
}

.uc-package-card .buy-btn {
	border-radius: 14px;
	background: linear-gradient(135deg, #3b82f6, #4f46e5);
	box-shadow: 0 8px 22px rgba(59,130,246,.25);
}

.uc-package-card.most-popular {
	border: 2px solid #60a5fa;
	box-shadow: 0 14px 40px rgba(59,130,246,.18);
}

/* Game Page Styles */
.game-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.game-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
}

.game-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.game-breadcrumb .breadcrumb-item.active {
    color: var(--warning-color);
}

.game-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.game-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.game-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.large-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.large-icon::before {
    font-size: 4rem;
}

/* Game Cards Responsive */
@media (max-width: 768px) {
    .col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-lg-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .game-title {
        font-size: 0.9rem;
    }
    
    .btn-sm {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Features & Benefits Section */
.features-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-stats .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
}

/* Statistics Section */
.statistics {
    background: var(--white);
}

.stat-card {
    padding: 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #666;
    font-size: 0.95rem;
}

/* Professional Games Responsive Design */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .professional-game-card {
        border-radius: 16px;
    }
    
    .card-image-container {
        height: 160px;
    }
    
    .game-icon {
        width: 48px;
        height: 48px;
    }
    
    .card-body {
        padding: 16px;
    }
    
    .game-name {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .professional-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .card-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .uc-package-card.most-popular {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .quick-access-item {
        margin-bottom: 0.5rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .professional-game-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .uc-number {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Popular Games: limit to two cards and enforce two-column layout */
.popular-games .games-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

/* Hide all cards after the first two */
.popular-games .games-grid .professional-game-card:nth-child(n+3) {
    display: none !important;
}

/* Auth Pages - Modern Clean Design */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* User Dashboard - Professional UI */
.bg-gradient {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.dashboard-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid rgba(226,232,240,.9);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0,0,0,.06);
	color: #1f2937;
	transition: transform .2s ease, box-shadow .2s ease;
}

.dashboard-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(0,0,0,.1);
}

.dashboard-card h3 {
	font-weight: 800;
	margin: 0 0 6px 0;
}

.dashboard-card p {
	margin: 0;
	color: #6b7280;
}

.card .card-header {
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
}

.btn.btn-primary.p-3 {
	border-radius: 14px;
	background: linear-gradient(135deg, var(--primary-color), #4285f4);
	border: none;
	box-shadow: 0 8px 24px rgba(26,115,232,.25);
}

.btn.btn-outline-primary.w-100.p-3 {
	border-radius: 14px;
}

.table thead th {
	border-top: none;
}

.badge.status-pending,
.badge.status-processing,
.badge.status-completed,
.badge.status-failed,
.badge.status-cancelled {
	border-radius: 999px;
	padding: 6px 10px;
	font-weight: 600;
}

.badge.status-pending { background: #fff3cd; color: #856404; }
.badge.status-processing { background: #fff0e1; color: #b45309; }
.badge.status-completed { background: #d1fae5; color: #065f46; }
.badge.status-failed { background: #fee2e2; color: #991b1b; }
.badge.status-cancelled { background: #e5e7eb; color: #374151; }

.loading {
	width: 24px;
	height: 24px;
	border: 3px solid #e5e7eb;
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	display: inline-block;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.auth-card {
    width: 100%;
    max-width: 560px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(226,232,240,.8);
}

.auth-header {
    padding: 28px 28px 16px 28px;
    background: linear-gradient(135deg, rgba(26,115,232,.08) 0%, rgba(26,115,232,0) 100%);
}

.auth-body {
    padding: 24px 28px 28px 28px;
}

.auth-card .form-label {
    font-weight: 600;
    color: var(--dark-color);
}

.auth-card .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    transition: var(--transition);
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26,115,232,.15);
}

.auth-card .input-group .btn {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.auth-card .btn.btn-primary {
    height: 48px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #4285f4);
    border: none;
    box-shadow: 0 6px 20px rgba(26,115,232,.25);
}

.auth-card .btn.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(26,115,232,.35);
}

.auth-card .btn.btn-outline-primary {
    height: 46px;
    font-weight: 600;
    border-radius: 12px;
}

.auth-card .form-check-label {
    color: #5f6b7a;
}

.auth-footer-link,
.auth-card a.text-decoration-none {
    color: var(--primary-color);
}

/* Subtle separators */
.auth-card hr {
    opacity: .12;
}

@media (max-width: 576px) {
    .auth-card { border-radius: 16px; }
    .auth-header { padding: 22px 20px 10px 20px; }
    .auth-body { padding: 20px; }
}

@media (max-width: 768px) {
    .popular-games .games-grid {
        grid-template-columns: 1fr;
    }
}