@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    padding-top: 90px;
}

/* ========== HEADER ========== */
header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 15px 20px;
    text-align: center;
    border-bottom: 3px solid #FE2C55;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

header.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

header.visible {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 10px;
    width: 100%;
}

header h1 {
    color: #25F4EE;
    cursor: pointer;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 0;
}

.user-badge {
    background: rgba(37, 244, 238, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(37, 244, 238, 0.2);
    font-size: 13px;
}

.user-badge span {
    color: #25F4EE;
}

nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    width: 100%;
}

nav a {
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    color: #aaa;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 13px;
    text-decoration: none;
}

nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

nav a.active {
    background: linear-gradient(135deg, #FE2C55, #ff6b8a);
    color: white;
}

#logoutBtn {
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: #FE2C55;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 13px;
}

#logoutBtn:hover {
    background: #cc2244;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #25F4EE;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== LOGIN PAGE ========== */
.login-body {
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #0a0a0a;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
}

.login-box {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo h1 {
    color: #25F4EE;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.login-logo p {
    color: #aaa;
    font-size: 14px;
    margin-top: 5px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.login-input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.login-input-group:focus-within {
    border-color: #25F4EE;
    box-shadow: 0 0 20px rgba(37, 244, 238, 0.1);
}

.login-input-group i {
    color: #25F4EE;
    font-size: 20px;
    padding: 0 15px;
}

.login-input-group input {
    flex: 1;
    padding: 14px 15px 14px 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.login-input-group input::placeholder {
    color: #666;
}

.login-error {
    color: #FE2C55;
    font-size: 14px;
    text-align: center;
    padding: 8px;
    background: rgba(254, 44, 85, 0.1);
    border-radius: 8px;
    display: none;
}

.login-btn {
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(37, 244, 238, 0.3);
}

.login-default {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.login-default p {
    color: #666;
    font-size: 13px;
    margin: 3px 0;
}

.login-default a {
    color: #25F4EE;
    text-decoration: none;
}

.login-default a:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
.login-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    padding: 15px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left p {
    color: #888;
    font-size: 14px;
}

.footer-left strong {
    color: #25F4EE;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.whatsapp-link i {
    font-size: 20px;
}

.footer-divider {
    color: #333;
}

.email-link {
    color: #888;
    font-size: 18px;
    transition: all 0.3s;
}

.email-link:hover {
    color: #25F4EE;
}

.footer-bottom {
    text-align: center;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
}

/* ========== SECTIONS ========== */
section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: auto;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== HOME ========== */
.home-box {
    text-align: center;
    padding: 40px 20px;
}

.hero h2 {
    color: #25F4EE;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(254, 44, 85, 0.2));
    padding: 8px 20px;
    border-radius: 30px;
    color: #25F4EE;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(37, 244, 238, 0.2);
}

.home-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 30px auto 0;
}

.home-buttons .primary-btn {
    display: block;
    width: 100%;
    padding: 20px 30px;
    border: none;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.home-buttons .success-option {
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
}

.home-buttons .success-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 244, 238, 0.4);
}

.home-buttons .failed-option {
    background: linear-gradient(135deg, #FE2C55, #cc2244);
    color: #fff;
}

.home-buttons .failed-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(254, 44, 85, 0.4);
}

/* ========== PLAYER SECTION ========== */
.player-section {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.player-box {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.player-box i {
    font-size: 24px;
    color: #25F4EE;
}

.player-box span {
    color: #aaa;
    font-size: 14px;
}

.player-box input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 16px;
    min-width: 200px;
}

.player-box input:focus {
    outline: none;
    border-color: #25F4EE;
}

/* ========== PACKAGES ========== */
.packages-section h2 {
    color: #25F4EE;
    font-size: 32px;
    text-align: center;
    margin-bottom: 5px;
}

.packages-section .sub-title {
    color: #aaa;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.package-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: transparent;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #25F4EE;
    color: #fff;
    background: rgba(37, 244, 238, 0.05);
}

.filter-btn.active {
    border-color: #25F4EE;
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(37, 244, 238, 0.05));
    color: #25F4EE;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.package-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px 20px 25px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #25F4EE;
    box-shadow: 0 15px 50px rgba(37, 244, 238, 0.15);
}

.package-card .coin-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #FE2C55;
    transition: all 0.3s;
}

.package-card:hover .coin-icon {
    border-color: #25F4EE;
    transform: scale(1.05);
}

.package-card h3 {
    color: #25F4EE;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
}

.package-card .coins-label {
    color: #888;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.package-card .price {
    color: #FE2C55;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 8px;
}

.package-card .package-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-card .package-badge.basic { background: #666; }
.package-card .package-badge.starter { background: #4CAF50; }
.package-card .package-badge.popular { background: #FF6B00; }
.package-card .package-badge.premium { background: #9C27B0; }
.package-card .package-badge.ultimate { background: linear-gradient(135deg, #FFD700, #FF0066); }
.package-card .package-badge.mega { background: linear-gradient(135deg, #FF0066, #FF4444); }

.package-card .popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FE2C55, #ff6b8a);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-card:active {
    transform: scale(0.95);
}

/* ========== PREMIUM STORE ========== */
.premium-store-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease;
}

.premium-store-header {
    text-align: center;
    margin-bottom: 40px;
}

.premium-store-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.title-icon {
    font-size: 40px;
}

.premium-store-header h2 {
    color: #25F4EE;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.premium-store-header p {
    color: #aaa;
    font-size: 16px;
}

.premium-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.premium-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 244, 238, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(37, 244, 238, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.premium-card-image {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-card-content {
    flex: 1;
}

.premium-card-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.premium-card-content p {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.premium-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.premium-badge {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-badge.popular { background: rgba(37, 244, 238, 0.2); color: #25F4EE; }
.premium-badge.trending { background: rgba(255, 107, 0, 0.2); color: #FF6B00; }
.premium-badge.premium { background: rgba(255, 68, 68, 0.2); color: #FF4444; }
.premium-badge.new { background: rgba(0, 212, 255, 0.2); color: #00D4FF; }
.premium-badge.pro { background: rgba(255, 215, 0, 0.2); color: #FFD700; }
.premium-badge.gift { background: rgba(52, 168, 83, 0.2); color: #34A853; }

.premium-price {
    color: #25F4EE;
    font-weight: 600;
    font-size: 14px;
}

.premium-card.tiktok:hover { border-color: #25F4EE; box-shadow: 0 20px 60px rgba(37, 244, 238, 0.15); }
.premium-card.pubg:hover { border-color: #FF6B00; box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15); }
.premium-card.freefire:hover { border-color: #FF4444; box-shadow: 0 20px 60px rgba(255, 68, 68, 0.15); }
.premium-card.cod:hover { border-color: #00D4FF; box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15); }
.premium-card.mlbb:hover { border-color: #FFD700; box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15); }
.premium-card.google:hover { border-color: #34A853; box-shadow: 0 20px 60px rgba(52, 168, 83, 0.15); }

/* ========== HOW TO PURCHASE ========== */
.how-to-purchase {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease;
}

.purchase-header {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.purchase-header h2 {
    color: #25F4EE;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.purchase-header p {
    color: #aaa;
    font-size: 16px;
}

.purchase-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.step-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #25F4EE;
    box-shadow: 0 10px 40px rgba(37, 244, 238, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.step-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #888;
    font-size: 14px;
}

/* ========== PAYMENT METHODS ========== */
.payment-methods {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-methods h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.payment-icon i {
    font-size: 24px;
}

.payment-icon.visa:hover { background: rgba(26, 83, 180, 0.3); color: #1a53b4; }
.payment-icon.mastercard:hover { background: rgba(235, 110, 50, 0.3); color: #eb6e32; }
.payment-icon.paypal:hover { background: rgba(0, 156, 222, 0.3); color: #009cde; }
.payment-icon.apple:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.payment-icon.google-pay:hover { background: rgba(66, 133, 244, 0.3); color: #4285f4; }

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    color: #25F4EE;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.features-header p {
    color: #aaa;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #25F4EE;
    box-shadow: 0 10px 40px rgba(37, 244, 238, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: rgba(37, 244, 238, 0.1);
}

.feature-icon.instant { color: #25F4EE; }
.feature-icon.secure { color: #34A853; }
.feature-icon.support { color: #FFD700; }
.feature-icon.best { color: #FF6B00; }

.feature-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: #888;
    font-size: 14px;
}

/* ========== PAYMENT ========== */
.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.payment-left, .payment-right {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.payment-left h3 {
    color: #25F4EE;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.selected-bundle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
}

.selected-bundle i {
    color: #25F4EE;
    font-size: 18px;
}

.bundle-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 5px;
}

.bundle-display img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bundle-display p {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.username-display {
    padding: 8px 16px;
    background: rgba(37, 244, 238, 0.05);
    border-radius: 10px;
    margin-bottom: 5px;
}

.username-display p {
    color: #25F4EE;
    font-weight: 600;
    font-size: 16px;
}

.card-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.card-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.card-option:hover {
    background: rgba(255,255,255,0.06);
}

.card-option.selected {
    border-color: #25F4EE;
    background: rgba(37, 244, 238, 0.08);
}

.card-option img {
    width: 50px;
    height: 35px;
    object-fit: contain;
}

.card-option .card-info {
    flex: 1;
}

.card-option .card-name {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.card-option .card-balance {
    color: #aaa;
    font-size: 13px;
    margin-top: 2px;
}

.card-option input[type="radio"] {
    accent-color: #25F4EE;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.payment-summary i {
    color: #25F4EE;
    font-size: 20px;
}

.selected-card-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    margin-bottom: 20px;
}

.selected-card-display img {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.selected-card-display p {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.date-display {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 5px;
}

.date-display i {
    color: #25F4EE;
    font-size: 18px;
}

.date-value {
    display: flex;
    gap: 20px;
    padding: 8px 0;
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
}

.date-value p {
    background: rgba(255,255,255,0.03);
    padding: 4px 12px;
    border-radius: 6px;
}

.terms {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 25px;
    color: #aaa;
    font-size: 14px;
}

.terms input[type="checkbox"] {
    accent-color: #25F4EE;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.terms label {
    cursor: pointer;
}

.pay-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(37, 244, 238, 0.3);
}

/* ========== SUMMARY BOX ========== */
.summary-box {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ========== CONFIRM ========== */
.confirm-details p {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.confirm-details p:last-child {
    border-bottom: none;
}

.confirm-details span {
    color: #25F4EE;
}

/* ========== PROCESSING ========== */
.loader {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(37, 244, 238, 0.1);
    border-top: 6px solid #25F4EE;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    border-radius: 10px;
    transition: width 0.6s ease;
}

#processingStatus {
    font-size: 20px;
    color: #25F4EE;
    margin: 10px 0;
    font-weight: 600;
}

#processingDetail {
    color: #888;
    font-size: 15px;
    margin-bottom: 10px;
}

.status-list {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
}

.status-item {
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    color: #555;
    font-size: 16px;
    transition: all 0.5s ease;
    opacity: 0.3;
    border-left: 3px solid transparent;
}

.status-item.active {
    opacity: 1;
    color: #25F4EE;
    background: rgba(37, 244, 238, 0.08);
    border-left-color: #25F4EE;
}

.status-item.done {
    opacity: 0.8;
    color: #25F4EE;
    background: rgba(37, 244, 238, 0.05);
    border-left-color: #25F4EE;
}

.status-item.done::before {
    content: '✅ ';
}

.status-item.failed {
    opacity: 1;
    color: #FE2C55;
    background: rgba(254, 44, 85, 0.08);
    border-left-color: #FE2C55;
}

/* ========== SUCCESS / FAILED ========== */
.result-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.success-icon {
    color: #25F4EE;
}

.failed-icon {
    color: #FE2C55;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.receipt-full {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.receipt-full h3 {
    color: #25F4EE;
    text-align: center;
    font-size: 20px;
}

.receipt-details p {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
}

.receipt-details p:last-child {
    border-bottom: none;
}

.receipt-details span {
    color: #25F4EE;
}

.receipt-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 2px solid rgba(255,255,255,0.05);
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.receipt-footer p {
    margin: 5px 0;
}

.receipt-footer strong {
    color: #FE2C55;
}

.badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge.success {
    background: rgba(37, 244, 238, 0.2);
    color: #25F4EE;
}

.badge.failed {
    background: rgba(254, 44, 85, 0.2);
    color: #FE2C55;
}

.badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: orange;
}

/* ========== BUTTONS ========== */
.save-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin: 5px 0;
}

.save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(37, 244, 238, 0.3);
}

.back-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: transparent;
    color: #aaa;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 5px 0;
}

.back-btn:hover {
    background: rgba(255,255,255,0.05);
    color: white;
}

/* ========== HISTORY ========== */
#historyContainer .summary-box {
    margin-bottom: 15px;
}

.history-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-item:last-child {
    border-bottom: none;
}

.history-item .status {
    font-size: 12px;
    font-weight: 600;
}

.history-item .status.success {
    color: #25F4EE;
}

.history-item .status.failed {
    color: #FE2C55;
}

.history-item .status.pending {
    color: orange;
}

/* ========== ADMIN PANEL ========== */
.admin-section h2 {
    color: #25F4EE;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #25F4EE;
}

.stat-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-icon.total { background: rgba(37, 244, 238, 0.15); }
.stat-icon.pending { background: rgba(255, 165, 0, 0.15); }
.stat-icon.success { background: rgba(37, 244, 238, 0.15); }
.stat-icon.failed { background: rgba(254, 44, 85, 0.15); }

.stat-info h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.stat-info p {
    color: #aaa;
    font-size: 14px;
}

.admin-actions {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.admin-actions h3 {
    color: #25F4EE;
    font-size: 20px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.admin-approve-btn {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-approve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 244, 238, 0.3);
}

.admin-reject-btn {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #FE2C55, #cc2244);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-reject-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(254, 44, 85, 0.3);
}

.admin-clear-btn {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #333;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-clear-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.admin-orders {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.admin-orders h3 {
    color: #25F4EE;
    font-size: 20px;
}

.admin-order-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-order-item:last-child {
    border-bottom: none;
}

.admin-order-item .order-id {
    color: #25F4EE;
    font-weight: 600;
    font-size: 14px;
}

.admin-order-item .order-details {
    color: #aaa;
    font-size: 13px;
}

.admin-order-item .order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.admin-order-item .order-status.success {
    background: rgba(37, 244, 238, 0.2);
    color: #25F4EE;
}

.admin-order-item .order-status.failed {
    background: rgba(254, 44, 85, 0.2);
    color: #FE2C55;
}

.admin-order-item .order-status.pending {
    background: rgba(255, 165, 0, 0.2);
    color: orange;
}

.admin-order-item .order-actions button {
    padding: 4px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    margin: 0 3px;
}

.admin-order-item .order-actions .approve-small {
    background: #25F4EE;
    color: #000;
}

.admin-order-item .order-actions .reject-small {
    background: #FE2C55;
    color: #fff;
}

/* ========== ADMIN - USER MANAGEMENT ========== */
.admin-user-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-user-item .user-id {
    color: #666;
    font-size: 12px;
}

.admin-user-item .user-name {
    color: #25F4EE;
    font-weight: 600;
    font-size: 14px;
}

.admin-user-item .user-role {
    color: #aaa;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.admin-user-item .user-status {
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.admin-user-item .user-status.active {
    background: rgba(37, 244, 238, 0.2);
    color: #25F4EE;
}

.admin-user-item .user-status.blocked {
    background: rgba(254, 44, 85, 0.2);
    color: #FE2C55;
}

.admin-user-item .user-login {
    color: #666;
    font-size: 11px;
}

.admin-user-item .user-actions {
    display: flex;
    gap: 5px;
}

.admin-user-item .user-actions button {
    padding: 3px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
}

.admin-user-item .user-actions .block-btn {
    background: #FE2C55;
    color: #fff;
}

.admin-user-item .user-actions .unblock-btn {
    background: #25F4EE;
    color: #000;
}

.admin-user-item .user-actions .delete-btn {
    background: #333;
    color: #fff;
}

.add-user-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    margin-top: 15px;
    align-items: end;
}

.add-user-form input {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
}

.add-user-form input:focus {
    outline: none;
    border-color: #25F4EE;
}

.add-user-form select {
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.add-user-form select option {
    background: #1a1a2e;
}

.add-user-form .add-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #25F4EE, #1a8a8a);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.add-user-form .add-btn:hover {
    transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hamburger {
        display: flex;
    }

    .header-content {
        flex-wrap: nowrap;
    }

    header h1 {
        font-size: 18px;
        flex: 1;
        text-align: left;
    }

    .user-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: rgba(26, 26, 46, 0.98);
        padding: 15px 0;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        gap: 8px;
        animation: slideDown 0.3s ease;
        backdrop-filter: blur(10px);
    }

    nav.open {
        display: flex;
    }

    nav a {
        width: 90%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    #logoutBtn {
        width: 90%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    .payment-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .premium-store-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .premium-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }

    .premium-card-image {
        width: 60px;
        height: 60px;
    }

    .premium-card-content h3 {
        font-size: 17px;
    }

    .premium-store-header h2,
    .purchase-header h2,
    .features-header h2 {
        font-size: 28px;
    }

    .purchase-steps {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .payment-icons {
        gap: 10px;
    }

    .payment-icon {
        padding: 8px 14px;
        font-size: 12px;
    }

    .package-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .add-user-form {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .add-user-form .add-btn {
        grid-column: span 2;
    }

    .hero h2 {
        font-size: 28px;
    }

    .home-buttons .primary-btn {
        font-size: 18px;
        padding: 15px 20px;
    }

    .login-box {
        padding: 30px 20px;
    }

    .login-body {
        padding-top: 60px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    header {
        padding: 10px 15px;
    }

    header h1 {
        font-size: 16px;
    }

    .user-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    nav a {
        font-size: 13px;
        padding: 10px;
    }

    #logoutBtn {
        font-size: 13px;
        padding: 10px;
    }

    .premium-store-grid {
        grid-template-columns: 1fr;
    }

    .purchase-steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .premium-card {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }

    .premium-card-image {
        width: 50px;
        height: 50px;
    }

    .package-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .add-user-form {
        grid-template-columns: 1fr;
    }

    .add-user-form .add-btn {
        grid-column: span 1;
    }

    .hero h2 {
        font-size: 24px;
    }

    .home-buttons .primary-btn {
        font-size: 16px;
        padding: 12px 15px;
    }

    .login-box {
        padding: 20px 15px;
    }

    .login-logo h1 {
        font-size: 22px;
    }

    .login-footer {
        padding: 10px 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========== HISTORY PAGE ========== */

.history-header {
    text-align: center;
    margin-bottom: 30px;
}

.history-header h2 {
    color: #25F4EE;
    font-size: 32px;
    font-weight: 700;
}

.history-header .sub-title {
    color: #aaa;
    font-size: 16px;
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.history-stats .stat-card.small {
    padding: 15px 20px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.history-stats .stat-card.small:hover {
    transform: translateY(-3px);
    border-color: #25F4EE;
}

.history-stats .stat-card.small .stat-icon {
    font-size: 28px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.history-stats .stat-card.small .stat-icon.total {
    background: rgba(37, 244, 238, 0.15);
}

.history-stats .stat-card.small .stat-icon.pending {
    background: rgba(255, 165, 0, 0.15);
}

.history-stats .stat-card.small .stat-icon.success {
    background: rgba(37, 244, 238, 0.15);
}

.history-stats .stat-card.small .stat-icon.failed {
    background: rgba(254, 44, 85, 0.15);
}

.history-stats .stat-card.small .stat-info h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.history-stats .stat-card.small .stat-info p {
    color: #888;
    font-size: 12px;
}

.history-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.history-filters .filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    background: transparent;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-filters .filter-btn:hover {
    border-color: #25F4EE;
    color: #fff;
    background: rgba(37, 244, 238, 0.05);
}

.history-filters .filter-btn.active {
    border-color: #25F4EE;
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(37, 244, 238, 0.05));
    color: #25F4EE;
}

.history-order-item {
    transition: all 0.3s ease;
}

.history-order-item:hover {
    border-color: rgba(37, 244, 238, 0.2);
    transform: translateX(5px);
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.history-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.order-id-badge {
    color: #25F4EE;
    font-weight: 600;
    font-size: 13px;
    background: rgba(37, 244, 238, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(37, 244, 238, 0.1);
}

.order-package {
    display: flex;
    flex-direction: column;
}

.package-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.package-coins {
    color: #888;
    font-size: 12px;
}

.history-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.order-amount {
    color: #FE2C55;
    font-weight: 700;
    font-size: 16px;
}

.order-status {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.order-status.success {
    background: rgba(37, 244, 238, 0.2);
    color: #25F4EE;
}

.order-status.failed {
    background: rgba(254, 44, 85, 0.2);
    color: #FE2C55;
}

.order-status.pending {
    background: rgba(255, 165, 0, 0.2);
    color: orange;
}

.order-date {
    color: #666;
    font-size: 12px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px dashed rgba(255,255,255,0.05);
}

/* ========== HISTORY RESPONSIVE ========== */
@media (max-width: 768px) {
    .history-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .history-stats .stat-card.small {
        padding: 12px 15px;
    }
    
    .history-stats .stat-card.small .stat-info h3 {
        font-size: 20px;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .history-right {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .history-filters {
        gap: 8px;
    }
    
    .history-filters .filter-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .history-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .history-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .history-stats .stat-card.small {
        padding: 10px 12px;
    }
    
    .history-stats .stat-card.small .stat-icon {
        font-size: 22px;
        width: 38px;
        height: 38px;
    }
    
    .history-stats .stat-card.small .stat-info h3 {
        font-size: 18px;
    }
    
    .history-stats .stat-card.small .stat-info p {
        font-size: 10px;
    }
    
    .history-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .history-right {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .order-amount {
        font-size: 14px;
    }
    
    .order-status {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .package-name {
        font-size: 13px;
    }
}