body {
    background: #000;
    background-image: url("bg-darkfire.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffd27f;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
}

.container {
    padding: 20px;
    backdrop-filter: blur(4px);
}

.title {
    font-size: 32px;
    margin-top: 10px;
    color: #ffb300;
    text-shadow: 0 0 20px #ff6a00;
}

.subtitle {
    font-size: 14px;
    opacity: 0.7;
}

.menu-box {
    margin-top: 30px;
}

.menu-btn {
    width: 90%;
    padding: 15px;
    margin: 10px auto;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    color: white;
    cursor: pointer;
}

.yellow { background: #ffb300; box-shadow: 0 0 20px #ffb300; }
.green  { background: #00c853; box-shadow: 0 0 20px #00e676; }
.red    { background: #ff2a2a; box-shadow: 0 0 20px #ff5252; }
.white  { background: #ffffff; color: #000; box-shadow: 0 0 20px #ffffff; }

.section { margin-top: 25px; }
.hidden { display: none; }

.section-title { font-size: 20px; margin-bottom: 10px; }

.product-box,
.wallet-box,
.receipt-box,
.orders-box,
.account-box,
.pay-box {
    background: rgba(0,0,0,0.55);
    border: 1px solid #ff6a00;
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 0 25px #ff4500;
    text-align: right;
}

.wallet-info {
    margin-top: 8px;
    font-size: 14px;
    text-align: right;
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.item.disabled {
    opacity: 0.4;
    cursor: default;
}

.item:hover:not(.disabled) {
    background: rgba(255,255,255,0.05);
}

.no-numbers {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    color: #ffb300;
}

label {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 13px;
}

input[type="text"],
input[type="number"],
input[type="file"] {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #111;
    color: #ffd27f;
}

.preview {
    margin-top: 10px;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid #ff6a00;
}

.confirm-btn {
    background: #00c853;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
}

.order-card {
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    text-align: right;
    font-size: 12px;
}

.order-status-pending { color: #ffb300; }
.order-status-approved { color: #00e676; }
.order-status-rejected { color: #ff5252; }

.account-value {
    margin-top: 5px;
    font-size: 14px;
}

.account-value.small {
    font-size: 12px;
    word-break: break-all;
}

.ltr {
    direction: ltr;
    unicode-bidi: plaintext;
    font-weight: bold;
    color: #fff;
}

.pay-info { margin-top: 6px; font-size: 14px; }

.pay-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.yellow-btn { background: #ffb300; box-shadow: 0 0 15px #ffb300; }
.blue-btn   { background: #2196f3; color: #fff; box-shadow: 0 0 15px #2196f3; }

.cancel-btn {
    background: #000;
    color: #ff2a2a;
    border: 1px solid #ff2a2a;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 16px;
    cursor: pointer;
}

.pay-status {
    margin-top: 10px;
    font-size: 13px;
    color: #ffb300;
    text-align: center;
}