/* Gaming Site CSS - InovaPin Style */
:root {
    /* Dark Theme Colors */
    --dark-bg-primary: #0a0e1a;
    --dark-bg-secondary: #1a1d2e;
    --dark-bg-card: #252837;
    --dark-text-primary: #ffffff;
    --dark-text-secondary: #a0a3bd;
    
    /* Light Theme Colors */
    --light-bg-primary: #ffffff;
    --light-bg-secondary: #f8f9fa;
    --light-bg-card: #ffffff;
    --light-text-primary: #212529;
    --light-text-secondary: #6c757d;
    
    /* Gaming Colors */
    --gaming-blue: #0ea5e9;
    --gaming-purple: #8b5cf6;
    --gaming-pink: #ec4899;
    --gaming-orange: #f97316;
    --gaming-green: #10b981;
    --gaming-red: #ef4444;
    --gaming-yellow: #f59e0b;
    
    /* Current Theme Variables */
    --bg-primary: var(--dark-bg-primary);
    --bg-secondary: var(--dark-bg-secondary);
    --bg-card: var(--dark-bg-card);
    --text-primary: var(--dark-text-primary);
    --text-secondary: var(--dark-text-secondary);
}

/* Light Theme */
.light-theme {
    --bg-primary: var(--light-bg-primary);
    --bg-secondary: var(--light-bg-secondary);
    --bg-card: var(--light-bg-card);
    --text-primary: var(--light-text-primary);
    --text-secondary: var(--light-text-secondary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Bildirim İkonu */
.notification-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notification-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.05);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--gaming-green) 0%, #059669 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--gaming-yellow) 0%, #d97706 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--gaming-red) 0%, #dc2626 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

/* Dashboard Dark Theme Styles */
.dashboard-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--gaming-blue);
}

.dashboard-stat-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--gaming-blue);
}

.dashboard-stat-icon {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-welcome-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.dashboard-welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    pointer-events: none;
}

.dashboard-welcome-card .card-body {
    position: relative;
    z-index: 1;
}

.dashboard-quick-actions {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.dashboard-quick-actions .btn {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 700;
    padding: 12px 20px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: #ffffff !important;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.dashboard-quick-actions .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.5s;
}

.dashboard-quick-actions .btn:hover::before {
    left: 100%;
}

.dashboard-quick-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Modern button colors with better contrast */
.dashboard-quick-actions .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashboard-quick-actions .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.dashboard-quick-actions .btn-success {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashboard-quick-actions .btn-success:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.dashboard-quick-actions .btn-warning {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashboard-quick-actions .btn-warning:hover {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.dashboard-quick-actions .btn-info {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dashboard-quick-actions .btn-info:hover {
    background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

/* Mobile responsive for dashboard buttons */
@media (max-width: 768px) {
    .dashboard-quick-actions .btn {
        padding: 10px 15px;
        min-height: 45px;
        font-size: 14px;
    }
    
    .dashboard-quick-actions .btn i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .dashboard-quick-actions .btn {
        padding: 8px 12px;
        min-height: 40px;
        font-size: 13px;
    }
    
    .dashboard-quick-actions .btn i {
        font-size: 14px;
    }
}

.dashboard-list-group {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.dashboard-list-group .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.dashboard-list-group .list-group-item:last-child {
    border-bottom: none;
}

.dashboard-list-group .list-group-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-empty-state {
    color: var(--text-secondary);
}

.dashboard-empty-state i {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Dark theme specific adjustments */
.dark-theme .card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dark-theme .card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dark-theme .text-muted {
    color: var(--text-secondary) !important;
}

.dark-theme .btn-outline-primary {
    border-color: var(--gaming-blue);
    color: var(--gaming-blue);
}

.dark-theme .btn-outline-primary:hover {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
}

/* Dark Theme Button Contrast Fixes */
.dark-theme .btn-outline-warning {
    border-color: #ffc107;
    color: #ffc107;
    background: transparent;
}

.dark-theme .btn-outline-warning:hover {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.dark-theme .btn-outline-success {
    border-color: #28a745;
    color: #28a745;
    background: transparent;
}

.dark-theme .btn-outline-success:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.dark-theme .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
    background: transparent;
}

.dark-theme .btn-outline-danger:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.dark-theme .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
    background: transparent;
}

.dark-theme .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
}

.dark-theme .btn-outline-info {
    border-color: #17a2b8;
    color: #17a2b8;
    background: transparent;
}

.dark-theme .btn-outline-info:hover {
    background: #17a2b8;
    border-color: #17a2b8;
    color: white;
}

/* Solid Button Contrast Fixes */
.dark-theme .btn-primary {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
    font-weight: 600;
}

.dark-theme .btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.dark-theme .btn-success {
    background: #28a745;
    border-color: #28a745;
    color: white;
    font-weight: 600;
}

.dark-theme .btn-success:hover {
    background: #218838;
    border-color: #218838;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.dark-theme .btn-warning {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 600;
}

.dark-theme .btn-warning:hover {
    background: #e0a800;
    border-color: #e0a800;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.dark-theme .btn-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
    font-weight: 600;
}

.dark-theme .btn-danger:hover {
    background: #c82333;
    border-color: #c82333;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.dark-theme .btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    font-weight: 600;
}

.dark-theme .btn-secondary:hover {
    background: #5a6268;
    border-color: #5a6268;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.dark-theme .btn-info {
    background: #17a2b8;
    border-color: #17a2b8;
    color: white;
    font-weight: 600;
}

.dark-theme .btn-info:hover {
    background: #138496;
    border-color: #138496;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* Small Button Fixes */
.dark-theme .btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    font-weight: 600;
}

/* Button Group Fixes */
.dark-theme .btn-group .btn {
    border-radius: 0;
}

.dark-theme .btn-group .btn:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.dark-theme .btn-group .btn:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

/* Marketplace Button Fixes */
.dark-theme .marketplace-stats h3 {
    color: var(--gaming-blue);
    font-weight: 700;
    font-size: 2.5rem;
}

.dark-theme .marketplace-stats p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.dark-theme .product-card .btn-primary {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark-theme .product-card .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #6f42c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: white;
}

/* Pagination Fixes */
.dark-theme .pagination .page-link {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dark-theme .pagination .page-link:hover {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
}

.dark-theme .pagination .page-item.active .page-link {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
}

/* Filter Section Fixes */
.dark-theme .filter-section {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dark-theme .filter-section h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dark-theme .filter-section .form-label {
    color: var(--text-primary);
    font-weight: 500;
}

.dark-theme .filter-section .form-control,
.dark-theme .filter-section .form-select {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.dark-theme .filter-section .form-control:focus,
.dark-theme .filter-section .form-select:focus {
    background: var(--bg-secondary);
    border-color: var(--gaming-blue);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Orders Modern Button Fixes - New Specific Classes */
.orders-filter-buttons .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.orders-filter-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Active Filter Button */
.orders-btn-active {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
}

/* Inactive Filter Buttons */
.orders-btn-inactive {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.orders-btn-inactive:hover {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%) !important;
    border-color: transparent !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4) !important;
}

/* Removed old conflicting styles - using new specific classes instead */

/* Order Action Buttons */
.dark-theme .orders-modern-card .btn-sm {
    font-size: 0.8rem;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Details Button */
.orders-details-btn {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%) !important;
    border: none !important;
    color: white !important;
    font-size: 0.8rem !important;
    padding: 8px 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.orders-details-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.orders-details-btn:hover {
    background: linear-gradient(135deg, #6610f2 0%, #007bff 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.5) !important;
    color: white !important;
    text-decoration: none !important;
}

.orders-details-btn:hover::before {
    left: 100% !important;
}

/* Start Shopping Button */
.orders-start-shopping-btn {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.orders-start-shopping-btn:hover {
    background: linear-gradient(135deg, var(--gaming-purple) 0%, var(--gaming-blue) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Marketplace Buttons */
.orders-approve-sale-btn,
.orders-approve-purchase-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none !important;
    color: white !important;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2) !important;
}

.orders-approve-sale-btn:hover,
.orders-approve-purchase-btn:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3) !important;
    color: white !important;
}

.orders-reject-sale-btn,
.orders-reject-purchase-btn {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%) !important;
    border: none !important;
    color: white !important;
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2) !important;
}

.orders-reject-sale-btn:hover,
.orders-reject-purchase-btn:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #dc3545 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3) !important;
    color: white !important;
}

/* Modal Buttons */
.orders-modal-cancel-btn {
    background: rgba(108, 117, 125, 0.8) !important;
    border: 1px solid rgba(108, 117, 125, 0.5) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.orders-modal-cancel-btn:hover {
    background: rgba(108, 117, 125, 1) !important;
    color: white !important;
    transform: translateY(-1px) !important;
}

.orders-modal-confirm-btn {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2) !important;
}

.orders-modal-confirm-btn:hover {
    background: linear-gradient(135deg, var(--gaming-purple) 0%, var(--gaming-blue) 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3) !important;
    color: white !important;
}

.dark-theme .orders-modern-card .btn-primary.btn-sm {
    background: linear-gradient(135deg, var(--gaming-blue) 0%, var(--gaming-purple) 100%);
    border: none;
    color: white;
}

.dark-theme .orders-modern-card .btn-primary.btn-sm:hover {
    background: linear-gradient(135deg, var(--gaming-purple) 0%, var(--gaming-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.dark-theme .orders-modern-card .btn-success.btn-sm {
    background: #28a745;
    border: none;
    color: white;
}

.dark-theme .orders-modern-card .btn-success.btn-sm:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.dark-theme .orders-modern-card .btn-danger.btn-sm {
    background: #dc3545;
    border: none;
    color: white;
}

.dark-theme .orders-modern-card .btn-danger.btn-sm:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Badge Fixes */
.dark-theme .badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
    border-radius: 6px;
}

.dark-theme .badge.bg-success {
    background: #28a745 !important;
    color: white !important;
}

.dark-theme .badge.bg-warning {
    background: #ffc107 !important;
    color: #000 !important;
}

.dark-theme .badge.bg-danger {
    background: #dc3545 !important;
    color: white !important;
}

.dark-theme .badge.bg-info {
    background: #17a2b8 !important;
    color: white !important;
}

.dark-theme .badge.bg-secondary {
    background: #6c757d !important;
    color: white !important;
}

.dark-theme .badge.bg-primary {
    background: var(--gaming-blue) !important;
    color: white !important;
}

/* Orders Modern Page Dark Theme */
.orders-modern-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.orders-modern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--gaming-blue);
}

.orders-modern-list-group {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.orders-modern-list-group .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.orders-modern-list-group .list-group-item:last-child {
    border-bottom: none;
}

.orders-modern-list-group .list-group-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.orders-modern-empty-state {
    color: var(--text-secondary);
}

.orders-modern-empty-state i {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Notifications Page Dark Theme */
.notifications-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.notifications-list-group {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.notifications-list-group .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.notifications-list-group .list-group-item:last-child {
    border-bottom: none;
}

.notifications-list-group .list-group-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.notifications-empty-state {
    color: var(--text-secondary);
}

.notifications-empty-state i {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gaming-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gaming-purple);
}

/* Original Top Bar - Centered */
.original-top-bar {
    background: var(--bg-card);
    padding: 5px 0;
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.light-theme .original-top-bar {
    background: var(--light-bg-card);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.original-top-bar .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.social-icons-left {
    display: flex;
    gap: 8px;
}

.social-icons-left a {
    color: #8a8d9e;
    font-size: 22px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons-left a:hover {
    color: #ffffff;
}

.top-menu-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.top-menu-right span {
    color: #b8bcc8;
    font-size: 11px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.top-menu-right span:hover {
    color: #ffffff;
}

.top-menu-right .bakiye-yukle {
    color: #10b981 !important;
    font-weight: 500;
}

/* Original Header - Centered */
.original-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.light-theme .original-header {
    background: var(--light-bg-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.original-header .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
}

.header-logo i {
    color: #0ea5e9;
    font-size: 18px;
}

.logo-text {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header-search {
    max-width: 600px;
}

.search-container {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: #374151;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: #0ea5e9;
    border: none;
    padding: 10px 16px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #0284c7;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-section {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.login-section:hover {
    color: #0ea5e9;
}

.login-section i {
    font-size: 18px;
}

.login-text div {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.login-text small {
    font-size: 11px;
    color: #9ca3af;
}

.cart-section {
    position: relative;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-section:hover {
    color: #0ea5e9;
}

.cart-section i {
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Original Navigation - Centered */
.original-nav {
    background: var(--bg-card);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.light-theme .original-nav {
    background: var(--light-bg-card);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.original-nav .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-pill {
    background: transparent;
    color: #b8bcc8;
    border: 1px solid #4a4d5e;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-pill:hover {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
    transform: translateY(-1px);
}

.nav-pill.active {
    background: #0ea5e9;
    color: white;
    border-color: #0ea5e9;
}

.nav-pill.special-green {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.nav-pill.special-green:hover {
    background: #059669;
    border-color: #059669;
}

.nav-pill.special-blue {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.nav-pill.special-blue:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.nav-pill i {
    font-size: 12px;
}

/* Original Game Icons - Centered and Improved */
.original-game-icons {
    background: var(--bg-card);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    /* Sticky behavior removed - normal scroll behavior */
    position: relative;
}

.light-theme .original-game-icons {
    background: var(--light-bg-card);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.original-game-icons .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.game-icons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 70px;
}

.game-icons-row::-webkit-scrollbar {
    display: none;
}

.game-icon-item {
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-icon-item:hover {
    transform: translateY(-3px) scale(1.05);
}

.game-icon-item img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #4a4d5e;
    transition: all 0.3s ease;
    padding: 0px;
    background: #3a3d4e;
    object-fit: contain;
}

.game-icon-item:hover img {
    border-color: #0ea5e9;
    background: #0ea5e9;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

/* Original Main Content - Centered Layout */
.original-main-content {
    background: var(--bg-secondary);
    padding: 20px 0;
    min-height: 440px;
    transition: all 0.3s ease;
}

.light-theme .original-main-content {
    background: var(--light-bg-secondary);
}

.original-main-content .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Fire Icon */
.left-sidebar {
    width: 90px;
    flex-shrink: 0;
}

.fire-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.fire-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.fire-icon i {
    color: white;
    font-size: 32px;
}

/* Center Slider */
.center-banner {
    flex: 1;
}

.full-slider {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%; /* Daha yaxşı bir oran üçün tənzimləndi */
    transition: all 0.3s ease;
}

.light-theme .full-slider {
    background: var(--light-bg-secondary);
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-row {
    width: 100%;
    height: 100% !important;
    display: block !important;
    overflow: hidden !important;
}

.slider-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bu, shəklin nisbətini qoruyaraq konteyneri doldurmasını təmin edir */
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.slider-row:hover .slider-detail-img {
    transform: scale(1.02);
}

/* Modern Slick Slider Styles */
.slick-prev,
.slick-next {
    background: linear-gradient(45deg, #0ea5e9, #8b5cf6) !important;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    z-index: 100;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3) !important;
}

.slick-prev:hover,
.slick-next:hover {
    background: linear-gradient(45deg, #8b5cf6, #ec4899) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
}

.slick-prev:before,
.slick-next:before {
    color: white !important;
    font-size: 16px !important;
    font-weight: bold !important;
}

.slick-prev {
    left: 15px !important;
}

.slick-next {
    right: 15px !important;
}

.slick-dots {
    bottom: 15px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 6px !important;
}

.slick-dots li {
    margin: 0 !important;
}

.slick-dots li button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.slick-dots li button:before {
    display: none !important;
}

.slick-dots li.slick-active button {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.6) !important;
}

/* Slider Loading Animation */
.slider-content,
.slider-content .slick-list,
.slider-content .slick-track,
.slider-content .slick-slide,
.slider-content .slick-slide > div {
    height: 100% !important;
    overflow: hidden !important;
}

.slider-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
    animation: slideProgress 3s infinite;
    z-index: 10;
}

@keyframes slideProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Slider Banners - Hidden */
.slider-banners {
    display: none !important;
}

.light-theme .slider-banners {
    display: none !important;
}

.slider-banner {
    display: none !important;
}

.slider-banner img {
    display: none !important;
}

/* Gaming Products Section */
.gaming-products-section {
    background: var(--bg-secondary);
    padding: 40px 0;
    transition: all 0.3s ease;
}

.gaming-products-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Products Grid Layout */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.product-category {
    margin-bottom: 50px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.light-theme .gaming-products-section {
    background: var(--light-bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.category-title {
    color: #0ea5e9;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid #0ea5e9;
    padding-left: 15px;
}

/* Product Cards */
.product-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 15px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.light-theme .product-card {
    background: linear-gradient(145deg, var(--light-bg-card), var(--light-bg-secondary));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
    border-color: #0ea5e9;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 120px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.product-badge.valorant-badge {
    background: linear-gradient(45deg, #ff6b9d, #ec4899);
}

.product-badge.ml-badge {
    background: linear-gradient(45deg, #10b981, #059669);
}

.product-badge.account-badge {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.product-info .price {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.account-details {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Specific Card Types */
.pubg-card {
    border-color: #ff6b35;
}

.pubg-card:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.valorant-card {
    border-color: #ff6b9d;
}

.valorant-card:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    border-color: #ff6b9d;
}

.ml-card {
    border-color: #10b981;
}

.ml-card:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}

.ff-card {
    border-color: #ff6b35;
}

.lol-card {
    border-color: #c89b3c;
}

.steam-card {
    border-color: #171a21;
}

.roblox-card {
    border-color: #00a2ff;
}

.gp-card {
    border-color: #34a853;
}

.account-card {
    border-color: #8b5cf6;
    height: auto;
}

.account-card:hover {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.account-card .product-image {
    height: 140px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .product-image {
        height: 100px;
    }
    
    .account-card .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h4 {
        font-size: 1rem;
    }
    
    /* Mobil için ürün kartları */
    .card-image-section {
        height: 240px; /* Dikey resimler için çok daha uygun */
    }
    
    .wide-card {
        min-height: 360px;
    }
}

/* Tablet için ürün kartları */
@media (min-width: 769px) and (max-width: 1024px) {
 
    
    .wide-card {
        min-height: 400px;
    }
}

/* Button Customizations */
.btn-purple {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    border: none;
    color: white;
}

.btn-purple:hover {
    background: linear-gradient(45deg, #7c3aed, #6d28d9);
    color: white;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, #0f1419, #1a1d2e);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.statistics-section .original-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon fill="rgba(14,165,233,0.05)" points="0,0 50,25 100,0 100,100 0,100"/></svg>');
    background-size: 200px 200px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

.stat-card {
    background: linear-gradient(145deg, #1e2139, #252841);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: all 0.7s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3);
    border-color: #0ea5e9;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0ea5e9, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.stat-label {
    color: #b8bcc8;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Features Section - Hide Old */
.features-section {
    display: none !important;
}

.features-section .container {
    display: none !important;
}

.feature-card {
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #3a3d4e;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #0ea5e9, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.4);
}

.feature-card h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
}

/* Testimonials Section - Hide Old */
.testimonials-section {
    display: none !important;
}

.testimonials-section .container {
    display: none !important;
}

.testimonial-card {
    background: linear-gradient(145deg, #1e2139, #252841);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 100px;
    color: rgba(139, 92, 246, 0.1);
    font-family: serif;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.testimonial-stars {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.author-info h5 {
    color: white;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info span {
    color: #9ca3af;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
    background: #1a1d2e;
    padding: 60px 0;
}

.newsletter-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.newsletter-card {
    background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
    border-radius: 25px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="25" cy="25" r="10"/><circle fill="rgba(255,255,255,0.05)" cx="75" cy="75" r="15"/></svg>');
    background-size: 100px 100px;
    animation: float 15s infinite linear;
}

.newsletter-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 15px 20px;
    font-size: 16px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 15px 25px;
    font-weight: 600;
    border: none;
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: linear-gradient(45deg, #ff8e35, #ffb135);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 32px;
    }
    
    .newsletter-card {
        padding: 30px 20px;
    }
    
         .newsletter-content h3 {
         font-size: 1.5rem;
     }
 }

/* Modern Live Support Widget */
.live-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.live-support .btn {
    background: linear-gradient(45deg, #10b981, #059669) !important;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-support .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: all 0.6s;
}

.live-support .btn:hover::before {
    left: 100%;
}

.live-support .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
    background: linear-gradient(45deg, #059669, #047857) !important;
}

.live-support .btn i {
    animation: pulse 2s infinite;
}

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

/* Theme Toggle Modernization */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.theme-toggle .btn {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.theme-toggle .btn:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(45deg, #7c3aed, #6d28d9) !important;
}

.theme-toggle .btn i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Slider Mobile Responsive Fixes */
@media (max-width: 1200px) {
    .main-layout {
        max-width: 100%;
        padding: 0 10px;
        gap: 15px;
    }
    
    .center-banner {
        max-width: none;
        min-width: auto;
        flex: 1;
    }
    
    .right-sidebar {
        width: 320px;
    }
    
    .full-slider {
        padding-bottom: 45%;
    }
    
    .slider-content,
    .slider-content .slick-track,
    .slider-content .slick-slide,
    .slider-content .slick-list,
    .slider-content .slick-slide > div,
    .slider-row {
        height: 100% !important;
        max-height: 100% !important;
    }
}

@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .left-sidebar {
        width: 100%;
        text-align: center;
    }
    
    .center-banner {
        width: 100%;
        max-width: 100%;
    }
    
    .right-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .full-slider {
        padding-bottom: 50%;
    }
    
    .slider-content,
    .slider-content .slick-track,
    .slider-content .slick-slide,
    .slider-content .slick-list,
    .slider-content .slick-slide > div,
    .slider-row {
        height: 100% !important;
        max-height: 100% !important;
    }
}

@media (max-width: 768px) {
    .full-slider {
        padding-bottom: 48%; /* Hündürlük bir daha azaldıldı */
    }
    
    .slider-content,
    .slider-content .slick-track,
    .slider-content .slick-slide,
    .slider-content .slick-list,
    .slider-content .slick-slide > div,
    .slider-row {
        height: 100% !important;
        max-height: 100% !important;
    }
    
    .fire-icon {
        width: 50px;
        height: 50px;
    }
    
    .fire-icon i {
        font-size: 24px;
    }
    
    .slick-prev,
    .slick-next {
        width: 35px !important;
        height: 35px !important;
    }
    
    .slick-prev:before,
    .slick-next:before {
        font-size: 14px !important;
    }
    
    .slick-dots {
        bottom: 10px !important;
        gap: 4px !important;
    }
    
    .slick-dots li button {
        width: 8px !important;
        height: 8px !important;
    }
}

@media (max-width: 576px) {
    .main-layout {
        padding: 0 5px;
    }
    
    .full-slider {
        padding-bottom: 40%; /* Hündürlük istəyə uyğun olaraq 40% edildi */
    }
    
    .slider-content,
    .slider-content .slick-track,
    .slider-content .slick-slide,
    .slider-content .slick-list,
    .slider-content .slick-slide > div,
    .slider-row {
        height: 100% !important;
        max-height: 100% !important;
    }
    
    .slick-prev,
    .slick-next {
        width: 30px !important;
        height: 30px !important;
    }
    
    .slick-prev:before,
    .slick-next:before {
        font-size: 12px !important;
    }
    
    .slick-dots {
        bottom: 8px !important;
        gap: 3px !important;
    }
    
    .slick-dots li button {
        width: 6px !important;
        height: 6px !important;
        border-width: 1px !important;
    }
}



/* Right Gaming Cards */
.right-sidebar {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pubg-card, .valorant-card, .ml-card, .ff-card {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    border-radius: 15px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    min-height: 110px; /* Hündürlük 10% azaldıldı (140px -> 126px) */
    cursor: pointer;
    transition: all 0.3s ease;
}

.pubg-card:hover, .valorant-card:hover, .ml-card:hover, .ff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.pubg-card::before, .valorant-card::before, .ml-card::before, .ff-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.pubg-card:hover::before, .valorant-card:hover::before, .ml-card:hover::before, .ff-card:hover::before {
    right: -30%;
}

.pubg-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 87px; /* Hündürlük 10% azaldıldı (104px -> 94px) */
}

.pubg-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.pubg-header i {
    font-size: 28px;
    color: white;
}

.pubg-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.pubg-text span {
    font-size: 18px;
    font-weight: 900;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.uc-btn, .vp-btn, .pubg-btn, .valorant-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    color: #1a1d2e !important;
    padding: 10px 32px !important;
    border-radius: 30px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    align-self: flex-start !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    backdrop-filter: blur(10px) !important;
    text-shadow: none !important;
    min-width: 160px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
}

.uc-btn:hover, .vp-btn:hover, .pubg-btn:hover, .valorant-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 1) !important;
    color: #1a1d2e !important;
}

.vp-btn {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1d2e !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.vp-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    color: #1a1d2e !important;
}

.ml-btn, .ff-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #1a1d2e;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ml-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.ff-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 1) !important;
}

.card-characters {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.character-1, .character-2, .character-3, .character-4 {
    position: absolute;
    width: 40px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    filter: blur(1px);
}

.character-1 {
    top: 20%;
    right: 10px;
    transform: rotate(-5deg);
}

.character-2 {
    bottom: 20%;
    right: 30px;
    transform: rotate(5deg);
}

.character-3 {
    top: 30%;
    right: 15px;
    transform: rotate(-3deg);
}

.character-4 {
    bottom: 30%;
    right: 35px;
    transform: rotate(3deg);
}

/* Popular Games Modern Section */
.popular-games-modern {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1419 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.popular-games-modern .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.popular-games-grid {
    margin-top: 20px;
}

.modern-games-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(26, 29, 46, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px;
}

.modern-games-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #0ea5e9 rgba(255, 255, 255, 0.1);
}

.modern-games-scroll::-webkit-scrollbar {
    height: 8px;
}

.modern-games-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modern-games-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

/* Modern Game Cards */
.modern-game-card {
    min-width: 380px;
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modern-game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.4);
    border-color: #0ea5e9;
}

.game-image-section {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.game-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.modern-game-card:hover .game-image-section img {
    transform: scale(1.1);
}

.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-badge.trending {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    animation: pulse 2s infinite;
}

.game-badge.hot {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    color: white;
}

.game-badge.legendary {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #1a1d2e;
}

.game-badge.popular {
    background: linear-gradient(45deg, #0ea5e9, #3b82f6);
    color: white;
}

.game-badge.rising {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.game-badge.platform {
    background: linear-gradient(45deg, #374151, #1f2937);
    color: white;
}

.game-stats {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.player-count {
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 600;
}

.game-content {
    padding: 25px;
}

.game-title-section h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-genre {
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.game-description {
    color: #b8bcc8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.game-rating .stars {
    color: #ffd700;
    font-size: 16px;
}

.rating-text {
    color: #9ca3af;
    font-size: 12px;
}

.game-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-btn {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.price-range {
    color: #9ca3af;
    font-size: 12px;
    text-align: center;
    font-style: italic;
}

/* Live Support Button */
.live-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.live-support .btn {
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.theme-toggle .btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: var(--bg-card);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.theme-toggle .btn:hover {
    background: var(--gaming-yellow);
    color: white;
    transform: rotate(180deg);
}

/* Button Styles */
.btn-primary {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gaming-purple);
    border-color: var(--gaming-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.btn-warning {
    background: var(--gaming-orange);
    border-color: var(--gaming-orange);
    color: white;
}

.btn-warning:hover {
    background: var(--gaming-yellow);
    border-color: var(--gaming-yellow);
    color: white;
}

.btn-outline-light {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--gaming-blue);
    border-color: var(--gaming-blue);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .game-nav-pills {
        flex-wrap: wrap;
    }
    
    .game-icons-scroll {
        gap: 10px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .character-placeholder {
        margin-top: 20px;
    }
    
    .character-placeholder i {
        font-size: 4rem !important;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .live-support {
        bottom: 20px;
        right: 20px;
    }
    
    .theme-toggle {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .main-banner {
        padding: 20px;
        min-height: 300px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .uc-card {
        padding: 15px;
        min-height: 120px;
    }
    
   
}

/* Loading Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glow Effects */
.glow-effect {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.glow-effect:hover {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
}

/* Card Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, var(--gaming-blue), var(--gaming-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom Badge */
.custom-badge {
    background: linear-gradient(45deg, var(--gaming-pink), var(--gaming-purple));
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Success animations */
.success-animation {
    animation: successPulse 0.6s ease-in-out;
}

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

/* Flash Sale Section */
.flash-sale {
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d3e 100%);
    position: relative;
    overflow: hidden;
}

.flash-sale .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.flash-sale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,107,53,0.05)" cx="20" cy="20" r="10"/><circle fill="rgba(14,165,233,0.05)" cx="80" cy="80" r="15"/></svg>');
    background-size: 100px 100px;
    animation: float 15s infinite linear;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.timer-label {
    color: #ff6b35;
    font-weight: 600;
    font-size: 18px;
}

.timer-display {
    display: flex;
    gap: 15px;
}

.timer-unit {
    background: linear-gradient(45deg, #ff6b35, #ff8e35);
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    min-width: 60px;
}

.timer-unit span {
    display: block;
    color: white;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.timer-unit small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
}

.sale-card {
    background: linear-gradient(145deg, #2a2d3e, #1e2139);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.sale-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    animation: pulse 2s infinite;
}

.sale-content {
    padding: 20px;
}

.sale-content h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 16px;
}

.new-price {
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
}

/* Features Section Improvements */
.features {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1419 100%);
}

.features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-card {
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid #3a3d4e;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0ea5e9, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Testimonials Section Improvements */
.testimonials {
    background: linear-gradient(135deg, #0f1419, #1a1d2e);
}

.testimonials .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-card {
    background: linear-gradient(145deg, #2a2d3e, #1e2139);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    border-color: #8b5cf6;
}

.stars i {
    color: #ffd700;
    margin-right: 5px;
}

.testimonial-card p {
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
}

.user-info h6 {
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Game Cards Improvements */
.game-card {
    background: linear-gradient(145deg, #2a2d3e, #1e2139);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Game Image 1:1 Ratio Support */
.game-card .card-image-section {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.game-card .card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .card-image-section img {
    transform: scale(1.05);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
    border-color: #0ea5e9;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    transform: translateY(0);
}

.game-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .countdown-timer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timer-display {
        gap: 10px;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 8px 12px;
    }
    
    .timer-unit span {
        font-size: 20px;
    }
    
    .sale-content h5 {
        font-size: 16px;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1d2e 0%, #16213e 100%);
    padding: 50px 0 20px;
    color: var(--text-primary);
}

.main-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-title {
    color: var(--gaming-blue);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: var(--gaming-blue);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gaming-blue);
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-item i {
    width: 16px;
    text-align: center;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
}

.copyright-text {
    color: var(--text-secondary);
    margin: 0;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.payment-methods i {
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    transform: scale(1.2);
}

/* Purple button for Mobile Legends */
.btn-purple {
    background: var(--gaming-purple);
    border-color: var(--gaming-purple);
    color: white;
}

.btn-purple:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

/* Additional Game Actions */
.game-actions {
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-actions {
    opacity: 1;
}

.game-actions .btn {
    font-size: 11px;
    padding: 5px 10px;
}

/* Mobile Responsive - Original Style */
@media (max-width: 768px) {
    .original-top-bar {
        padding: 3px 0;
        font-size: 10px;
    }
    
    .top-menu-right {
        gap: 10px;
        font-size: 9px;
    }
    
    .social-icons-left {
        gap: 5px;
    }
    
    .original-header {
        padding: 5px 0;
    }
    
    .header-logo {
        min-width: 100px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .header-search {
        margin: 0 10px;
    }
    
    .search-input {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .search-btn {
        padding: 8px 12px;
    }
    
    .login-text div {
        font-size: 12px;
    }
    
    .login-text small {
        font-size: 10px;
    }
    
    .original-nav {
        padding: 8px 0;
    }
    
    .nav-container {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .nav-pill {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .game-icons-row {
        gap: 10px;
    }
    
    .game-icon-item img {
        width: 40px;
        height: 40px;
        padding: 0px;
    }
    
    .main-layout {
        flex-direction: column;
        gap: 15px;
    }
    
    .left-sidebar {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .center-banner {
        max-width: 100%;
    }
    
    .valorant-banner {
        padding: 20px;
        min-height: 300px;
    }
    
    .banner-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .gece-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .gece-line1, .gece-line2 {
        letter-spacing: 4px;
    }
    
    .etkinlik-text {
        font-size: 1.4rem;
    }
    
    .basladi-text {
        font-size: 1.6rem;
    }
    
    .banner-character {
        width: 150px;
        height: 200px;
    }
    
    .right-sidebar {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }
    
    .pubg-card {
        flex: 1;
        min-height: 126px; /* Hündürlük 10% azaldıldı */
        padding: 15px;
    }
    
    .pubg-header i {
        font-size: 24px;
    }
    
    .pubg-text span {
        font-size: 16px;
    }
    
    .uc-btn, .vp-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .original-top-bar {
        display: none;
    }
    
    .header-logo {
        min-width: 80px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .header-search {
        margin: 0 8px;
    }
    
    .nav-pill {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .game-icon-item img {
        width: 35px;
        height: 35px;
        padding: 0px;
    }
    
    .valorant-banner {
        padding: 15px;
        min-height: 250px;
    }
    
    .gece-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .etkinlik-text {
        font-size: 1.2rem;
    }
    
    .basladi-text {
        font-size: 1.4rem;
    }
    
    .vp-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .right-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .pubg-card {
        min-height: 108px; /* Hündürlük 10% azaldıldı */
        padding: 12px;
    }
}

/* Additional CSS for slider image filling */
.slider-content img,
.slider-detail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    max-width: 100% !important;
    min-height: 100% !important;
}

/* Slick Slider container aspect ratio fix */
.slick-list,
.slick-track {
    height: 100% !important;
}

/* Büyük slider resimleri için özel responsive davranış */
.slider-detail img,
.slider-content img {
    transform: scale(1) !important;
    transition: transform 0.3s ease !important;
}

/* Ekran boyutuna göre resim ölçeklendirmesi */




/* Wide Screen Optimizations */
@media (min-width: 1400px) {
    .gaming-products-section .container-fluid,
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .features-section .container,
    .testimonials .container,
    .testimonials-section .container,
    .newsletter-section .container {
        max-width: 1320px;
    }
    
    .products-grid {
        max-width: 1100px;
    }
    
    .statistics-section .original-main-content {
        max-width: 1100px;
    }
    
    .product-category .row {
        justify-content: center;
    }
    
    .product-category .col-xl-2 {
        max-width: 180px;
        flex: 0 0 180px;
    }
}

/* Medium Screen Optimizations */
@media (min-width: 992px) and (max-width: 1399px) {
    .gaming-products-section .container-fluid,
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .testimonials .container {
        max-width: 1140px;
    }
    
    .products-grid {
        max-width: 1000px;
    }
    
    .statistics-section .original-main-content {
        max-width: 1000px;
    }
    
    .product-category .row {
        justify-content: center;
    }
}

/* General Layout Improvements */
.section-spacing {
    margin: 60px 0;
}

/* Improved Product Grid */
.product-category .row.g-3 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Better centering for product cards */
.product-category .col-xl-2,
.product-category .col-lg-3,
.product-category .col-md-4,
.product-category .col-sm-6 {
    display: flex;
    justify-content: center;
}

/* Small Screen Optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .gaming-products-section .container-fluid,
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .testimonials .container {
        max-width: 720px;
    }
    
    .products-grid {
        max-width: 680px;
    }
    
    .statistics-section .original-main-content {
        max-width: 680px;
    }
    
    .product-category .row {
        justify-content: center;
    }
}

/* Ultra-Wide Screen Optimizations */
@media (min-width: 1600px) {
    .gaming-products-section .container-fluid,
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .features-section .container,
    .testimonials .container,
    .testimonials-section .container,
    .newsletter-section .container,
    .main-footer .container {
        max-width: 1400px;
    }
    
    .products-grid {
        max-width: 1200px;
    }
    
    .statistics-section .original-main-content {
        max-width: 1200px;
    }
    
    .main-layout {
        max-width: 1400px;
    }
} 

/* Wide Cards Design */
.wide-cards-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #0ea5e9 transparent;
    touch-action: pan-x; /* Yalnız horizontal scroll */
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Mobil üçün global touch optimizasiyası */
@media (max-width: 768px) {
    /* Body üçün vertical scroll */
    body {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ana content üçün vertical scroll */
    .original-main-content,
    main.container {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Horizontal scroll container-lər üçün */
    .wide-cards-container,
    .products-scroll-wrapper,
    .subcategory-scroll {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Card hover state-lərini söndür */
    .card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Card active state */
    .card:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
}

.wide-cards-container::-webkit-scrollbar {
    height: 8px;
}

.wide-cards-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.wide-cards-container::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

.wide-cards-scroll {
    display: flex;
    gap: 15px;
    padding: 5px;
    min-width: fit-content;
}

.wide-card {
    background: linear-gradient(135deg, #2a2d3e 0%, #1e2139 100%);
    border-radius: 15px;
    width: 100%; /* Changed from 200px to 100% for responsive grid */
    height: 100%; /* Kartların eşit yükseklikte olması için */
    min-height: 420px; /* Dikey resimler için çok daha yüksek minimum yükseklik */
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.wide-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.4);
    border-color: #0ea5e9;
}

.card-image-section {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Resmin tamamını göster */
    transition: transform 0.3s ease;
}

.wide-card:hover .card-image-section img {
    transform: scale(1.1);
}

/* Card badges removed as requested */

.card-content {
    padding: 12px;
    min-height: 120px; /* Dikey resimler için daha fazla içerik alanı */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* İçeriği yukarıdan başlat */
    flex: 1;
    gap: 4px; /* Elemanlar arasında boşluk */
}

.uc-amount {
    font-size: 32px;
    font-weight: 900;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.vp-amount {
    font-size: 28px;
    font-weight: 900;
    color: #ff6b9d;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.game-title {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    margin-bottom: 4px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    max-height: 2.4em; /* 2 satır için */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    hyphens: auto;
}

.rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    min-height: 18px; /* Eşit yükseklik için */
}

.stars {
    color: #ffd700;
    font-size: 14px;
}

.rating-count {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
}

.price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0;
    margin-top: auto;
}

.current-price {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1;
}

.old-price {
    font-size: 16px;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1;
    margin-top: 2px;
}

/* Platform icons removed as requested */

/* Additional card improvements for better layout */

/* Responsive improvements */
@media (max-width: 576px) {
    .game-title {
        font-size: 13px;
        line-height: 1.2;
        max-height: 2.4em;
    }
    
    .current-price {
        font-size: 22px;
    }
    
    .old-price {
        font-size: 14px;
    }
    
    .card-content {
        padding: 10px;
        min-height: 100px;
    }
    
   
    
    /* Platform icons removed */
}

/* Valorant specific styling */
.valorant-wide-card {
    background: linear-gradient(135deg, #3a2d5e 0%, #2d1b4e 100%);
}

.valorant-wide-card .card-badge {
    background: linear-gradient(45deg, #ff6b9d, #ec4899) !important;
}

/* Mobile Legends specific styling */
.ml-wide-card {
    background: linear-gradient(135deg, #4169E1 0%, #2d47c7 100%);
}

.ml-amount {
    font-size: 28px;
    font-weight: 900;
    color: #4169E1;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Free Fire specific styling */
.ff-wide-card {
    background: linear-gradient(135deg, #FF6B35 0%, #dc5425 100%);
}

.ff-amount {
    font-size: 28px;
    font-weight: 900;
    color: #FF6B35;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* League of Legends specific styling */
.lol-wide-card {
    background: linear-gradient(135deg, #C89B3C 0%, #a57f2f 100%);
}

.lol-amount {
    font-size: 28px;
    font-weight: 900;
    color: #C89B3C;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Steam specific styling */
.steam-wide-card {
    background: linear-gradient(135deg, #171a21 0%, #0f1115 100%);
}

.steam-amount {
    font-size: 24px;
    font-weight: 900;
    color: #66c0f4;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Roblox specific styling */
.roblox-wide-card {
    background: linear-gradient(135deg, #00A2FF 0%, #0085cc 100%);
}

.roblox-amount {
    font-size: 28px;
    font-weight: 900;
    color: #00A2FF;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Google Play specific styling */
.gp-wide-card {
    background: linear-gradient(135deg, #34A853 0%, #2d8f47 100%);
}

.gp-amount {
    font-size: 24px;
    font-weight: 900;
    color: #34A853;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Account Cards specific styling */
.account-wide-card {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.account-amount {
    font-size: 24px;
    font-weight: 900;
    color: #a78bfa;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .wide-card {
        /* width: 180px; */
        height: 280px;
    }
    
    .card-image-section {
        height: 160px;
    }
    
    .uc-amount, .vp-amount, .ml-amount, .ff-amount, .lol-amount, .roblox-amount {
        font-size: 24px;
    }
    
    .steam-amount, .gp-amount, .account-amount {
        font-size: 20px;
    }
    
    .game-title {
        font-size: 13px;
    }
    
    .current-price {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .wide-card {
        /* width: 160px; */
        height: 260px;
    }
    
    .card-image-section {
        height: max-content;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .uc-amount, .vp-amount, .ml-amount, .ff-amount, .lol-amount, .roblox-amount {
        font-size: 20px;
    }
    
    .steam-amount, .gp-amount, .account-amount {
        font-size: 18px;
    }
} 

/* Mobile Screen Optimizations */
@media (max-width: 767px) {
    .gaming-products-section .container-fluid,
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .testimonials .container,
    .newsletter-section .container,
    .main-footer .container {
        padding: 0 10px;
    }
    
    .statistics-section .original-main-content {
        padding: 0 5px;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
    
    .feature-card {
        margin-bottom: 20px;
        padding: 25px 20px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .sale-card {
        margin-bottom: 20px;
    }
}

/* Extra Small Screen Optimizations */
@media (max-width: 576px) {
    .statistics-section .container-fluid,
    .flash-sale .container-fluid,
    .flash-sale-modern .container-fluid,
    .popular-games-modern .container-fluid,
    .features-modern .container-fluid,
    .testimonials-modern .container-fluid,
    .features .container,
    .testimonials .container,
    .newsletter-section .container,
    .main-footer .container {
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-card h5 {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
} 

/* Flash Sale Modern Section */
.flash-sale-modern {
    background: linear-gradient(135deg, #0f1419 0%, #1a1d2e 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.flash-sale-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.flash-sale-modern .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.flash-sale-title {
    text-align: center;
    margin-bottom: 20px;
}

.flash-icon {
    animation: flash 2s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.countdown-timer-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(14, 165, 233, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    backdrop-filter: blur(10px);
}

.timer-label {
    color: #0ea5e9;
    font-weight: 600;
    font-size: 14px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(14, 165, 233, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
    min-width: 50px;
}

.timer-unit span {
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.timer-unit small {
    color: #b8bcc8;
    font-size: 10px;
    margin-top: 2px;
}

.timer-separator {
    color: #0ea5e9;
    font-size: 20px;
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.flash-sale-grid {
    margin-top: 30px;
}

.modern-flash-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(26, 29, 46, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.modern-flash-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: thin;
    scrollbar-color: #ff6b6b rgba(255, 255, 255, 0.1);
}

.modern-flash-scroll::-webkit-scrollbar {
    height: 10px;
}

.modern-flash-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modern-flash-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}

/* Modern Flash Cards */
.modern-flash-card {
    min-width: 420px;
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.modern-flash-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: #ff6b6b;
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.4);
}

.flash-image-section {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.flash-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.modern-flash-card:hover .flash-image-section img {
    transform: scale(1.15);
}

.flash-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    animation: pulse 3s infinite;
}

.flash-badge.mega-deal {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.flash-badge.hot-deal {
    background: linear-gradient(45deg, #ff9ff3, #f368e0);
    color: white;
}

.flash-badge.premium-deal {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #1a1d2e;
}

.flash-badge.special-deal {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.flash-badge.limited-deal {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
}

.discount-percentage {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    font-size: 24px;
    font-weight: 900;
    padding: 15px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
    animation: spin-glow 4s linear infinite;
}

@keyframes spin-glow {
    0% { transform: rotate(0deg); box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
    50% { box-shadow: 0 0 50px rgba(255, 107, 107, 0.8); }
    100% { transform: rotate(360deg); box-shadow: 0 0 30px rgba(255, 107, 107, 0.6); }
}

.fire-effect, .lightning-effect, .steam-effect, .gem-effect, .diamond-effect {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.fire-effect i {
    color: #ff6b6b;
    font-size: 18px;
    animation: fire-dance 2s ease-in-out infinite;
}

.fire-effect i:nth-child(2) {
    animation-delay: 0.3s;
}

.fire-effect i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fire-dance {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.2); }
}

.lightning-effect i {
    color: #ffd700;
    font-size: 20px;
    animation: lightning-flash 1.5s ease-in-out infinite;
}

@keyframes lightning-flash {
    0%, 90%, 100% { opacity: 0; }
    5%, 85% { opacity: 1; }
}

.steam-effect i, .gem-effect i, .diamond-effect i {
    color: #0ea5e9;
    font-size: 18px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.flash-content {
    padding: 30px;
}

.flash-title-section h4 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.flash-subtitle {
    color: #0ea5e9;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.flash-description {
    color: #b8bcc8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.old-price {
    color: #9ca3af;
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    color: #10b981;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.savings {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 107, 107, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.flash-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flash-btn {
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.flash-btn.pulse-animation {
    animation: button-pulse 2s ease-in-out infinite;
}

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

.flash-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
}

.stock-info {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 107, 107, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    animation: urgent-blink 3s ease-in-out infinite;
}

@keyframes urgent-blink {
    0%, 70%, 100% { opacity: 1; }
    85% { opacity: 0.7; }
}

/* Responsive Design for Modern Sections */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .countdown-timer-modern {
        padding: 10px 20px;
        gap: 10px;
    }
    
    .timer-unit {
        padding: 6px 8px;
        min-width: 40px;
    }
    
    .timer-unit span {
        font-size: 16px;
    }
    
    .modern-game-card,
    .modern-flash-card,
    .modern-feature-card,
    .modern-testimonial-card {
        min-width: 320px;
    }
    
    .flash-title-section h4,
    .game-title-section h4,
    .feature-content-modern h4 {
        font-size: 18px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .discount-percentage {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .feature-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-modern i {
        font-size: 32px;
    }
    
    .feature-visual-section {
        height: 150px;
    }
    
    .user-avatar-modern {
        width: 60px;
        height: 60px;
    }
    
    .user-info-modern h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .modern-game-card,
    .modern-flash-card,
    .modern-feature-card,
    .modern-testimonial-card {
        min-width: 280px;
    }
    
    .game-content,
    .flash-content,
    .feature-content-modern,
    .testimonial-content-modern {
        padding: 20px;
    }
    
    .modern-games-scroll,
    .modern-flash-scroll,
    .modern-features-scroll,
    .modern-testimonials-scroll {
        gap: 15px;
        padding: 10px 0;
    }
    
    .feature-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 10px;
    }
    
    .testimonial-header {
        padding: 20px 20px 15px 20px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
} 

/* Features Modern Section */
.features-modern {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1419 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-modern .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.features-modern-grid {
    margin-top: 40px;
}

.modern-features-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(26, 29, 46, 0.2);
    backdrop-filter: blur(15px);
    padding: 20px;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.modern-features-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #0ea5e9 rgba(255, 255, 255, 0.1);
}

.modern-features-scroll::-webkit-scrollbar {
    height: 12px;
}

.modern-features-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modern-features-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

/* Modern Feature Cards */
.modern-feature-card {
    min-width: 450px;
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modern-feature-card:hover {
    transform: translateY(-25px) scale(1.02);
    border-color: var(--card-border-color, #0ea5e9);
    box-shadow: 0 35px 70px var(--card-shadow-color, rgba(14, 165, 233, 0.4));
}

.feature-visual-section {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon-modern {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--icon-color-1, #0ea5e9), var(--icon-color-2, #8b5cf6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
}

.feature-icon-modern i {
    font-size: 48px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-feature-card:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px var(--icon-shadow-color, rgba(14, 165, 233, 0.5));
}

/* Feature Card Variations */
.lightning-card {
    --card-border-color: #ffd700;
    --card-shadow-color: rgba(255, 215, 0, 0.4);
    --icon-color-1: #ffd700;
    --icon-color-2: #ff6b35;
    --icon-shadow-color: rgba(255, 215, 0, 0.5);
}

.security-card {
    --card-border-color: #10b981;
    --card-shadow-color: rgba(16, 185, 129, 0.4);
    --icon-color-1: #10b981;
    --icon-color-2: #059669;
    --icon-shadow-color: rgba(16, 185, 129, 0.5);
}

.support-card {
    --card-border-color: #8b5cf6;
    --card-shadow-color: rgba(139, 92, 246, 0.4);
    --icon-color-1: #8b5cf6;
    --icon-color-2: #7c3aed;
    --icon-shadow-color: rgba(139, 92, 246, 0.5);
}

.price-card {
    --card-border-color: #ef4444;
    --card-shadow-color: rgba(239, 68, 68, 0.4);
    --icon-color-1: #ef4444;
    --icon-color-2: #dc2626;
    --icon-shadow-color: rgba(239, 68, 68, 0.5);
}

.mobile-card {
    --card-border-color: #06b6d4;
    --card-shadow-color: rgba(6, 182, 212, 0.4);
    --icon-color-1: #06b6d4;
    --icon-color-2: #0891b2;
    --icon-shadow-color: rgba(6, 182, 212, 0.5);
}

.bonus-card {
    --card-border-color: #f59e0b;
    --card-shadow-color: rgba(245, 158, 11, 0.4);
    --icon-color-1: #f59e0b;
    --icon-color-2: #d97706;
    --icon-shadow-color: rgba(245, 158, 11, 0.5);
}

/* Feature Visual Effects */
.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.lightning-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
}

.security-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
}

.support-glow {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
}

.price-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3) 0%, transparent 70%);
}

.mobile-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
}

.bonus-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Feature Particles */
.feature-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffd700;
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.feature-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.feature-particles .particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1.3s;
}

.feature-particles .particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 2.6s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
}

/* Security Rings */
.security-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: ring-expand 3s ease-in-out infinite;
}

.ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.ring-2 { width: 140px; height: 140px; animation-delay: 1s; }
.ring-3 { width: 180px; height: 180px; animation-delay: 2s; }

@keyframes ring-expand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Support Pulse Waves */
.pulse-waves .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    animation: pulse-wave 2s ease-out infinite;
}

.wave-1 { width: 120px; height: 120px; animation-delay: 0s; }
.wave-2 { width: 160px; height: 160px; animation-delay: 0.7s; }
.wave-3 { width: 200px; height: 200px; animation-delay: 1.4s; }

@keyframes pulse-wave {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* Price Effects */
.discount-effect .percent {
    position: absolute;
    top: 15%;
    right: 15%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    animation: spin 8s linear infinite;
}

.floating-coins {
    position: absolute;
    bottom: 20%;
    left: 20%;
    display: flex;
    gap: 10px;
}

.floating-coins i {
    color: #f59e0b;
    font-size: 16px;
    animation: coin-bounce 2s ease-in-out infinite;
}

.floating-coins i:nth-child(2) { animation-delay: 0.3s; }
.floating-coins i:nth-child(3) { animation-delay: 0.6s; }

@keyframes coin-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Device Showcase */
.device-showcase {
    position: absolute;
    bottom: 15%;
    right: 15%;
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.device {
    background: rgba(6, 182, 212, 0.8);
    border-radius: 3px;
    animation: device-glow 3s ease-in-out infinite;
}

.device.phone { width: 12px; height: 20px; animation-delay: 0s; }
.device.tablet { width: 16px; height: 24px; animation-delay: 0.5s; }
.device.laptop { width: 20px; height: 14px; animation-delay: 1s; }

@keyframes device-glow {
    0%, 100% { opacity: 0.6; box-shadow: 0 0 5px rgba(6, 182, 212, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(6, 182, 212, 0.6); }
}

/* Gift Explosion */
.gift-explosion .confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    animation: confetti-fall 3s ease-in-out infinite;
}

.gift-explosion .confetti:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.gift-explosion .confetti:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.gift-explosion .confetti:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 1s;
}

.gift-explosion .confetti:nth-child(4) {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes confetti-fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(20px) rotate(180deg); opacity: 0; }
}

.feature-content-modern {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.feature-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 4;
    animation: badge-pulse 2s ease-in-out infinite;
}

.feature-badge-modern.speed {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: white;
}

.feature-badge-modern.secure {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.feature-badge-modern.support {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
}

.feature-badge-modern.price {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

.feature-badge-modern.mobile {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    color: white;
}

.feature-badge-modern.bonus {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
}

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

.feature-content-modern h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content-modern p {
    color: #b8bcc8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    min-width: 100px;
}

.feature-stats .stat-number {
    color: #0ea5e9 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.feature-stats .stat-label {
    color: #9ca3af !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Testimonials Modern Section */
.testimonials-modern {
    background: linear-gradient(135deg, #0f1419 0%, #1a1d2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-modern .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-modern-grid {
    margin-top: 40px;
}

.modern-testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(26, 29, 46, 0.2);
    backdrop-filter: blur(15px);
    padding: 20px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.modern-testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #8b5cf6 rgba(255, 255, 255, 0.1);
}

.modern-testimonials-scroll::-webkit-scrollbar {
    height: 12px;
}

.modern-testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modern-testimonials-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #8b5cf6, #0ea5e9);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

/* Modern Testimonial Cards */
.modern-testimonial-card {
    min-width: 420px;
    background: linear-gradient(145deg, #1e2139, #252841);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modern-testimonial-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--testimonial-border-color, #8b5cf6);
    box-shadow: 0 30px 60px var(--testimonial-shadow-color, rgba(139, 92, 246, 0.4));
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.user-avatar-modern {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover .user-avatar-modern img {
    transform: scale(1.1);
}

.avatar-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--testimonial-border-color, #8b5cf6);
    border-radius: 50%;
    animation: ring-rotate 4s linear infinite;
}

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

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border: 3px solid #1e2139;
    border-radius: 50%;
    animation: online-pulse 2s ease-in-out infinite;
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.user-info-modern h5 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.user-title {
    color: var(--testimonial-border-color, #8b5cf6);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.user-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-stats .stat {
    color: #9ca3af;
    font-size: 12px;
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.verified-badge {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-content-modern {
    padding: 25px 30px 30px 30px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stars-modern {
    display: flex;
    gap: 3px;
}

.stars-modern i {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-score {
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.testimonial-quote {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 25px 0;
    padding: 20px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--testimonial-border-color, #8b5cf6);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 40px;
    color: var(--testimonial-border-color, #8b5cf6);
    font-family: Georgia, serif;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.purchase-info {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
}

.social-proof {
    color: var(--testimonial-border-color, #8b5cf6);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonial Card Variations */
.pubg-testimonial {
    --testimonial-border-color: #ffd700;
    --testimonial-shadow-color: rgba(255, 215, 0, 0.4);
}

.valorant-testimonial {
    --testimonial-border-color: #ff6b6b;
    --testimonial-shadow-color: rgba(255, 107, 107, 0.4);
}

.ml-testimonial {
    --testimonial-border-color: #3b82f6;
    --testimonial-shadow-color: rgba(59, 130, 246, 0.4);
}

.steam-testimonial {
    --testimonial-border-color: #1e40af;
    --testimonial-shadow-color: rgba(30, 64, 175, 0.4);
}

.freefire-testimonial {
    --testimonial-border-color: #f59e0b;
    --testimonial-shadow-color: rgba(245, 158, 11, 0.4);
}

/* Modern Sections Bug Fixes */
.features-modern, .testimonials-modern {
    position: relative !important;
    z-index: 1 !important;
}

.modern-features-container, .modern-testimonials-container {
    position: relative !important;
    z-index: 2 !important;
}

.modern-feature-card, .modern-testimonial-card {
    position: relative !important;
    z-index: 3 !important;
}

/* Fix Animation Conflicts */
@keyframes modern-glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.8; 
    }
}

.feature-glow {
    animation: modern-glow-pulse 3s ease-in-out infinite !important;
}

/* Fix Container Issues */
.features-modern .original-main-content,
.testimonials-modern .original-main-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Fix Scroll Issues */
.modern-features-scroll, .modern-testimonials-scroll {
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
}

/* Fix Card Display Issues */
.modern-feature-card, .modern-testimonial-card {
    display: flex !important;
    flex-direction: column !important;
    flex-shrink: 0 !important;
}

/* Fix Typography Issues */
.feature-content-modern h4,
.user-info-modern h5 {
    font-family: inherit !important;
    font-weight: 700 !important;
}

.feature-content-modern p,
.testimonial-quote {
    font-family: inherit !important;
}

/* Fix Badge Positioning */
.feature-badge-modern {
    pointer-events: none !important;
}

/* Fix Avatar Issues */
.user-avatar-modern {
    overflow: hidden !important;
    position: relative !important;
}

.user-avatar-modern img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Fix Rating Issues */
.testimonial-rating {
    align-items: center !important;
    justify-content: space-between !important;
}

.stars-modern i {
    display: inline-block !important;
}

/* Fix Stats Issues */
.feature-stats {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

/* Fix Visual Effects */
.feature-particles, .security-rings, .pulse-waves, 
.discount-effect, .device-showcase, .gift-explosion {
    pointer-events: none !important;
    position: absolute !important;
}

/* Fix Icon Issues */
.feature-icon-modern {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.feature-icon-modern i {
    display: block !important;
    line-height: 1 !important;
}

/* Fix Testimonial Footer */
.testimonial-footer {
    display: flex !important;
    width: 100% !important;
}

.purchase-info, .social-proof {
    font-size: 12px !important;
    line-height: 1.4 !important;
}

/* Fix Quote Styling */
.testimonial-quote {
    position: relative !important;
    display: block !important;
    font-style: italic !important;
}

.testimonial-quote::before {
    position: absolute !important;
    display: block !important;
}

/* Ensure Smooth Animations */
* {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.modern-feature-card *, .modern-testimonial-card * {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

/* Fix Hover States */
.modern-feature-card:hover, .modern-testimonial-card:hover {
    -webkit-transform: translateY(-20px) scale(1.02) !important;
    -moz-transform: translateY(-20px) scale(1.02) !important;
    transform: translateY(-20px) scale(1.02) !important;
}

/* Fix Dark Theme Variables */
:root {
    --testimonial-border-default: #8b5cf6;
    --testimonial-shadow-default: rgba(139, 92, 246, 0.4);
}

/* Override Bootstrap Conflicts */
.modern-feature-card .btn, .modern-testimonial-card .btn {
    border: none !important;
    outline: none !important;
}

/* Fix Mobile Issues */
@media (max-width: 768px) {
    .modern-features-container, .modern-testimonials-container {
        padding: 10px !important;
    }
    
    .feature-visual-section {
        height: 120px !important;
    }
    
    .testimonial-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
}

/* Fix Very Small Screens */
@media (max-width: 480px) {
    .modern-feature-card, .modern-testimonial-card {
        min-width: 260px !important;
    }
    
    .feature-content-modern, .testimonial-content-modern {
        padding: 15px !important;
    }
    
    .feature-icon-modern {
        width: 60px !important;
        height: 60px !important;
    }
    
    .feature-icon-modern i {
        font-size: 24px !important;
    }
}

/* Features Grid Section - No Scroll */
.features-grid {
    background: linear-gradient(135deg, #1a1d2e 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-grid-card {
    background: linear-gradient(145deg, #2a2d3e, #1a1d2e);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-grid-card:hover {
    transform: translateY(-10px);
    border-color: var(--card-border-color, #0ea5e9);
    box-shadow: 0 25px 50px var(--card-shadow-color, rgba(14, 165, 233, 0.4));
}

.feature-icon-grid {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--icon-color-1, #0ea5e9), var(--icon-color-2, #8b5cf6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.feature-icon-grid i {
    font-size: 32px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-grid-card:hover .feature-icon-grid {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px var(--icon-shadow-color, rgba(14, 165, 233, 0.5));
}

.feature-badge-grid {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    animation: badge-pulse 2s ease-in-out infinite;
}

.feature-badge-grid.speed {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: white;
}

.feature-badge-grid.secure {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
}

.feature-badge-grid.support {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: white;
}

.feature-badge-grid.price {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

.feature-badge-grid.mobile {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    color: white;
}

.feature-badge-grid.bonus {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
}

.feature-content-grid {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-content-grid h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content-grid p {
    color: #b8bcc8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-stats-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: auto;
}

.stat-item-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    min-width: 70px;
}

.stat-number-grid {
    color: #0ea5e9 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.3);
}

.stat-label-grid {
    color: #9ca3af !important;
    font-size: 10px !important;
    margin-top: 3px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Card Variations for Grid */
.feature-grid-card.lightning-card {
    --card-border-color: #ffd700;
    --card-shadow-color: rgba(255, 215, 0, 0.4);
    --icon-color-1: #ffd700;
    --icon-color-2: #ff6b35;
    --icon-shadow-color: rgba(255, 215, 0, 0.5);
}

.feature-grid-card.security-card {
    --card-border-color: #10b981;
    --card-shadow-color: rgba(16, 185, 129, 0.4);
    --icon-color-1: #10b981;
    --icon-color-2: #059669;
    --icon-shadow-color: rgba(16, 185, 129, 0.5);
}

.feature-grid-card.support-card {
    --card-border-color: #8b5cf6;
    --card-shadow-color: rgba(139, 92, 246, 0.4);
    --icon-color-1: #8b5cf6;
    --icon-color-2: #7c3aed;
    --icon-shadow-color: rgba(139, 92, 246, 0.5);
}

.feature-grid-card.price-card {
    --card-border-color: #ef4444;
    --card-shadow-color: rgba(239, 68, 68, 0.4);
    --icon-color-1: #ef4444;
    --icon-color-2: #dc2626;
    --icon-shadow-color: rgba(239, 68, 68, 0.5);
}

.feature-grid-card.mobile-card {
    --card-border-color: #06b6d4;
    --card-shadow-color: rgba(6, 182, 212, 0.4);
    --icon-color-1: #06b6d4;
    --icon-color-2: #0891b2;
    --icon-shadow-color: rgba(6, 182, 212, 0.5);
}

.feature-grid-card.bonus-card {
    --card-border-color: #f59e0b;
    --card-shadow-color: rgba(245, 158, 11, 0.4);
    --icon-color-1: #f59e0b;
    --icon-color-2: #d97706;
    --icon-shadow-color: rgba(245, 158, 11, 0.5);
}

/* Fix Modern Game Cards - Reduce Width */
.modern-game-card {
    min-width: 300px !important;
    max-width: 350px !important;
}

.modern-flash-card {
    min-width: 320px !important;
    max-width: 380px !important;
}

.modern-testimonial-card {
    min-width: 350px !important;
    max-width: 400px !important;
}

/* Fix Container Overflow Issues */
.modern-games-container,
.modern-flash-container,
.modern-testimonials-container {
    padding: 10px !important;
    border-radius: 10px !important;
}

.modern-games-scroll,
.modern-flash-scroll,
.modern-testimonials-scroll {
    padding: 5px 0 !important;
    gap: 15px !important;
}

/* Responsive Grid Features */
@media (max-width: 768px) {
    .feature-grid-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon-grid {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-grid i {
        font-size: 24px;
    }
    
    .feature-content-grid h4 {
        font-size: 18px;
    }
    
    .feature-stats-grid {
        gap: 10px;
    }
    
    .stat-item-grid {
        min-width: 60px;
        padding: 8px;
    }
    
    .modern-game-card,
    .modern-flash-card,
    .modern-testimonial-card {
        min-width: 250px !important;
        max-width: 300px !important;
    }
}

@media (max-width: 576px) {
    .feature-grid-card {
        padding: 15px;
    }
    
    .feature-icon-grid {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-grid i {
        font-size: 20px;
    }
    
    .feature-content-grid h4 {
        font-size: 16px;
    }
    
    .feature-content-grid p {
        font-size: 13px;
    }
    
    .feature-stats-grid {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-item-grid {
        min-width: 50px;
        padding: 6px;
    }
    
    .modern-game-card,
    .modern-flash-card,
    .modern-testimonial-card {
        min-width: 220px !important;
        max-width: 270px !important;
    }
}

/* Hide Old Modern Features */
.features-modern {
    display: none !important;
}

/* Testimonials Slider Section */
.testimonials-slider {
    background: linear-gradient(135deg, #0f1419 0%, #1a1d2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.05) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Testimonials Slick Slider */
.testimonials-slick {
    margin-top: 30px;
}

.testimonials-slick .slick-slide {
    padding: 0 15px;
    display: flex !important;
    align-items: stretch;
    height: auto;
}

.testimonials-slick .slick-slide > div {
    width: 100%;
}

.testimonials-slick .slick-list {
    overflow: hidden;
}

.testimonials-slick .slick-track {
    display: flex !important;
    align-items: stretch;
}

.testimonials-slick .slick-prev,
.testimonials-slick .slick-next {
    background: linear-gradient(45deg, #8b5cf6, #0ea5e9) !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    z-index: 100;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

.testimonials-slick .slick-prev:hover,
.testimonials-slick .slick-next:hover {
    background: linear-gradient(45deg, #0ea5e9, #8b5cf6) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
}

.testimonials-slick .slick-prev:before,
.testimonials-slick .slick-next:before {
    color: white !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.testimonials-slick .slick-prev {
    left: -25px !important;
}

.testimonials-slick .slick-next {
    right: -25px !important;
}

.testimonials-slick .slick-dots {
    bottom: -50px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}

.testimonials-slick .slick-dots li {
    margin: 0 !important;
}

.testimonials-slick .slick-dots li button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.testimonials-slick .slick-dots li button:before {
    display: none !important;
}

.testimonials-slick .slick-dots li.slick-active button {
    background: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6) !important;
}

/* Testimonial Card for Slider */
.testimonial-slide-card {
    background: linear-gradient(145deg, #1e2139, #252841);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    height: 400px;
    margin: 0 auto;
    max-width: 400px;
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
}

.testimonial-slide-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
}

.testimonial-slide-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 25px 15px 25px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #8b5cf6;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.testimonial-slide-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-user-info h5 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-user-title {
    color: #8b5cf6;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-slide-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px 15px 25px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.testimonial-rating-text {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
}

.testimonial-slide-content {
    padding: 0 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 140px);
}

.testimonial-slide-quote {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 20px 0;
    padding: 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 10px;
    border-left: 3px solid #8b5cf6;
    position: relative;
    flex-grow: 1;
}

.testimonial-slide-quote::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 30px;
    color: #8b5cf6;
    font-family: Georgia, serif;
}

.testimonial-slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.testimonial-purchase {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
}

.testimonial-verified {
    color: #10b981;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Responsive Testimonials Slider */
@media (max-width: 768px) {
    .testimonials-slick .slick-prev {
        left: -15px !important;
    }
    
    .testimonials-slick .slick-next {
        right: -15px !important;
    }
    
    .testimonial-slide-card {
        height: 350px;
        max-width: 350px;
    }
    
    .testimonial-slide-header {
        padding: 20px 20px 10px 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-user-info h5 {
        font-size: 14px;
    }
    
    .testimonial-slide-content {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-slick .slick-prev,
    .testimonials-slick .slick-next {
        display: none !important;
    }
    
    .testimonial-slide-card {
        height: 320px;
        max-width: 300px;
    }
    
    .testimonial-slide-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .testimonial-slide-content {
        padding: 0 15px 15px 15px;
        height: calc(100% - 120px);
    }
    
    .testimonial-slide-quote {
        font-size: 13px;
        padding: 10px;
    }
    
    .testimonial-slide-footer {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}

/* Hide Old Testimonials Modern */
.testimonials-modern {
    display: none !important;
}

/* Critical Testimonials Slider Fixes */
.testimonials-slick {
    position: relative !important;
}

.testimonials-slick.slick-initialized {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonials-slick .slick-slide {
    outline: none;
    float: none !important;
}

.testimonials-slick .slick-slide .testimonial-slide-card {
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure proper spacing between slides */
.testimonials-slick .slick-slide {
    margin: 0 10px;
}

.testimonials-slick .slick-list {
    margin: 0 -10px;
    overflow: hidden;
}

/* Override any conflicting styles */
.testimonials-slider .testimonials-slick * {
    box-sizing: border-box;
}

/* Better responsive handling */
@media (max-width: 1200px) {
    .testimonials-slick .slick-slide {
        margin: 0 5px;
    }
    
    .testimonials-slick .slick-list {
        margin: 0 -5px;
    }
}

@media (max-width: 768px) {
    .testimonials-slick .slick-slide {
        margin: 0;
    }
    
    .testimonials-slick .slick-list {
        margin: 0;
    }
    
    .testimonial-slide-card {
        max-width: 100% !important;
        height: 350px;
    }
}

/* Fix slider initialization issue */
.testimonials-slick .testimonial-slide-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Fallback grid layout if slider fails */
.testimonials-slick {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.testimonials-slick.slick-initialized {
    display: block !important;
    flex-wrap: initial;
    gap: initial;
    justify-content: initial;
}

.testimonials-slick.fallback-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonials-slick.fallback-grid .testimonial-slide-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

/* Override grid on mobile */
@media (max-width: 768px) {
    .testimonials-slick.fallback-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Hide grid fallback when slider is working */
.testimonials-slick.slick-initialized.fallback-grid {
    display: block !important;
    grid-template-columns: initial;
}

/* Make sure cards are visible in all cases */
.testimonials-slick .testimonial-slide-card {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Main Layout Styles - Slider küçültüldü */
.original-main-content {
    padding: 34px 0;
    margin-top: 10px;
}

.main-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Sidebar */
.left-sidebar {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}

/* Center Banner/Slider - %20 küçültüldü */
.center-banner {
    flex: 1;
    max-width: 915px; /* 650px'den 520px'e düşürüldü (%20 azalma) */
    margin: 0px 0px;
}






  
  .right-cards > div:not(:last-child) {
    margin-bottom: 5px; /* ihtiyaca göre değeri değiştirebilirsin */
  }

/* User Dropdown Menu Styles */
.user-dropdown-menu {
    background: var(--dark-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    margin-top: 0.5rem;
}

.light-theme .user-dropdown-menu {
    background: var(--light-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.user-dropdown-menu .dropdown-header {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
    border-radius: 12px 12px 0 0;
    margin: -0.5rem 0 0 0;
    color: white;
}

.user-dropdown-menu .dropdown-item {
    padding: 0.8rem 1.5rem;
    color: var(--dark-text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.light-theme .user-dropdown-menu .dropdown-item {
    color: var(--light-text-primary);
}

.user-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
    color: white;
    transform: translateX(5px);
}

.user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

.user-dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 1rem;
}

.light-theme .user-dropdown-menu .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1);
}

.login-section.dropdown-toggle::after {
    display: none;
}

.login-section:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Badge for notifications */
.user-dropdown-menu .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Profile Page Styles */
.profile-header {
    background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
    border-radius: 15px;
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    margin-bottom: 1rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.profile-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 120px;
}

.profile-stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.profile-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.profile-section {
    background: var(--dark-bg-card);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.light-theme .profile-section {
    background: var(--light-bg-card);
}

.profile-section h5 {
    color: var(--gaming-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-floating label {
    color: var(--dark-text-secondary);
}

.light-theme .form-floating label {
    color: var(--light-text-secondary);
}

.form-control:focus {
    border-color: var(--gaming-blue);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.btn-profile {
    background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
    border: none;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .user-dropdown-menu {
        min-width: 250px;
    }
    
    .profile-header {
        padding: 1.5rem;
        text-align: center;
    }
    
    .profile-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .profile-stat {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
}

/* Profile Page Optimizations */
.product-card .h4 {
    color: var(--text-primary);
}

.position-relative .bg-success {
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.content-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Popüler Ürünler Dikey Kart Stilleri - KALDIRILDI */
.popular-products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    padding: 0 15px;
}

.product-showcase-card {
    background: linear-gradient(145deg, var(--dark-blue-2), var(--dark-blue-1));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 194, 255, 0.15);
    border-color: var(--primary-color);
}

.product-showcase-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.1);
}

.showcase-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.showcase-featured-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-showcase-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-showcase-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.product-showcase-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}
.product-showcase-title a:hover {
    color: var(--primary-color);
}

.product-showcase-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.product-showcase-price .current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.product-showcase-price .old-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-showcase-stock {
    font-size: 0.9rem;
    color: var(--text-secondary);
    background-color: var(--background-color);
    padding: 5px 10px;
    border-radius: 8px;
}
.product-showcase-stock span {
    font-weight: bold;
    color: var(--text-primary);
}

.showcase-buy-btn {
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    transition: all 0.3s ease;
}
.showcase-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.2);
    color: white;
}

/* Form və Authentication Səhifələri üçün Qaranlıq Tema Düzəlişləri */

/* Form etiketləri */
.form-label {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.light-theme .form-label {
    color: var(--light-text-primary) !important;
}

/* Text-muted siniflərini qaranlıq tema üçün düzəlt */
.text-muted {
    color: var(--text-secondary) !important;
}

.light-theme .text-muted {
    color: var(--light-text-secondary) !important;
}

/* Form kontrol elementləri üçün qaranlıq tema */
.form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
}

.form-control::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.8;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--gaming-blue) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25) !important;
}

/* Açıq tema üçün form kontrol elementləri */
.light-theme .form-control {
    background-color: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    color: var(--light-text-primary) !important;
}

.light-theme .form-control::placeholder {
    color: var(--light-text-secondary) !important;
    opacity: 0.8;
}

.light-theme .form-control:focus {
    background-color: #ffffff !important;
    border-color: var(--gaming-blue) !important;
    color: var(--light-text-primary) !important;
}

/* Input group text stilləri */
.input-group-text {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-secondary) !important;
}

.light-theme .input-group-text {
    background-color: #e9ecef !important;
    border: 1px solid #dee2e6 !important;
    color: var(--light-text-secondary) !important;
}

/* Card məzmunu üçün qaranlıq tema */
.card-body p,
.card-body label,
.card-body span {
    color: var(--text-primary) !important;
}

.light-theme .card-body p,
.light-theme .card-body label,
.light-theme .card-body span {
    color: var(--light-text-primary) !important;
}

/* Checkbox və form check elementləri */
.form-check-label {
    color: var(--text-primary) !important;
}

.light-theme .form-check-label {
    color: var(--light-text-primary) !important;
}

/* Link rənglərini düzəlt */
.form-check-label a,
.card-body a {
    color: var(--gaming-blue) !important;
    text-decoration: none;
}

.form-check-label a:hover,
.card-body a:hover {
    color: var(--gaming-purple) !important;
    text-decoration: underline;
}

/* Əlavə mətn elementləri */
.text-center p {
    color: var(--text-primary) !important;
}

.light-theme .text-center p {
    color: var(--light-text-primary) !important;
}
  

.product-scroll-item {
    display: flex;
    align-items: stretch;
}