* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    color: #e2e8f0;
    min-height: 100vh;
    padding-top: 45px;
}

/* Live Feed Banner */
.live-feed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.live-feed-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.live-indicator {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse-live {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.live-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    position: sticky;
    top: 45px;
    z-index: 40;
    padding: 16px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #818cf8, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}

.nav-buttons { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.nav-btn {
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 13px;
}

.nav-btn.active { 
    background: linear-gradient(135deg, #3b82f6, #2563eb); 
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.nav-btn.inactive { 
    background-color: rgba(51, 65, 85, 0.5); 
    color: #cbd5e1;
}
.nav-btn.inactive:hover {
    background-color: rgba(71, 85, 105, 0.7);
    transform: translateY(-1px);
}
.nav-btn.logout { background-color: #dc2626; color: white; }

.user-status {
    display: none;
    color: #06b6d4;
    font-weight: 600;
    margin-left: 20px;
    font-size: 13px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.active { display: flex; }

.modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    padding: 32px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.2);
}

.modal-header { font-size: 24px; font-weight: bold; color: white; margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #cbd5e1; }
.form-group input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #475569; 
    border-radius: 6px; 
    background-color: #0f172a; 
    color: white;
    font-size: 14px;
}

.checkbox-group { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px;
    cursor: pointer;
}
.checkbox-group input[type="checkbox"] { 
    width: 20px; 
    height: 20px; 
    accent-color: #06b6d4;
    cursor: pointer;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover { opacity: 0.9; }

.btn-primary { 
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); 
    color: white; 
    width: 100%;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}
.btn-secondary { background-color: #334155; color: white; flex: 1; }
.btn-copy { background-color: #3b82f6; color: white; width: 100%; margin-top: 12px; }

.modal-footer { display: flex; gap: 10px; margin-top: 20px; }

.access-key-value {
    background-color: #334155;
    padding: 12px;
    border-radius: 4px;
    font-family: monospace;
    color: #06b6d4;
    word-break: break-all;
    font-size: 12px;
    margin: 16px 0;
}

.content { display: none; padding: 32px 0; }
.content.active { display: block; }

.section-title { font-size: 32px; font-weight: bold; color: white; margin-bottom: 32px; }

.shop-container { display: grid; grid-template-columns: 200px 1fr; gap: 24px; }

.filter-panel {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    height: fit-content;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(10px);
}

.filter-title { font-size: 18px; font-weight: bold; margin-bottom: 16px; color: white; }

.filter-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    border: none;
    border-radius: 6px;
    background-color: #334155;
    color: #cbd5e1;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.filter-btn:hover { background-color: #475569; }
.filter-btn.active { 
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); 
    color: white; 
    font-weight: 600;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.cheats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

.cheat-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.cheat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

.cheat-card:hover { 
    border-color: rgba(96, 165, 250, 0.6); 
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
}

.cheat-card-body { padding: 24px; }

.cheat-name { font-size: 18px; font-weight: bold; color: white; margin-bottom: 8px; }
.cheat-game { color: #94a3b8; font-size: 14px; margin-bottom: 12px; }

.cheat-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.status-working { background-color: #166534; color: #86efac; }
.status-maintenance { background-color: #854d0e; color: #fde047; }
.status-updating { background-color: #1e40af; color: #93c5fd; }

.cheat-price {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding-top: 12px;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 15px;
}

.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    font-size: 14px;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

/* Status Page Redesign */
.status-vanguard-hero {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vanguard-info h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
}

.vanguard-info p {
    color: #fecaca;
    font-size: 16px;
}

.vanguard-icon {
    font-size: 80px;
}

.status-grid {
    display: grid;
    gap: 16px;
}

.status-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.status-card:hover {
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-game-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.status-game-subtitle {
    color: #94a3b8;
    font-size: 14px;
}

.status-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.status-badge {
    padding: 10px 16px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.badge-undetected { 
    background: linear-gradient(135deg, #065f46, #047857); 
    color: #86efac;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.badge-safe { 
    background: linear-gradient(135deg, #065f46, #047857); 
    color: #86efac;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.badge-na { background-color: rgba(51, 65, 85, 0.5); color: #94a3b8; }
.badge-working { 
    background: linear-gradient(135deg, #065f46, #047857); 
    color: #86efac;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.badge-maintenance { 
    background: linear-gradient(135deg, #92400e, #b45309); 
    color: #fde047;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}
.badge-updating { 
    background: linear-gradient(135deg, #1e40af, #2563eb); 
    color: #93c5fd;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.status-badge-label {
    display: block;
    font-size: 10px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.status-update-time {
    color: #64748b;
    font-size: 12px;
    text-align: right;
}

.alert-info {
    background-color: #1e3a8a;
    border: 1px solid #3b82f6;
    color: #93c5fd;
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
}

.info-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.info-section:hover {
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.info-section-title { font-size: 24px; font-weight: bold; color: #06b6d4; margin-bottom: 16px; }
.info-text { color: #cbd5e1; line-height: 1.8; }

.contact-box {
    background-color: #0f172a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #334155;
    margin-top: 24px;
}

.contact-item { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 12px;
    align-items: center;
}
.contact-label { color: #06b6d4; font-weight: bold; }
.contact-link {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-link:hover {
    color: #06b6d4;
}

.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }

.account-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}
.account-card:hover {
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.card-title { font-size: 20px; font-weight: bold; color: white; margin-bottom: 16px; }

.account-info {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
}

.info-label { font-weight: 600; }
.info-value { color: white; font-weight: 600; }

.balance-display {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.balance-amount { font-size: 40px; font-weight: bold; color: white; }

.api-key-box {
    background-color: #0f172a;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #334155;
    margin-top: 12px;
}

.btn-recharge {
    width: 100%;
    background-color: #06b6d4;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-recharge:hover {
    background-color: #0891b2;
}

.download-hero {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    padding: 48px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 24px;
}

.download-title { font-size: 28px; font-weight: bold; color: white; margin-bottom: 12px; }
.download-subtitle { color: #e2e8f0; margin-bottom: 24px; }

.btn-download {
    background-color: white;
    color: #1e293b;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-download:hover {
    transform: scale(1.05);
}

.password-box {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    backdrop-filter: blur(10px);
}

.password-label {
    font-size: 16px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 12px;
}

.password-value {
    background-color: #334155;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.btn-copy-password {
    background-color: #fbbf24;
    color: #1e293b;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-copy-password:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.instructions {
    background-color: #1e293b;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.instructions-title { font-size: 24px; font-weight: bold; color: white; margin-bottom: 24px; }

.step { display: flex; gap: 20px; margin-bottom: 24px; }

.step-number {
    background-color: #06b6d4;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 { font-size: 18px; font-weight: bold; color: white; margin-bottom: 8px; }
.step-content p { color: #cbd5e1; line-height: 1.6; }

.code-block {
    background-color: #0f172a;
    padding: 12px;
    border-radius: 4px;
    color: #06b6d4;
    font-family: monospace;
    font-size: 12px;
    margin-top: 8px;
    display: inline-block;
}

.alert-warning {
    background-color: #1e3a8a;
    border: 1px solid #3b82f6;
    color: #93c5fd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

.alert-tips {
    background-color: #166534;
    border: 1px solid #22c55e;
    color: #86efac;
    padding: 20px;
    border-radius: 8px;
    margin-top: 24px;
}

footer {
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 24px 0;
    text-align: center;
    color: #94a3b8;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .shop-container { grid-template-columns: 1fr; }
    .filter-panel { position: static; }
    .cheats-grid { grid-template-columns: 1fr; }
    .account-grid { grid-template-columns: 1fr; }
    .status-vanguard-hero { flex-direction: column; text-align: center; }
    .vanguard-icon { margin-top: 20px; }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification styles */
.notification {
    position: fixed;
    top: 125px;
    right: 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 12px;
    padding: 20px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 10%, 20% { transform: rotate(0); }
    5%, 15% { transform: rotate(-10deg); }
    7.5%, 17.5% { transform: rotate(10deg); }
}

.notification-message {
    flex: 1;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.notification-close:hover {
    color: #e2e8f0;
}

/* New product badge */
.new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cheat-card.new-product {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.cheat-card.new-product:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4), 0 0 50px rgba(251, 146, 60, 0.3);
}

/* Cheat description */
.cheat-description {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    max-height: 150px;
    overflow-y: auto;
}

.cheat-description::-webkit-scrollbar {
    width: 6px;
}

.cheat-description::-webkit-scrollbar-track {
    background: rgba(51, 65, 85, 0.3);
    border-radius: 3px;
}

.cheat-description::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 3px;
}

.cheat-description::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 70px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification {
        transform: translateY(-100px);
    }
}
