/* ========================================
   Gaming Theme - Optimized & Centralized
   ======================================== */

/* CSS Variables */
:root {
    /* Neon Colors */
    --neon-blue: #00f5ff;
    --neon-purple: #bf00ff;
    --neon-green: #39ff14;
    --neon-pink: #ff073a;
    --neon-orange: #ff8c00;

    /* Primary & Secondary */
    --primary: #2dd4bf;
    --secondary: #0ea5e9;
    --primary-color: #2196f3;
    --secondary-color: #00bcd4;

    /* Backgrounds */
    --dark-bg: #0a0a0a;
    --background: #0f172a;
    --background-color: #1a1a1a;
    --card-bg: rgba(15, 15, 35, 0.8);
    --surface: #1e293b;
    --glass-bg: rgba(255, 255, 255, 0.05);

    /* Borders */
    --border-glow: rgba(0, 245, 255, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-color: #333333;

    /* Text */
    --text: #f8fafc;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-color: #ffffff;

    /* Status Colors */
    --error: #ef4444;
    --error-color: #f44336;
    --success: #22c55e;
    --success-color: #4caf50;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    font-family: 'Cairo', sans-serif;
}

body {
    background: var(--dark-bg);
    min-height: 100vh;
    color: white;
    position: relative;
    overflow-x: hidden;
}

/* Static Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #16213e 100%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(191, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    z-index: -1;
}


/* ========================================
   Floating Notification Icon
   ======================================== */
.floating-notification-icon {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.notification-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6),
                0 0 60px rgba(191, 0, 255, 0.4),
                0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.notification-icon-link:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.8),
                0 0 80px rgba(191, 0, 255, 0.6),
                0 12px 30px rgba(0, 0, 0, 0.4);
}

.notification-icon-link i {
    font-size: 20px;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--neon-pink), #ff4757);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 7, 58, 0.8),
                0 0 30px rgba(255, 7, 58, 0.4);
    border: 2px solid white;
}

/* ========================================
   Navbar
   ======================================== */
.navbar-custom {
    background: rgba(15, 15, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 245, 255, 0.1);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.3));
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0 5px;
    padding: 10px 18px !important;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(0, 245, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.2);
}

.navbar-toggler {
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 8px 12px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.fa-bars:before,
.fa-navicon:before {
    content: "\f0c9";
    color: #fff;
}

/* ========================================
   Buttons
   ======================================== */
.btn-custom-primary {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.3);
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 245, 255, 0.5);
    color: white;
}

.btn-custom-outline {
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-custom-outline:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 245, 255, 0.4);
}

button.btn.btn-custom-outline.dropdown-toggle {
    color: #fff;
}

.btn-gaming {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

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

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

.btn-gaming:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.btn-gaming.crash {
    background: linear-gradient(45deg, var(--neon-pink), #ff6b6b);
    box-shadow: 0 0 20px rgba(255, 7, 58, 0.3);
}

.btn-gaming.crash:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px var(--neon-pink);
}

.btn-gaming.apple {
    background: linear-gradient(45deg, var(--neon-green), #4ecdc4);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.btn-gaming.apple:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px var(--neon-green);
}

/* ========================================
   Layout
   ======================================== */
.main-content {
    padding-top: 100px;
}

.container-gaming-full {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.content-gaming-wrapper {
    padding: 2rem 3rem;
}

.balance-badge {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-blue);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* ========================================
   Dropdown
   ======================================== */
.dropdown-menu {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
}

.dropdown-item:hover {
    background: rgba(0, 245, 255, 0.1);
    color: white;
}

/* ========================================
   Footer
   ======================================== */
.footer-custom {
    background: rgba(15, 15, 35, 0.95);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-custom h5 {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--neon-blue);
    transform: translateX(-5px);
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.5);
    color: white;
}

/* ========================================
   Alerts
   ======================================== */
.alert {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: white;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.alert-success {
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.1);
}

.alert-danger {
    border-color: var(--neon-pink);
    background: rgba(255, 7, 58, 0.1);
}

.alert-warning {
    border-color: var(--neon-orange);
    background: rgba(255, 140, 0, 0.1);
}

.alert-info {
    border-color: var(--neon-blue);
    background: rgba(0, 245, 255, 0.1);
}

.alert-gaming {
    border: none;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
}

/* ========================================
   Text Utilities
   ======================================== */
.text-muted {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.7) !important;
}

.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

.neon-text-orange {
    color: var(--neon-orange);
    text-shadow: 0 0 10px var(--neon-orange), 0 0 20px var(--neon-orange);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 2px solid var(--border-glow);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 50px rgba(0, 245, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
}



.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

/* ========================================
   Typography
   ======================================== */
.welcome-text-gaming {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    margin-bottom: 1.5rem;
}

.section-title-gaming {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title-gaming h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    position: relative;
    display: inline-block;
}

.section-title-gaming h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue));
    transform: translateY(-50%);
}

.section-title-gaming h2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), transparent);
    transform: translateY(-50%);
}

.section-title-gaming p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}
/* ========================================
   Cards - Stats & Features
   ======================================== */
.stat-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    padding: 2rem;
}

.stat-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    opacity: 0.8;
}

.stat-gaming::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-gaming:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-blue);
    border-color: var(--neon-blue);
}

.stat-gaming:hover::after {
    opacity: 1;
}

/* Stat Color Variants */
.stat-gaming.purple:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-purple);
    border-color: var(--neon-purple);
}

.stat-gaming.green:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-green);
    border-color: var(--neon-green);
}

.stat-gaming.pink:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-pink);
    border-color: var(--neon-pink);
}

.stat-gaming.blue:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-blue);
    border-color: var(--neon-blue);
}

.stat-gaming.orange:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px var(--neon-orange);
    border-color: var(--neon-orange);
}

.stat-number-gaming {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-gaming {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards */
.feature-card-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    padding: 2rem;
}

.feature-card-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
}

.feature-card-gaming:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--neon-blue);
    border-color: var(--neon-blue);
}

/* ========================================
   Icons
   ======================================== */
.feature-icon-gaming,
.stat-icon-gaming {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-icon-gaming i,
.stat-icon-gaming i {
    filter: drop-shadow(0 0 10px currentColor);
}

.stat-icon-gaming::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-gaming:hover .stat-icon-gaming::before {
    opacity: 1;
}

/* ========================================
   Utility Classes
   ======================================== */
.fade-in {
    opacity: 1;
}

.glass-gaming {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Balance Cards
   ======================================== */
.balance-gaming {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.balance-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.balance-gaming:hover::before {
    left: 100%;
}

.balance-gaming:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--neon-blue);
    border-color: var(--neon-blue);
}

.balance-gaming.success:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--neon-green);
    border-color: var(--neon-green);
}

.balance-gaming.warning:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--neon-orange);
    border-color: var(--neon-orange);
}

/* ========================================
   Game Icons
   ======================================== */
.game-icon-gaming {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.game-icon-gaming::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}



.game-icon-gaming:hover {
    transform: translateZ(20px) rotateY(10deg);
}

.game-icon-gaming i {
    filter: drop-shadow(0 0 10px currentColor);
}

/* ========================================
   Game Stats
   ======================================== */
.game-stats-gaming {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.game-stat-item {
    text-align: center;
}

.game-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    display: block;
    margin-bottom: 0.25rem;
}

.game-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Action Cards
   ======================================== */
.action-card-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.action-card-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.action-card-gaming:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-blue);
    border-color: var(--neon-blue);
    color: inherit;
    text-decoration: none;
}

/* Action Card Color Variants */
.action-card-gaming.pink:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-pink);
    border-color: var(--neon-pink);
}

.action-card-gaming.purple:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-purple);
    border-color: var(--neon-purple);
}

.action-card-gaming.green:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-green);
    border-color: var(--neon-green);
}

/* ========================================
   Game Cards - Glassmorphism Style
   ======================================== */
.game-card-gaming {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.game-card-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 245, 255, 0.5),
        rgba(191, 0, 255, 0.5),
        transparent
    );
}

.game-card-gaming:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 255, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 245, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Game Card Color Variants */
.game-card-gaming.crash::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 7, 58, 0.5),
        transparent
    );
}

.game-card-gaming.crash:hover {
    border-color: rgba(255, 7, 58, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 7, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.game-card-gaming.apple::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(57, 255, 20, 0.5),
        transparent
    );
}

.game-card-gaming.apple:hover {
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(57, 255, 20, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ========================================
   Action Icons
   ======================================== */
.action-icon-gaming {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-icon-gaming::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 17px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(5px);
}

.action-card-gaming:hover .action-icon-gaming::after {
    opacity: 1;
}

.action-icon-gaming i {
    filter: drop-shadow(0 0 10px currentColor);
}

/* ========================================
   Chevron Animation
   ======================================== */
.chevron-gaming {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.action-card-gaming:hover .chevron-gaming {
    transform: translateX(-8px);
    color: var(--neon-blue);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}






































/* ========================================
   Points Display
   ======================================== */
.points-display {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.points-display::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-blue), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.points-display::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--dark-bg);
    border-radius: 18px;
    z-index: -1;
}

.points-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

/* ========================================
   Gift Cards
   ======================================== */
.gift-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.gift-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px var(--neon-blue);
}

.gift-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.gift-card.disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.gift-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gift-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.gift-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gift-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.gift-stat {
    text-align: center;
}

.gift-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
}

.gift-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.claim-btn {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.claim-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

.claim-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.5);
}

.claim-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;
}

.claim-btn:hover:not(:disabled)::before {
    left: 100%;
}

/* ========================================
   Statistics Cards
   ======================================== */
.stats-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stats-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ========================================
   Loading Animation
   ======================================== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--neon-blue);
    animation: spin 1s ease-in-out infinite;
}


/* ========================================
   Tables
   ======================================== */
.table-gaming-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-gaming-custom thead th {
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-blue);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
}

.table-gaming-custom tbody tr {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.table-gaming-custom tbody tr:hover {
    background: rgba(0, 245, 255, 0.05);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.table-gaming-custom tbody td {
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    vertical-align: middle;
}

.table-gaming-custom tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
}

.table-gaming-custom tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
}











/* ========================================
   Test Container Styles
   ======================================== */
.test-container {
    max-width: 800px;
    margin: 0 auto;
}

.qr-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.success-box {
    background: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.3);
}

.warning-box {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

h1, h2, h3 {
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.btn-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 5px;
    color: #00f5ff;
}


/* ========================================
   Payment Cards
   ======================================== */
.payment-card-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.payment-card-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.payment-card-gaming:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--neon-blue);
    border-color: var(--neon-blue);
}

.payment-icon-gaming {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

/* ========================================
   Nav Tabs
   ======================================== */
.nav-tabs-gaming {
    border: none;
    margin-bottom: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 0.5rem;
}

.nav-tabs-gaming .nav-link {
    border: none;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-tabs-gaming .nav-link.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 245, 255, 0.3);
}

.nav-tabs-gaming .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* ========================================
   Badges
   ======================================== */
.badge-gaming {
    background: linear-gradient(45deg, var(--neon-green), #4ecdc4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

/* ========================================
   Forms & Modals
   ======================================== */
.modal-content-gaming {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
}

.form-control-gaming {
    background: var(--card-bg);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control-gaming:focus {
    background: var(--card-bg);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    color: var(--text-primary);
}

.form-control-gaming::placeholder {
    color: var(--text-secondary);
}

/* ========================================
   Subscriber Stats
   ======================================== */
.subscriber-stat-card {
    transition: all 0.3s ease;
    position: relative;
}

.subscriber-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.stat-bg-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: rotateBg 8s linear infinite;
}

.stat-number-wrapper {
    position: relative;
    display: inline-block;
}

.stat-change-indicator {
    position: absolute;
    top: -10px;
    right: -30px;
    background: rgba(0, 255, 153, 0.2);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 0.7rem;
    color: var(--neon-green);
    align-items: center;
    gap: 3px;
    opacity: 0;
    transform: translateY(0);
}

.stat-change-indicator.show {
    display: flex;
    animation: fadeInOut 3s ease-in-out forwards;
}

.stat-change-indicator.negative {
    background: rgba(255, 0, 153, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.stat-change-indicator i {
    font-size: 0.6rem;
}

.activity-pulse-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 30px;
}

.activity-pulse {
    width: 4px;
    background: var(--neon-green);
    border-radius: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

.activity-pulse:nth-child(1) {
    height: 15px;
    animation-delay: 0s;
}

.activity-pulse:nth-child(2) {
    height: 25px;
            animation-delay: 0.3s;
        }

        .activity-pulse:nth-child(3) {
            height: 20px;
            animation-delay: 0.6s;
        }



        .mini-chart {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 6px;
            height: 40px;
        }


        @keyframes chartGrow {
            0%, 100% { transform: scaleY(0.8); }
            50% { transform: scaleY(1.2); }
        }

        /* Number Animation */
        @keyframes numberPop {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .number-pop {
            animation: numberPop 0.5s ease-out;
        }

/* ========================================
   Features Grid Style
   ======================================== */

        .tile {
        transition: all 0.3s ease;
        text-decoration: none;
        color: #fff; /* النص أبيض */
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 1.5rem;
        padding: 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        animation: tileAppear 0.5s ease-out backwards;
        }

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

        .tile:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        background: rgba(255,255,255,0.15);
        }

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

        .tile:hover::before {
        left: 100%;
        }

        .tile i {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #00c3ff 0%, #007bff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tile:hover i {
        transform: scale(1.2) rotate(15deg);
        }

        .tile span {
        display: block;
        margin-top: 0.5rem;
        font-weight: 500;
        transition: all 0.3s ease;
        color: #fff; /* تأكيد أن النص أبيض */
        }

        .tile:hover span {
        transform: scale(1.05);
        }
        .card-body.p-4 {
            background: #152131;
        }


           .user-info-item {
        transition: all 0.3s ease;
        padding: 15px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
    }

    .user-info-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(5px);
        border-color: var(--neon-blue);
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

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

.text-dark {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}
.fw-bold {
    font-weight: 700 !important;
    color: wheat;
}
.mb-0 {
    margin-bottom: 0 !important;
    color: white;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
    color: #000;
}
    .btn-outline-warning:hover,
    .btn-outline-warning:focus {
        color: black !important; /* يخلي الخط أسود */
        background-color: #ffc107 !important; /* نفس لون التحذير */
        border-color: #ffc107 !important;
    }
        a.btn-outline-warning:hover,
    a.btn-outline-warning:focus {
        color: #000 !important; /* الخط أسود */
        background-color: #ffc107 !important; /* نفس لون التحذير */
        border-color: #ffc107 !important;
    }

    /* أحيانًا Bootstrap بيطبق اللون على span داخل الزر، فنقويه كمان */
    a.btn-outline-warning:hover span,
    a.btn-outline-warning:hover i {
        color: #000 !important;
    }

      .confirm-container {
        background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }

    .confirm-card {
        background: rgba(15, 15, 35, 0.9);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(0, 245, 255, 0.3);
        border-radius: 20px;
        padding: 2.5rem;
        max-width: 500px;
        width: 100%;
        box-shadow: 0 20px 60px rgba(0, 245, 255, 0.1);
        text-align: center;
    }

    .confirm-header {
        margin-bottom: 2rem;
    }

    .confirm-header h2 {
        color: #00f5ff;
        font-size: 1.75rem;
        font-weight: 700;
        text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
        margin-bottom: 0.5rem;
    }

    .confirm-header p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    .ref-code-box {
        background: rgba(0, 245, 255, 0.1);
        border: 2px solid rgba(0, 245, 255, 0.3);
        border-radius: 10px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .ref-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .ref-code {
        color: #39ff14;
        font-size: 1.5rem;
        font-weight: 700;
        font-family: 'Courier New', monospace;
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        word-break: break-all;
    }

    .countdown-circle {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 2rem auto;
    }

    .countdown-circle svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
    }

    .circle-bg {
        fill: none;
        stroke: rgba(0, 245, 255, 0.2);
        stroke-width: 4;
    }

    .circle-progress {
        fill: none;
        stroke: #00f5ff;
        stroke-width: 4;
        stroke-linecap: round;
        stroke-dasharray: 377;
        stroke-dashoffset: 377;
        animation: countdown 199s linear forwards;
    }

    @keyframes countdown {
        to {
            stroke-dashoffset: 0;
        }
    }

    .countdown-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #00f5ff;
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    }

    .amount-info {
        background: rgba(57, 255, 20, 0.1);
        border: 2px solid rgba(57, 255, 20, 0.3);
        border-radius: 10px;
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .amount-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .amount-value {
        color: #39ff14;
        font-size: 1.5rem;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    }

    .btn-check {
        width: 100%;
        padding: 0.875rem;
        background: linear-gradient(45deg, #00f5ff, #bf00ff);
        color: black;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .btn-check:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
    }

    .btn-check:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .instructions {
        background: rgba(255, 140, 0, 0.1);
        border: 2px solid rgba(255, 140, 0, 0.3);
        border-radius: 10px;
        padding: 1rem;
        margin: 1.5rem 0;
        text-align: right;
    }

    .instructions p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .instructions p:last-child {
        margin-bottom: 0;
    }

    .warning {
        color: #ff073a;
        font-weight: 600;
    }

    .alert {
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1.5rem;
        border: 2px solid;
    }



    .alert-danger {
        background: rgba(255, 0, 0, 0.1);
        border-color: #ff073a;
        color: #ff073a;
    }

    .alert-success {
        background: rgba(57, 255, 20, 0.1);
        border-color: #39ff14;
        color: #39ff14;
    }


        .balance-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .balance-card:hover {
            transform: translateY(-5px);
        }

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

        .balance-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .balance-subtitle {
            color: var(--text-color);
            opacity: 0.8;
            font-size: 1.2rem;
        }

        .balance-amount {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .balance-amount::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .balance-amount-label {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .balance-amount-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        select, input {
            width: 100%;
            padding: 15px;
            background: var(--background-color);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-color);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        select:focus, input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

        .btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            text-align: center;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn i {
            margin-left: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .btn-secondary {
            background: var(--card-bg);
            color: var(--text-color);
            border: 2px solid var(--border-color);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            transition: 0.5s;
        }

        .btn:hover::after {
            animation: btn-shine 1s;
        }

        @keyframes btn-shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .message {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .message.success {
            background-color: rgba(76, 175, 80, 0.1);
            color: var(--success-color);
            border: 1px solid var(--success-color);
        }

        .message.error {
            background-color: rgba(244, 67, 54, 0.1);
            color: var(--error-color);
            border: 1px solid var(--error-color);
        }

        .deposit-btn {
            background: var(--error-color);
            color: white;
        }



    .container-gaming-full {
        position: relative;
        z-index: 2;
        padding: 3rem 1rem;
    }

    .section-title-gaming {
        text-align: center;
        color: var(--text);
    }

    .section-title-gaming h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--neon-pink);
    }

    .section-title-gaming p {
        font-size: 1.1rem;
        opacity: 0.9;
        color: #e2e8f0;
    }

    .access-info {
        background: rgba(255, 7, 58, 0.1);
        border: 2px solid var(--neon-pink);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .access-info:hover {
        box-shadow: 0 0 20px rgba(255, 7, 58, 0.4);
    }

    .access-info h3 {
        color: var(--neon-pink);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .access-info p {
        color: #fff;
        margin: 5px 0;
        font-size: 1rem;
    }

    .game-container {
        background: rgb(21 24 50);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .game-header h1 {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .game-header p {
        color: #64748b;
        font-size: 1.1rem;
    }

    .center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .outer {
        position: relative;
        background: var(--surface);
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
    }

    .outer button {
        width: 220px;
        height: 70px;
        border: none;
        border-radius: inherit;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .outer button:hover {
        transform: scale(1.05);
        background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

    .number-display {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: linear-gradient(145deg, #f8fafc, #e2e8f0);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin: 0 auto;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .number-display label {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: glow 2s ease-in-out infinite;
    }



    .info-box {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid var(--primary);
        border-radius: 16px;
        padding: 1.5rem;
        margin-top: 2rem;
        color: #64748b;
    }



    .btn-gaming:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 15px rgba(255, 7, 58, 0.5);
    }



    /* إخفاء النافبار في صفحات الألعاب فقط */
    body.game-page .navbar>.container,
    body.game-page .navbar>.container-fluid {
        display: none !important;
    }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }





        .game-container {
            width: 100%;
            /* max-width: 900px; */
            background: rgb(23 9 32);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .game-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg,
                var(--primary) 0%,
                var(--secondary) 50%,
                var(--accent) 100%);
            animation: shimmer 3s linear infinite;
        }



        .game-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .game-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .game-header p {
            color: #64748b;
            font-size: 1.1rem;
        }

        .center {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            align-items: center;
            justify-content: center;
            margin: 2rem 0;
        }

        .button-wrapper {
            position: relative;
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }

        .circle-wrapper {
            position: relative;
            width: 250px;
            height: 250px;
            margin: 0 auto;
        }

        .outer {
            position: relative;
            background: var(--surface);
            border-radius: 50px;
            box-shadow:
                0 10px 30px rgba(59, 130, 246, 0.2),
                0 0 20px rgba(59, 130, 246, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .outer:hover {
            transform: translateY(-5px);
            box-shadow:
                0 20px 40px rgba(59, 130, 246, 0.3),
                0 0 30px rgba(59, 130, 246, 0.2);
        }

        .outer button {
            width: 100%;
            height: 100%;
            min-height: 70px;
            border: none;
            border-radius: inherit;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            z-index: 1;
            position: relative;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .outer button:hover {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            transform: scale(1.02);
        }

        .outer button:active {
            transform: scale(0.98);
        }

        .outer span {
            position: absolute;
            top: -2px;
            left: -2px;
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            border-radius: inherit;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }

        .outer:hover span {
            opacity: 1;
            animation: rotate 3s linear infinite;
        }

        .circle {
            border-radius: 50%;
        }

        .number-display {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            padding: 2rem;
            border-radius: 50%;
            text-align: center;
            box-shadow:
                inset 0 2px 10px rgba(0, 0, 0, 0.05),
                0 4px 15px rgba(59, 130, 246, 0.15);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .number-display label {
            display: block;
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
            animation: glow 2s ease-in-out infinite;
        }



        .result-label {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }



        .info-box {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }

        .info-box h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .info-box p {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.6;
        }


        #game {
            width: 100%;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .game-title {
            text-align: center;
            margin-bottom: 1rem;
        }

        .game-title h1 {
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .game-title p {
            color: rgba(248, 250, 252, 0.8);
            font-size: 1.1rem;
        }

        .xbet {
            width: 280px;
            height: auto;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 15px rgba(45, 212, 191, 0.4));
            transition: transform 0.3s ease;
        }

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





            @keyframes containerGlow {
            from { box-shadow: 0 0 30px rgba(45, 212, 191, 0.2); }
            to { box-shadow: 0 0 40px rgba(14, 165, 233, 0.3); }
        }
        .cell {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 50%;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            cursor: not-allowed;
            transition: all 0.3s ease;
            box-shadow: inset 0 0 15px rgba(45, 212, 191, 0.3);
            position: relative;
            min-height: 80px;
        }

        .cell.clickable {
            cursor: pointer;
            animation: cellPulse 2s infinite alternate;
        }

        @keyframes cellPulse {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }

        .cell.has-apple {
            animation: applePulse 1.5s infinite alternate;
        }
        .cell.clickable:hover {
            background: rgba(45, 212, 191, 0.3);
            box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
        }
        @keyframes applePulse {
            from {
                transform: scale(1);
                box-shadow: inset 0 0 20px rgba(45, 212, 191, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
            }
            to {
                transform: scale(1.1);
                box-shadow: inset 0 0 30px rgba(45, 212, 191, 0.6), 0 8px 30px rgba(45, 212, 191, 0.5);
            }
        }

        #buttonsContainer {
            width: 100%;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }


        #identifier {
            background: var(--surface);
            color: var(--text);
            border: 2px solid rgba(45, 212, 191, 0.4);
            border-radius: 15px;
            padding: 1.2rem;
            font-size: 1.2rem;
            text-align: center;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        #identifier:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.3);
        }

        button {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 15px;
            padding: 1.2rem;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        button::before {
            content: '';
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        button:hover::before {
            width: 300px;
            height: 300px;
        }

        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(45, 212, 191, 0.4);
        }

        button:active {
            transform: translateY(-1px);
        }

        #multiplierButton {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            font-size: 1.8rem;
            font-weight: 900;
            padding: 1.5rem;
            animation: multiplierPulse 1.5s infinite;
        }

        #multiplierButton:hover {
            box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
        }

        @keyframes multiplierPulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
            }
            50% {
                box-shadow: 0 0 40px rgba(34, 197, 94, 0.7);
            }
        }

        .info-box {
            background: rgba(45, 212, 191, 0.1);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }

        .info-box h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .info-box p {
            color: rgba(248, 250, 252, 0.8);
            font-size: 1rem;
            line-height: 1.6;
        }

        @keyframes cellWin {
            0% { transform: scale(1); }
            50% { transform: scale(1.3) rotate(10deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        @keyframes cellLose {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-10px); }
            75% { transform: translateX(10px); }
        }



            .game-iframe {
        width: 100%;
        height: 800px;
        min-height: 600px;
        border: none;
        border-radius: 15px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .access-info {
        background: rgba(57, 255, 20, 0.1);
        border: 2px solid var(--neon-green);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        backdrop-filter: blur(10px);
    }

    .access-info h3 {
        color: var(--neon-green);
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .access-info p {
        margin: 8px 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .loading-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        z-index: 10;
        transition: opacity 0.5s ease;
    }

    .loading-overlay.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .spinner {
        width: 60px;
        height: 60px;
        border: 4px solid rgba(57, 255, 20, 0.2);
        border-top-color: var(--neon-green);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }





        .balance-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .balance-card:hover {
            transform: translateY(-5px);
        }

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

        .balance-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .balance-subtitle {
            color: var(--text-color);
            opacity: 0.8;
            font-size: 1.2rem;
        }

        .balance-amount {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .balance-amount::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }



        .balance-amount-label {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .balance-amount-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        select, input {
            width: 100%;
            padding: 15px;
            background: var(--background-color);
            border: 2px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-color);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        select:focus, input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
        }

        .btn {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
            text-align: center;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn i {
            margin-left: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .btn-secondary {
            background: var(--card-bg);
            color: var(--text-color);
            border: 2px solid var(--border-color);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            transition: 0.5s;
        }

        .btn:hover::after {
            animation: btn-shine 1s;
        }

        @keyframes btn-shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .message {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .message.success {
            background-color: rgba(76, 175, 80, 0.1);
            color: var(--success-color);
            border: 1px solid var(--success-color);
        }

        .message.error {
            background-color: rgba(244, 67, 54, 0.1);
            color: var(--error-color);
            border: 1px solid var(--error-color);
        }

        .deposit-btn {
            background: var(--error-color);
            color: white;
        }


/* ========================================
   Responsive Design - Media Queries
   ======================================== */

/* Large Screens */
@media (max-width: 1200px) {
    .content-gaming-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Medium Screens */
@media (max-width: 992px) {
    .game-iframe {
        height: 700px;
    }

    .content-gaming-wrapper {
        padding: 1.5rem 1rem;
    }

    .section-title-gaming h2 {
        font-size: 1.8rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .game-iframe {
        height: 600px;
        border-radius: 10px;
    }

    .content-gaming-wrapper {
        padding: 1rem 0.5rem;
    }

    .section-title-gaming h2 {
        font-size: 1.5rem;
    }

    .section-title-gaming p {
        font-size: 0.9rem;
    }

    .welcome-text-gaming {
        font-size: 2rem;
    }

    .stat-gaming,
    .game-card-gaming,
    .action-card-gaming {
        margin-bottom: 1.5rem;
        padding: 1rem !important;
    }

    .btn-gaming {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .access-info,
    .info-box {
        padding: 15px;
    }

    .access-info h3,
    .info-box h3 {
        font-size: 1.1rem;
    }

    .access-info p,
    .info-box p {
        font-size: 0.9rem;
    }

    .floating-notification-icon {
        bottom: 20px;
        left: 20px;
    }

    .notification-icon-link {
        width: 55px;
        height: 55px;
    }

    .notification-icon-link i {
        font-size: 16px;
    }

    .container {
        padding: 10px;
    }

    .balance-card {
        padding: 20px;
    }

    .balance-title {
        font-size: 2rem;
    }

    .balance-amount-value {
        font-size: 2rem;
    }

    .center {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .game-container {
        padding: 1.5rem;
    }

    .game-header h1,
    .game-title h1 {
        font-size: 2rem;
    }

    .number-display {
        width: 180px;
        height: 180px;
    }

    .number-display label {
        font-size: 2rem;
    }

    .outer button,
    .button-wrapper,
    .circle-wrapper {
        max-width: 200px;
    }

    button {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .cell {
        font-size: 2.2rem;
        min-height: 70px;
    }

    .xbet {
        width: 200px;
    }

    #identifier {
        font-size: 1rem;
    }
}

/* Small Tablets & Large Phones */
@media (min-width: 576px) {
    .qr-section img,
    .qr-section canvas {
        width: 220px !important;
        height: 220px !important;
        max-width: 220px !important;
        max-height: 220px !important;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .game-iframe {
        height: 500px;
        border-radius: 8px;
    }

    .content-gaming-wrapper {
        padding: 0.5rem 0.25rem;
    }

    .section-title-gaming h2 {
        font-size: 1.2rem;
    }

    .section-title-gaming p {
        font-size: 0.85rem;
    }

    .welcome-text-gaming {
        font-size: 1.5rem;
    }

    .stat-number-gaming {
        font-size: 2rem;
    }

    .game-card-gaming {
        padding: 0.75rem !important;
    }

    .btn-gaming {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .access-info,
    .info-box {
        padding: 12px;
    }

    .access-info h3,
    .info-box h3 {
        font-size: 1rem;
    }

    .access-info p,
    .info-box p {
        font-size: 0.85rem;
    }

    .floating-notification-icon {
        bottom: 15px;
        left: 15px;
    }

    .notification-icon-link {
        width: 50px;
        height: 50px;
    }

    .notification-icon-link i {
        font-size: 16px;
    }

    .notification-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .game-container {
        padding: 1rem;
    }

    .number-display {
        width: 150px;
        height: 150px;
    }

    .number-display label {
        font-size: 1.6rem;
    }

    .outer button {
        width: 180px;
        height: 55px;
        font-size: 1rem;
    }

    .container {
        gap: 8px;
        padding: 15px;
        grid-template-columns: repeat(5, 1fr);
        max-width: 100%;
    }

    .cell {
        font-size: 1.8rem;
        min-height: 55px;
    }

    .xbet {
        width: 180px;
        margin-bottom: 15px;
    }

    .game-title h1 {
        font-size: 1.5rem;
    }

    .game-title p {
        font-size: 0.9rem;
    }

    button {
        padding: 0.9rem;
        font-size: 1rem;
    }

    #identifier {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .container {
        gap: 6px;
        padding: 12px;
    }

    .cell {
        font-size: 1.5rem;
        min-height: 45px;
    }

    .xbet {
        width: 150px;
    }

    .game-title h1 {
        font-size: 1.3rem;
    }

    button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    #identifier {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}
