:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --accent: #ffc107;
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --success: #4caf50;
    --gradient-fire: linear-gradient(135deg, #ff5722, #ff9800, #ffc107);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #16213e 100%);
    --shadow: 0 8px 32px rgba(255, 87, 34, 0.2);
    --shadow-hover: 0 12px 40px rgba(255, 87, 34, 0.35);
    --radius: 16px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: url('bg-hero.png') center top / cover no-repeat fixed;
    background-color: #0a0a0a;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.7) 100%);
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
    padding: 15px 40px;
}

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2rem; }
.logo h1 { font-size: 1.5rem; font-weight: 800; }

.accent {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header nav { display: flex; gap: 30px; }
.header nav a {
    color: var(--text-secondary); font-weight: 600; font-size: 0.95rem;
    transition: color 0.3s; position: relative;
}
.header nav a:hover { color: var(--primary); }
.header nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--gradient-fire); transition: width 0.3s;
}
.header nav a:hover::after { width: 100%; }

.stats-banner {
    margin-top: 70px;
    background: linear-gradient(90deg, rgba(26,26,46,0.5), rgba(22,33,62,0.5), rgba(26,26,46,0.5));
    border-bottom: 1px solid rgba(255, 87, 34, 0.15);
    padding: 14px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,87,34,0.04), transparent);
    animation: bannerShine 3s infinite;
}
@keyframes bannerShine {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}
.stats-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.stats-banner-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.stats-banner-icon { font-size: 1.2rem; }
.stats-banner-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.4);
}
.stats-banner-number.stats-diamonds {
    color: #00bcd4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
}
.stats-banner-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.2;
    text-align: left;
}

.top-btn {
    background: linear-gradient(135deg, #ffd700, #ff9800, #ff5722);
    background-size: 200% 200%;
    color: #fff;
    border: 2px solid rgba(255,215,0,0.4);
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    animation: topBounce 2s ease-in-out infinite, topGlow 2s ease-in-out infinite, topShine 3s linear infinite;
    position: relative;
    overflow: hidden;
}
.top-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: topBtnShine 2.5s ease-in-out infinite;
}
.top-btn:hover { transform: scale(1.15); box-shadow: 0 6px 24px rgba(255,215,0,0.6); animation: none; }
@keyframes topBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-4px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-2px); }
}
@keyframes topGlow {
    0%, 100% { box-shadow: 0 2px 10px rgba(255,215,0,0.3), 0 0 6px rgba(255,87,34,0.2); }
    50% { box-shadow: 0 4px 24px rgba(255,215,0,0.6), 0 0 16px rgba(255,87,34,0.4); }
}
@keyframes topShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes topBtnShine {
    0%, 100% { left: -60%; }
    50% { left: 120%; }
}

.top-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.top-modal-overlay.active { display: flex; }
.top-modal {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 1px solid rgba(255,87,34,0.2);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: topModalIn 0.3s ease;
}
@keyframes topModalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.top-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none; border: none;
    color: #888; font-size: 1.5rem;
    cursor: pointer;
}
.top-modal-close:hover { color: #fff; }
.top-modal-title { text-align: center; color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.top-modal-sub { text-align: center; color: #888; font-size: 0.8rem; margin-bottom: 20px; }
.top-list { display: flex; flex-direction: column; gap: 12px; }
.top-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.top-item:first-child { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.25); }
.top-item:nth-child(2) { background: rgba(192,192,192,0.06); border-color: rgba(192,192,192,0.2); }
.top-item:nth-child(3) { background: rgba(205,127,50,0.06); border-color: rgba(205,127,50,0.2); }
.top-rank { font-size: 1.6rem; min-width: 36px; text-align: center; }
.top-info { flex: 1; }
.top-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.top-id { font-size: 0.75rem; color: #888; }
.top-stats { text-align: right; }
.top-recargas { font-weight: 800; color: var(--primary); font-size: 1rem; }
.top-diamonds { font-size: 0.75rem; color: #00bcd4; }
.top-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.top-filter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.top-filter-group label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
}
.top-filter-group input[type="date"] {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}
.top-filter-group input[type="date"]:focus { border-color: #ff5722; }
.top-empty { text-align: center; color: #888; padding: 20px; font-size: 0.9rem; }

.hero {
    position: relative; height: 500px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: url('bg-hero.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content { position: relative; z-index: 2; }
.hero-content h2 { font-size: 3.2rem; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
.hero-content p {
    font-size: 1.2rem; color: var(--text-secondary);
    margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.btn-hero {
    display: inline-block; padding: 14px 40px;
    background: var(--gradient-fire); color: #000;
    font-weight: 700; font-size: 1.1rem; border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s; box-shadow: var(--shadow);
}
.btn-hero:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.4);
}
.section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
}

/* Other Games Selector (inside player card) */
.other-games-container {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.other-games-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 14px;
    color: #94a3b8;
}

.other-games-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.other-games-category {
    background: rgba(2, 6, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px;
}

.other-games-category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffb366;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.other-games-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.other-game-btn {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 0;
}
.other-game-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.3);
    border-color: rgba(255, 95, 0, 0.4);
}
.other-game-btn.game-selected {
    border-color: #ff5f00;
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.35);
}
.ogb-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #0a0a0a;
}
.ogb-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.other-game-btn:hover .ogb-image-wrap img {
    transform: scale(1.05);
}
.ogb-image-wrap .ogb-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.ogb-tag {
    display: inline-block;
    background: #ff5f00;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    position: relative;
    top: -10px;
    margin: 0 auto;
}
.ogb-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0 12px 14px;
    margin-top: -4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ogb-icon { display: none; }

.player-section { padding: 100px 0 40px; }
.player-card {
    max-width: 550px; margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px; padding: 30px; text-align: center;
    box-shadow: 0 0 40px rgba(255, 80, 0, 0.1);
}

.input-group { text-align: left; margin-bottom: 20px; }
.input-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.85rem; color: #cbd5f5; font-family: 'Inter', sans-serif; }
.input-group input {
    width: 100%; padding: 12px 16px;
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px; color: #fff; font-size: 1rem;
    font-family: 'Inter', sans-serif; transition: all 0.3s;
    outline: none; letter-spacing: 1px;
}
.input-group input:focus {
    border-color: #ff5f00;
    box-shadow: 0 0 10px rgba(255, 95, 0, 0.4);
}
.input-group small { display: block; margin-top: 6px; color: var(--text-secondary); font-size: 0.85rem; }

.btn-verify {
    padding: 12px 36px;
    background: linear-gradient(90deg, #ff5f00, #ff2d00);
    border: none; border-radius: 30px; color: #fff;
    font-weight: 600; font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: all 0.3s;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-verify:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
}
.btn-verify:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.spinner {
    width: 18px; height: 18px; border: 3px solid rgba(255,87,34,0.2);
    border-top-color: var(--primary); border-radius: 50%;
    animation: spin 0.7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.player-info {
    margin-top: 20px; padding: 18px;
    border-radius: 12px; animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.player-info.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}
.player-info.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.verified-badge { font-weight: 700; font-size: 1.1rem; color: var(--success); }
.error-badge { font-weight: 700; font-size: 1.1rem; color: #f44336; }

.player-nickname {
    font-size: 1.4rem; font-weight: 800; margin-top: 8px;
    background: var(--gradient-fire);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.player-id-label { color: var(--text-secondary); font-size: 0.9rem; margin-top: 2px; }
.player-info.error p { margin-top: 5px; color: #f44336; font-size: 0.95rem; }

.products-section { padding: 60px 0 80px; }
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius); padding: 30px;
    text-align: center; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}
.product-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-hover);
    border-color: rgba(255, 87, 34, 0.4);
}
.product-card.popular::before {
    content: 'POPULAR'; position: absolute; top: 16px; right: -30px;
    background: var(--gradient-fire); color: #000; font-weight: 700;
    font-size: 0.7rem; padding: 4px 36px; transform: rotate(45deg);
}

.product-icon { font-size: 3rem; margin-bottom: 12px; min-height: 60px; display: flex; align-items: center; justify-content: center; }
.product-card .btn-buy { margin-top: auto; }
.product-diamonds { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.product-bonus { color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.product-price {
    font-size: 2rem; font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 20px;
}
.product-price + .product-price-base { margin-top: -16px; }
.product-price small { font-size: 0.9rem; }
.product-price-base { font-size: 0.8rem; color: #b0b0b0; margin-bottom: 16px; }

.btn-buy {
    width: 100%; padding: 12px;
    background: rgba(255, 87, 34, 0.15); border: 1px solid rgba(255, 87, 34, 0.5);
    border-radius: 12px; color: var(--primary); font-weight: 700;
    font-size: 1rem; font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: all 0.2s;
}
.btn-buy:hover { transform: scale(1.03); background: rgba(255, 87, 34, 0.3); }

.how-it-works { padding: 80px 0; background: rgba(26, 26, 46, 0.5); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
    text-align: center; padding: 30px 20px;
    background: var(--bg-card); border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.step-number {
    width: 50px; height: 50px; margin: 0 auto 16px;
    background: rgba(255, 87, 34, 0.15); border: 1px solid rgba(255, 87, 34, 0.5); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 800; color: var(--primary);
}
.step-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; }

.modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.8); z-index: 2000;
    align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 36px; max-width: 520px; width: 100%;
    max-height: 90vh; overflow-y: auto; position: relative;
    border: 1px solid rgba(255, 87, 34, 0.2);
}
.modal h2 { margin-bottom: 20px; font-size: 1.6rem; }
.modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: #fff;
    font-size: 2rem; cursor: pointer;
}

.order-summary {
    background: rgba(255, 255, 255, 0.04); border-radius: 12px;
    padding: 16px; margin-bottom: 24px;
}
.order-summary p { margin-bottom: 6px; }
.order-summary .order-total { font-size: 1.3rem; font-weight: 700; color: var(--accent); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-group input {
    width: 100%; padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; color: #fff; font-size: 1rem;
    font-family: 'Poppins', sans-serif; outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus { border-color: var(--primary); }

.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.payment-option {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px; cursor: pointer; transition: border-color 0.3s;
}
.payment-option:has(input:checked) { border-color: var(--primary); background: rgba(255, 87, 34, 0.08); }
.payment-option input { accent-color: var(--primary); }
.payment-label { font-weight: 600; font-size: 0.9rem; }

.payment-info-box {
    background: rgba(255, 193, 7, 0.08); border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 12px; padding: 16px; margin-bottom: 24px;
}
.payment-info-box h4 { margin-bottom: 10px; color: var(--accent); }
.payment-info-box p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 4px; }
.payment-info-box p strong { color: #fff; }

.btn-pay {
    width: 100%; padding: 14px;
    background: rgba(255, 87, 34, 0.15); border: 1px solid rgba(255, 87, 34, 0.5);
    border-radius: 12px; color: var(--primary); font-weight: 700;
    font-size: 1.1rem; font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: all 0.2s;
}
.btn-pay:hover { transform: scale(1.02); background: rgba(255, 87, 34, 0.3); }

.confirm-modal { text-align: center; }
.confirm-icon { font-size: 4rem; margin-bottom: 16px; }
.confirm-modal h2 { color: var(--success); }
.confirm-modal p { color: var(--text-secondary); margin-bottom: 10px; }
#confirm-details {
    background: rgba(255, 255, 255, 0.04); border-radius: 12px;
    padding: 16px; margin: 16px 0; text-align: left;
}
#confirm-details p { margin-bottom: 6px; font-size: 0.9rem; }

.orders-section { padding: 80px 0; }
.orders-search {
    display: flex; gap: 12px; max-width: 500px;
    margin: 0 auto 30px; justify-content: center;
}
.orders-search input {
    flex: 1; padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; color: #fff; font-size: 1rem;
    font-family: 'Poppins', sans-serif; outline: none;
}
.orders-search input:focus { border-color: var(--primary); }

.orders-table-container { overflow-x: auto; }
.orders-table {
    width: 100%; border-collapse: collapse;
    background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
}
.orders-table th {
    background: rgba(255, 87, 34, 0.15); padding: 14px 16px;
    text-align: left; font-weight: 700; font-size: 0.9rem;
    color: var(--accent);
}
.orders-table td {
    padding: 12px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}
.orders-table tbody tr:hover { background: rgba(255, 255, 255, 0.03); }
.empty-orders { text-align: center; color: var(--text-secondary); padding: 40px !important; }

.status-pending {
    background: rgba(255, 193, 7, 0.15); color: var(--accent);
    padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.8rem;
}
.status-completed {
    background: rgba(76, 175, 80, 0.15); color: var(--success);
    padding: 4px 12px; border-radius: 20px; font-weight: 600; font-size: 0.8rem;
}

.pay-method-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.pay-method-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #fff;
}

.pay-currency {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 6px;
}

.pay-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 6px;
}

.pay-detail-row:last-child { margin-bottom: 0; }

.pay-detail-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    word-break: break-all;
}

.btn-copy {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: #b0b0b0;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 10px;
}

.btn-copy:hover {
    background: rgba(255,193,7,0.15);
    border-color: rgba(255,193,7,0.3);
    color: #ffc107;
}

.btn-copy.copied {
    background: rgba(76,175,80,0.15);
    border-color: rgba(76,175,80,0.3);
}

.total-pay-box {
    background: linear-gradient(135deg, rgba(255,87,34,0.12), rgba(255,193,7,0.12));
    border: 2px solid rgba(255,193,7,0.3);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    margin: 16px 0;
}

.total-pay-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffc107;
    margin-bottom: 6px;
}

.total-pay-amount {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff5722, #ff9800, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-pay-base {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 4px;
}

.progress-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.progress-overlay.active { display: flex; }
.progress-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,87,34,0.2);
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.progress-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s;
}
.progress-step:last-child { border-bottom: none; }
.progress-step-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s;
}
.progress-step.waiting .progress-step-icon { background: rgba(255,255,255,0.05); color: #666; }
.progress-step.active .progress-step-icon { background: rgba(255,152,0,0.2); color: #ff9800; animation: pulseIcon 1s ease-in-out infinite; }
.progress-step.done .progress-step-icon { background: rgba(76,175,80,0.2); color: #4caf50; }
.progress-step.error .progress-step-icon { background: rgba(244,67,54,0.2); color: #f44336; }
@keyframes pulseIcon { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.15); } }
.progress-step-text { flex: 1; }
.progress-step-title { font-weight: 700; font-size: 0.95rem; transition: color 0.4s; }
.progress-step.waiting .progress-step-title { color: #555; }
.progress-step.active .progress-step-title { color: #ff9800; }
.progress-step.done .progress-step-title { color: #4caf50; }
.progress-step.error .progress-step-title { color: #f44336; }
.progress-step-sub { font-size: 0.78rem; color: #888; margin-top: 2px; }

.float-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.tv-float {
    width: 60px;
    height: 60px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
    animation: tvPulse 2s ease-in-out infinite;
}
.tv-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(0,0,0,0.5);
    animation: none;
}
@keyframes tvPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
    50% { transform: scale(1.12); box-shadow: 0 6px 28px rgba(100,100,255,0.5); }
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* Client Order Cards */
.client-orders-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.client-order-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    transition: border-color 0.3s;
}

.client-order-card:hover {
    border-color: rgba(255,152,0,0.3);
}

.client-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.client-card-date {
    font-size: 0.75rem;
    color: #b0b0b0;
}

.client-status-pending {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.client-status-completed {
    background: rgba(76,175,80,0.15);
    color: #4caf50;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.client-status-rejected {
    background: rgba(244,67,54,0.15);
    color: #f44336;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.client-card-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 10px;
}

.client-card-product-name {
    font-weight: 600;
    font-size: 1rem;
}

.client-card-amount {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ff9800;
}

.client-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.client-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.client-card-row span:first-child {
    color: #b0b0b0;
}

.client-card-actions {
    margin-top: 12px;
}

@keyframes ctaBlinkGlow {
    0% {
        box-shadow: 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(255,255,255,0);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 16px rgba(255,255,255,0.25), 0 0 30px rgba(255,255,255,0.15);
        filter: brightness(1.14);
    }
    100% {
        box-shadow: 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(255,255,255,0);
        filter: brightness(1);
    }
}

@keyframes ctaPulseBorder {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.btn-claim-code {
    width: 100%;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(37, 211, 102, 0.15);
    color: #7dffaf;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    animation: ctaBlinkGlow 1.15s ease-in-out infinite, ctaPulseBorder 1.6s ease-in-out infinite;
}

.btn-claim-code:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateY(-1px);
}

.btn-claim-tutorial {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 10px;
    border: 1px solid rgba(255, 193, 7, 0.45);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(255, 193, 7, 0.12);
    color: #ffe082;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    animation: ctaBlinkGlow 1.25s ease-in-out infinite, ctaPulseBorder 1.75s ease-in-out infinite;
}

.btn-claim-tutorial:hover {
    background: rgba(255, 193, 7, 0.22);
    border-color: rgba(255, 193, 7, 0.75);
    transform: translateY(-1px);
}

.btn-global-pin-action {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 10px;
    border: 1px solid rgba(56, 189, 248, 0.45);
    border-radius: 10px;
    padding: 10px 12px;
    background: rgba(56, 189, 248, 0.12);
    color: #a5f3fc;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    animation: ctaBlinkGlow 1.35s ease-in-out infinite, ctaPulseBorder 1.9s ease-in-out infinite;
}

.btn-global-pin-action:hover {
    background: rgba(56, 189, 248, 0.22);
    border-color: rgba(56, 189, 248, 0.75);
    transform: translateY(-1px);
}

.footer {
    text-align: center; padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer p { color: var(--text-secondary); font-size: 0.9rem; }
.footer-note { font-size: 0.8rem; margin-top: 6px; opacity: 0.6; }

.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: 14px;
    min-width: 300px;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    animation: toastIn 0.4s ease forwards;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.toast.toast-out { animation: toastOut 0.3s ease forwards; }

.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast-msg { flex: 1; }
.toast-close {
    background: none; border: none; color: inherit; font-size: 1.2rem;
    cursor: pointer; opacity: 0.6; padding: 0 0 0 8px; flex-shrink: 0;
}
.toast-close:hover { opacity: 1; }

.toast-error {
    background: rgba(244,67,54,0.15);
    border: 1px solid rgba(244,67,54,0.35);
    color: #ff8a80;
}
.toast-warning {
    background: rgba(255,193,7,0.15);
    border: 1px solid rgba(255,193,7,0.35);
    color: #ffe082;
}
.toast-success {
    background: rgba(76,175,80,0.15);
    border: 1px solid rgba(76,175,80,0.35);
    color: #a5d6a7;
}
.toast-info {
    background: rgba(33,150,243,0.15);
    border: 1px solid rgba(33,150,243,0.35);
    color: #90caf9;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(80px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(80px) scale(0.95); }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; max-width: 100vw; }
    .container { padding: 0 12px; }
    .header { padding: 10px 12px; }
    .header nav { display: none; }
    .logo h1 { font-size: 1.1rem; }
    .logo-icon { font-size: 1.5rem; }
    .hero-content h2 { font-size: 2rem; }
    .hero { height: 400px; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9rem; margin-bottom: 24px; }
    body { background-position: 80% top; }
    .player-section { padding: 80px 0 20px; }
    .other-games-category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .other-game-btn { padding: 10px 12px; font-size: 0.8rem; }
    .player-card { padding: 24px 16px; }
    .input-group input { font-size: 1rem; padding: 12px 14px; letter-spacing: 1px; }
    .products-section { padding: 40px 0 60px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card { padding: 14px 10px; border-radius: 14px; }
    .product-icon { font-size: 2rem; margin-bottom: 6px; }
    .product-diamonds { font-size: 0.95rem; font-weight: 800; margin-bottom: 2px; }
    .product-bonus { font-size: 0.7rem; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .product-price { font-size: 1.2rem; margin-bottom: 10px; }
    .product-price small { font-size: 0.65rem; }
    .product-price-base { font-size: 0.65rem; margin-bottom: 8px; }
    .product-price + .product-price-base { margin-top: -8px; }
    .btn-buy { padding: 10px; font-size: 0.8rem; border-radius: 10px; }
    .product-card.popular::before { font-size: 0.55rem; padding: 3px 28px; top: 8px; right: -30px; }
    .how-it-works { padding: 40px 0; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .step-card { padding: 20px 12px; }
    .step-card h3 { font-size: 0.95rem; }
    .step-card p { font-size: 0.8rem; }
    .modal { padding: 20px 16px; margin: 8px; max-width: 100vw; }
    .modal h2 { font-size: 1.3rem; }
    .payment-methods { grid-template-columns: 1fr; }
    .orders-section { padding: 40px 0; }
    .orders-search { flex-direction: column; gap: 8px; max-width: 100%; }
    .orders-search input { width: 100%; }
    .client-card-header { flex-wrap: wrap; gap: 6px; }
    .client-card-product { flex-wrap: wrap; gap: 4px; }
    .client-card-product-name { font-size: 0.9rem; }
    .client-card-amount { font-size: 0.95rem; }
    .total-pay-box { padding: 16px; }
    .total-pay-amount { font-size: 1.5rem; }
    .payment-info-box { padding: 12px; }
    .pay-method-block { padding: 10px; }
    .toast-container { top: 10px; left: 50%; transform: translateX(-50%); width: 92%; }
    .toast { min-width: unset; max-width: 100%; }
    .stats-banner { padding: 10px 12px; }
    .stats-banner-content { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .stats-banner-number { font-size: 1rem; }
    .stats-banner-label { font-size: 0.6rem; }
    .stats-banner-icon { font-size: 1rem; }
    .float-buttons { bottom: 16px; right: 16px; }
    .whatsapp-float, .tv-float { width: 52px; height: 52px; }
    .footer { padding: 20px 12px; }
    .footer p { font-size: 0.8rem; }
    .footer-note { font-size: 0.7rem; }
}

@media (max-width: 380px) {
    .products-grid { gap: 8px; }
    .product-card { padding: 12px 8px; }
    .product-diamonds { font-size: 0.85rem; }
    .product-price { font-size: 1rem; }
    .logo h1 { font-size: 0.95rem; }
    .section-title { font-size: 1.3rem; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ===== ROULETTE GAMING PRO ===== */
.roulette-overlay {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center; align-items: center;
    animation: rouletteFadeIn 0.3s ease;
}
.roulette-overlay.active { display: flex; }

.roulette-card {
    background: linear-gradient(145deg, #020617, #0f172a);
    border: 1px solid rgba(255,115,0,0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 380px;
    width: 92%;
    box-shadow: 0 0 60px rgba(255,115,0,0.3);
    position: relative;
}

.roulette-title {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px #ff6a00;
    margin-bottom: 4px;
}
.roulette-subtitle {
    color: #64748b;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

/* WHEEL CONTAINER */
.roulette-wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
}

/* THE WHEEL */
.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 40px #ff6a00, inset 0 0 30px rgba(0,0,0,0.9);
    transition: transform 4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}
.roulette-wheel::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 20px #000;
    top: 0; left: 0;
    pointer-events: none;
}

/* CENTER CIRCLE */
.roulette-center {
    position: absolute;
    width: 55px;
    height: 55px;
    background: #000;
    border: 3px solid #ff6a00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px #ff6a00;
    z-index: 3;
}

/* POINTER TRIANGLE */
.roulette-pointer {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 25px solid #ff6a00;
    filter: drop-shadow(0 0 8px #ff6a00);
    z-index: 4;
}

/* PRIZE LABELS ON WHEEL */
.roulette-wheel-label {
    position: absolute;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    white-space: nowrap;
    transform-origin: center center;
    pointer-events: none;
    z-index: 2;
}

/* SPIN BUTTON */
.btn-spin {
    display: inline-block;
    margin-top: 0;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #ff6a00, #ff8c00);
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 30px #ff6a00;
    transition: 0.3s;
}
.btn-spin:hover {
    transform: scale(1.12);
    box-shadow: 0 0 50px #ff8c00;
}
.btn-spin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

/* RESULT */
.roulette-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,106,0,0.08);
    border: 1px solid rgba(255,106,0,0.3);
    border-radius: 16px;
    animation: rouletteFadeIn 0.5s ease;
}
.roulette-result-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}
.roulette-result-icon img {
    width: 80px; height: 80px; object-fit: contain; border-radius: 12px;
}
.roulette-result h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 1.1rem;
    margin-bottom: 6px;
    text-shadow: 0 0 10px #00eaff;
}
.roulette-result p {
    color: #fff;
}
.roulette-result-note {
    color: #64748b;
    font-size: 0.75rem;
    margin-top: 8px;
}

/* WIN SCREEN */
.roulette-win-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6a00;
    text-shadow: 0 0 20px #ff6a00, 0 0 60px #ff6a00;
    z-index: 10001;
}
.roulette-win-screen.active { display: flex; }

@keyframes rouletteFadeIn { from { opacity: 0; } to { opacity: 1; } }
