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

body {
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f35 100%);
    min-height: 100vh;
    color: #fff;
}

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

/* Header Glow Effect */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.glow {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(45deg, #00ff88, #00aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0,255,136,0.3);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 30px rgba(0,255,136,0.3); }
    50% { text-shadow: 0 0 50px rgba(0,170,255,0.5); }
    100% { text-shadow: 0 0 30px rgba(0,255,136,0.3); }
}

.subtitle {
    color: #8899bb;
    font-size: 16px;
    margin-top: 10px;
}

/* Card */
.card {
    background: rgba(20, 25, 45, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.card h2 {
    color: #00ff88;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #aabbdd;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(10, 15, 30, 0.8);
    border: 2px solid #2a3a5a;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
}

/* Total Box */
.total-box {
    background: linear-gradient(135deg, #1a2a3a, #0a1a2a);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    border: 1px solid #00ff88;
}

.total-amount {
    font-size: 28px;
    font-weight: 800;
    color: #00ff88;
}

/* Button Glow */
.btn-glow {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #00ff88, #00aaff);
    border: none;
    border-radius: 10px;
    color: #0a0f1e;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,255,136,0.4);
}

.btn-glow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Orders List */
.orders-list {
    background: rgba(20, 25, 45, 0.7);
    border-radius: 15px;
    padding: 20px;
}

.orders-list h3 {
    color: #00aaff;
    margin-bottom: 15px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(10, 15, 30, 0.8);
    border-radius: 8px;
    border-left: 4px solid;
}

.order-item.status-pending {
    border-left-color: #ffaa00;
}

.order-item.status-completed {
    border-left-color: #00ff88;
}

.order-id {
    font-weight: 600;
    color: #aabbdd;
    font-size: 12px;
}

.order-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending .order-status {
    background: rgba(255,170,0,0.2);
    color: #ffaa00;
}

.status-completed .order-status {
    background: rgba(0,255,136,0.2);
    color: #00ff88;
}

/* Modal QRIS */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.modal-content {
    background: linear-gradient(135deg, #1a1f35, #0a0f1e);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #00ff88;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #00ff88;
}

.qr-container {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    display: inline-block;
}

.qr-container img {
    width: 250px;
    height: 250px;
}

.payment-details {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.payment-details p {
    margin: 10px 0;
    color: #aabbdd;
}

.payment-details .warning {
    color: #ffaa00;
    font-weight: 600;
}

.countdown {
    font-size: 20px;
    font-weight: 800;
    color: #00ff88;
    margin: 20px 0;
}

#statusCheck {
    font-size: 16px;
    margin-top: 15px;
    color: #ffaa00;
}

/* Responsive */
@media (max-width: 600px) {
    .glow {
        font-size: 32px;
    }
    
    .card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* Tambahkan di akhir style.css */

/* Price List */
.price-list {
    background: rgba(20, 25, 45, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.price-list h3 {
    color: #00aaff;
    margin-bottom: 15px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.price-item {
    background: rgba(10, 15, 30, 0.8);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2a3a5a;
    transition: transform 0.3s;
}

.price-item:hover {
    transform: translateY(-3px);
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0,255,136,0.2);
}

.price-qty {
    display: block;
    font-size: 14px;
    color: #aabbdd;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #00ff88;
}

/* Info Box */
.info-box {
    background: rgba(0, 170, 255, 0.1);
    border: 1px dashed #00aaff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 14px;
    color: #aabbdd;
    text-align: center;
}

/* Order Item Update */
.order-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px 100px 80px;
    align-items: center;
    gap: 10px;
}

.order-amount {
    color: #00ff88;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .order-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: left;
    }
    
    .price-grid {
        grid-template-columns: 1fr 1fr;
    }
}