/* ========== ROOT VARIABLES ========== */
:root {
    --space-blue: #0a1a2a;
    --space-dark: #050c16;
    --neon-red: #ff073a;
    --neon-blue: #0084ff;
    --accent: #00d9ff;
    --text: #ffffff;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--space-dark), var(--space-blue));
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ========== BACKGROUND EFFECTS ========== */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background: linear-gradient(rgba(5, 12, 22, 0.9), rgba(10, 26, 42, 0.9));
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 230px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 280px 100px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 340px 80px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    z-index: -3;
    opacity: 0.5;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.nebula {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 7, 58, 0.4), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 132, 255, 0.4), transparent 30%);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    background: var(--neon-red);
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    box-shadow: 0 0 40px var(--neon-red);
}

.floating-element:nth-child(2) {
    width: 70px;
    height: 70px;
    background: var(--neon-blue);
    top: 60%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: -5s;
    box-shadow: 0 0 30px var(--neon-blue);
}

.floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 80%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -10s;
    box-shadow: 0 0 50px var(--accent);
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 15px) rotate(90deg); }
    50% { transform: translate(0, 30px) rotate(180deg); }
    75% { transform: translate(-20px, 15px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* ========== PROMOTIONS BANNER ========== */
.promotions-banner {
    background: linear-gradient(90deg, rgba(255, 7, 58, 0.9), rgba(0, 132, 255, 0.9));
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.promotions-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll-promo 20s linear infinite;
}

.promotion {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.promotion i {
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes scroll-promo {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

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

/* ========== HEADER & NAVIGATION ========== */
header {
    background-color: rgba(10, 26, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 7, 58, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gizmo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 7, 58, 0.5);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after, nav a.active::after {
    width: 80%;
    box-shadow: 0 0 10px var(--accent);
}

/* ========== AUTH BUTTONS ========== */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.btn-login {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--neon-blue);
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    background: rgba(0, 132, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}

.btn-register {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    box-shadow: 0 0 20px var(--neon-red);
    transform: translateY(-3px);
}

/* ========== ACCOUNT DROPDOWN ========== */
.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    background: rgba(0, 132, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 26, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-blue);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.dropdown-divider {
    height: 1px;
    background: var(--neon-blue);
    margin: 0.5rem 0;
}

/* ========== MAIN CONTENT ========== */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(to right, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 40px rgba(255, 7, 58, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 7, 58, 0.4);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #ccc;
    line-height: 1.6;
}

/* ========== GAMES GRID ========== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(5px);
}

.game-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 7, 58, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, rgba(10, 26, 42, 0.8), rgba(15, 32, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
    position: relative;
    overflow: hidden;
}

.game-content {
    padding: 1.8rem;
}

.game-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
}

.game-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    box-shadow: 0 0 15px var(--neon-red);
    transform: translateY(-2px);
}

/* ========== MODAL STYLES ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.95), rgba(5, 12, 22, 0.95));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 400px;
    max-width: 90%;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-content input {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--neon-blue);
    background-color: rgba(5, 12, 22, 0.7);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

/* ========== PAYMENT METHODS ========== */
.payment-methods {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.2);
    backdrop-filter: blur(5px);
    text-align: center;
}

.payment-methods h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.payment-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.payment-icon:hover i {
    transform: scale(1.1);
}

/* Original Colors for Payment Icons */
.fa-apple-pay { color: #000000 !important; }
.fa-google-pay { color: #5F6368 !important; }
.fa-paypal { color: #003087 !important; }
.fa-bitcoin { color: #F7931A !important; }
.fa-server { color: #007AFF !important; }
.fa-cloud { color: #00BFFF !important; }
.fa-money-bill-wave { color: #15D4A8 !important; }
.fa-credit-card { color: #FF6B35 !important; }
.fa-wallet { color: #00D632 !important; }
.fa-bolt { color: #FFD700 !important; }
.fa-mobile-alt { color: #333333 !important; }
.fa-exchange-alt { color: #007AFF !important; }

.payment-icon span {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* ========== FEATURES ========== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 7, 58, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

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

/* ========== FOOTER ========== */
footer {
    background-color: rgba(10, 26, 42, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
    border-top: 2px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 7, 58, 0.3);
    backdrop-filter: blur(5px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--space-blue);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3),
                -5px -5px 10px rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

/* ========== CHAT WIDGETS ========== */
.chat-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 99;
}

.chat-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp {
    background: linear-gradient(45deg, #25D366, #1ebe5e);
}

.facebook {
    background: linear-gradient(45deg, #0084FF, #0066cc);
}

.chat-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
        min-width: 300px;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        min-width: 280px;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .chat-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid var(--neon-blue);
    padding-bottom: 0.5rem;
}

.payment-tab {
    background: transparent;
    border: none;
    color: var(--text);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.payment-tab.active {
    color: var(--accent);
}

.payment-tab.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.payment-tab:hover {
    color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Payment Method Cards */
.payment-method-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    border-color: var(--accent);
}

/* Platform Tags */
.platform-tag {
    background: rgba(0, 132, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0.2rem;
    border: 1px solid rgba(0, 132, 255, 0.5);
}

/* Form Improvements */
select {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--neon-blue);
    background-color: rgba(5, 12, 22, 0.7);
    color: var(--text);
    font-size: 1rem;
    width: 100%;
}

select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

.dropdown-item[style*="cursor: default"]:hover {
    background-color: transparent !important;
}

.payment-platform {
    background: rgba(10, 26, 42, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    margin-bottom: 1.5rem;
}

.payment-platform:last-child {
    margin-bottom: 0;
}

.payment-platform h3 {
    color: var(--accent) !important;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 132, 255, 0.3);
}

.glow-text {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 132, 255, 0.8), 0 0 30px rgba(255, 7, 58, 0.4);
    }
}

.featured-game {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.4) !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.featured-game:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 132, 255, 0.6) !important;
}

/* Casino Animation Effects */
.casino-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Money Falling Animation */
.falling-money {
    position: absolute;
    top: -100px;
    font-size: 24px;
    color: #FFD700; /* Gold */
    text-shadow: 0 0 10px #FFD700;
    animation: fall linear forwards;
    pointer-events: none;
    user-select: none;
}

.falling-money.dollar {
    color: #32CD32; /* Lime green */
    text-shadow: 0 0 10px #32CD32;
}

.falling-money.euro {
    color: #4169E1; /* Royal blue */
    text-shadow: 0 0 10px #4169E1;
}

.falling-money.bitcoin {
    color: #F7931A; /* Bitcoin orange */
    text-shadow: 0 0 10px #F7931A;
}

.falling-money.ethereum {
    color: #627EEA; /* Ethereum blue */
    text-shadow: 0 0 10px #627EEA;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fireworks */
.firework {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
}

.firework::before,
.firework::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: explode 1s ease-out forwards;
}

@keyframes explode {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(30);
        opacity: 0;
    }
}

/* Santa Hat Animation */
.santa-hat {
    position: fixed;
    font-size: 40px;
    animation: floatSanta 15s linear infinite;
    pointer-events: none;
    z-index: 1000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

@keyframes floatSanta {
    0% {
        transform: translateX(-100px) translateY(100px) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) translateY(200px) rotate(90deg);
    }
    50% {
        transform: translateX(50vw) translateY(50px) rotate(180deg);
    }
    75% {
        transform: translateX(75vw) translateY(300px) rotate(270deg);
    }
    100% {
        transform: translateX(100vw) translateY(100px) rotate(360deg);
    }
}

/* Slot Machine Reels Animation */
.reel-symbol {
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    text-shadow: 0 0 5px currentColor;
    animation: spinReel 2s linear infinite;
}

@keyframes spinReel {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Winning Confetti */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Jackpot Flash */
@keyframes jackpotFlash {
    0%, 100% {
        background-color: rgba(255, 215, 0, 0);
    }
    50% {
        background-color: rgba(255, 215, 0, 0.2);
    }
}

.jackpot-flash {
    animation: jackpotFlash 1s infinite;
}

/* Glowing Text Effect */
.casino-glow {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FF4500, 0 0 30px #FF4500, 0 0 40px #FF4500;
    }
}

.admin-controls {
    background: rgba(10, 26, 42, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 132, 255, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

.filter-controls select:focus {
    outline: none;
    border-color: var(--neon-red);
}

.results-info {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: right;
}

/* Add to your existing CSS */
#simpleEmojiPicker {
    animation: fadeIn 0.2s ease;
}

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

/* Make sure emoji button is visible */
#emojiBtn {
    background: rgba(0, 132, 255, 0.15) !important;
    border: 1px solid var(--neon-blue) !important;
    color: var(--accent) !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
}

#emojiBtn:hover {
    background: rgba(0, 132, 255, 0.3) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.5) !important;
}