* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

body {
    background: #0a0a0f;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 70px;
}

/* ============================================ */
/* USER NOTIFICATION STYLES */
/* ============================================ */

/* Notification Badge (အောက်ခြေမှာ) */
.user-notification-badge {
    position: fixed;
    bottom: 90px;
    right: 15px;
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border-radius: 50px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 5000;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
    animation: bounce 2s infinite;
}

.user-notification-badge .badge-icon {
    font-size: 18px;
}

.user-notification-badge .badge-count {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* User Notification Modal */
.user-notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 6000;
    padding: 16px;
}

.user-notification-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.user-notification-content {
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.user-notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    position: relative;
}

.user-notification-icon {
    font-size: 24px;
}

.user-notification-title {
    flex: 1;
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
}

.user-notification-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.user-notification-close:active {
    transform: scale(0.9);
    background: rgba(255,255,255,0.2);
}

.user-notification-body {
    margin-bottom: 20px;
}

/* Notification List in User Modal */
.user-notif-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-notif-item:hover {
    background: rgba(255,215,0,0.08);
    transform: translateX(3px);
}

.user-notif-item.unread {
    border-left: 4px solid #ffd700;
    background: rgba(255,215,0,0.05);
}

.user-notif-item.read {
    opacity: 0.8;
}

.user-notif-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.user-notif-item-title {
    color: #ffd700;
    font-size: 15px;
    font-weight: 600;
}

.user-notif-time {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
}

.user-notif-message {
    color: white;
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.user-notif-image {
    max-width: 100%;
    max-height: 120px;
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid rgba(255,215,0,0.3);
}

.user-notif-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.user-notif-badge {
    background: #ffd700;
    color: #0a0a0f;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

/* Single Notification View (အသေးစိတ်) */
.user-notif-detail {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 15px;
}

.user-notif-detail-title {
    color: #ffd700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.user-notif-detail-time {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    text-align: center;
    margin-bottom: 20px;
}

.user-notif-detail-message {
    color: white;
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0;
    white-space: pre-wrap;
}

.user-notif-detail-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 16px;
    margin: 15px 0;
    border: 2px solid #ffd700;
}

.user-notification-footer {
    margin-top: 20px;
}

.user-notification-btn {
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border: none;
    border-radius: 40px;
    padding: 14px;
    width: 100%;
    color: #0a0a0f;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-notification-btn:active {
    transform: scale(0.97);
}

/* Empty state for notifications */
.user-notif-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.5);
}

.user-notif-empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    pointer-events: none;
}

.top-nav > * {
    pointer-events: auto;
}

/* Menu Icon */
.menu-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
    transition: transform 0.2s ease;
}

.menu-icon:hover {
    transform: scale(1.1);
}

.menu-icon:active {
    transform: scale(0.95);
}

.menu-bar {
    width: 24px;
    height: 3px;
    background-color: #0a0a0f;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Store Title (ခလယ်က စာတန်း) */
.store-title {
    background: linear-gradient(145deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
    border: 2px solid #ffd700;
    border-radius: 40px;
    padding: 8px 20px;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
    backdrop-filter: blur(5px);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(255,215,0,0.3);
        border-color: #ffd700;
    }
    50% {
        box-shadow: 0 5px 30px rgba(255,215,0,0.6);
        border-color: #fff0a0;
    }
}

.title-text {
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    background: linear-gradient(145deg, #ffd700, #fdb931);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-text::before {
    content: '⚡';
    margin-right: 6px;
    color: #ffd700;
    -webkit-text-fill-color: initial;
}

.title-text::after {
    content: '⚡';
    margin-left: 6px;
    color: #ffd700;
    -webkit-text-fill-color: initial;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
    position: relative;
    transition: transform 0.2s ease;
}

.bell-icon:hover {
    transform: scale(1.1);
}

.bell-icon i {
    font-size: 28px;
    color: #0a0a0f;
    line-height: 1;
    display: block;
    font-style: normal;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid #0a0a0f;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Menu Panel */
.menu-panel {
    position: fixed;
    top: 80px;
    left: 20px;
    width: 300px;
    max-height: 400px;
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 20px;
    z-index: 1002;
    display: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-panel.show {
    display: block;
}

.menu-header {
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header h3 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.menu-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.menu-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.menu-list {
    max-height: 350px;
    overflow-y: auto;
    padding: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.menu-item:hover {
    background: rgba(255,215,0,0.1);
    transform: translateX(5px);
    border-color: rgba(255,215,0,0.3);
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,215,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffd700;
}

.menu-item-text {
    flex: 1;
}

.menu-item-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.menu-item-desc {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.menu-item-arrow {
    color: rgba(255,215,0,0.5);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.menu-item:hover .menu-item-arrow {
    transform: translateX(5px);
    color: #ffd700;
}

/* Notification Panel */
.notification-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 320px;
    max-height: 400px;
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 20px;
    z-index: 1002;
    display: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-panel.show {
    display: block;
}

.notification-header {
    background: rgba(255,215,0,0.1);
    padding: 15px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h3 {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.notification-header span {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.notification-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-item:hover {
    background: rgba(255,215,0,0.1);
    transform: translateX(-2px);
}

.notification-item.pending {
    border-left: 4px solid #ffd700;
}

.notification-item.success {
    border-left: 4px solid #00ff00;
}

.notification-item.failed {
    border-left: 4px solid #ff4444;
}

.notification-order-id {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-time {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-status {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255,215,0,0.15);
    color: #ffd700;
}

.notification-status.success {
    background: rgba(0,255,0,0.15);
    color: #00ff00;
}

.notification-status.failed {
    background: rgba(255,68,68,0.15);
    color: #ff4444;
}

.empty-notification {
    text-align: center;
    padding: 30px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Mobile Container */
.mobile-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 90px 12px 90px;
    background: #0a0a0f;
}

/* Advertisement Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    touch-action: pan-y pinch-zoom;
}

.slider-item {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 16px 12px;
    font-size: 14px;
    font-weight: 500;
}

.slider-caption .title {
    color: #ffd700;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.slider-caption .description {
    font-size: 12px;
    opacity: 0.9;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: #ffd700;
    width: 24px;
    border-radius: 12px;
}

/* Game/Server ID Section */
.id-section {
    background: linear-gradient(165deg, rgba(20,20,30,0.95) 0%, rgba(30,30,45,0.98) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 28px;
    padding: 20px 16px;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.id-title {
    color: #ffd700;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.id-status {
    background: rgba(255,215,0,0.15);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.3);
}

.id-input-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.id-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(10,10,15,0.8);
    border: 1.5px solid rgba(255,215,0,0.2);
    border-radius: 20px;
    padding: 4px 18px 4px 22px;
    transition: all 0.25s ease;
    min-height: 60px;
    position: relative;
}

.id-input-wrapper.filled {
    border-color: #ffd700;
    background: rgba(20,20,30,0.95);
    box-shadow: 0 0 0 2px rgba(255,215,0,0.2);
}

.id-input-wrapper.error {
    border-color: #ff4444;
    background: rgba(255,68,68,0.1);
}

.id-input-wrapper input {
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 14px 0;
    width: 100%;
    outline: none;
}

.id-input-wrapper input::placeholder {
    color: rgba(255,255,255,0.3);
}

.help-icon {
    color: rgba(255,215,0,0.6);
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,215,0,0.1);
    cursor: pointer;
    border: 1px solid rgba(255,215,0,0.2);
}

/* Account Name Display */
.account-name-display {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255,215,0,0.08);
    border-radius: 16px;
    border: 1px solid rgba(255,215,0,0.2);
    display: none;
    align-items: center;
    justify-content: space-between;
}

.account-name-display.show {
    display: flex;
}

.account-name-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-name-label {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.account-name-value {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-verified {
    background: #00ff00;
    color: #0a0a0f;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255,68,68,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,68,68,0.3);
    display: none;
}

.account-error.show {
    display: block;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    border-top-color: #ffd700;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Manual Check Button */
.manual-check-btn {
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.manual-check-btn:active {
    background: rgba(255,215,0,0.25);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin: 20px 0 12px 4px;
}

.section-badge {
    background: linear-gradient(145deg, #ffd700, #fdb931);
    color: #0a0a0f;
    font-weight: 700;
    font-size: 15px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 12px;
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.section-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 5px;
}

.product-card {
    background: linear-gradient(165deg, rgba(25,25,35,0.95) 0%, rgba(18,18,25,0.98) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 22px;
    padding: 14px 4px 12px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    min-height: 140px;
}

.product-card.selected {
    border: 2px solid #ffd700;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.3);
    transform: translateY(-2px);
}

.product-card:active {
    transform: scale(0.97);
}

.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(145deg, #ffd700, #fdb931);
    color: #0a0a0f;
    font-size: 8px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(255,215,0,0.4);
    z-index: 3;
}

.product-image {
    width: 55%;
    margin: 8px auto 8px;
    display: block;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.7));
}

.product-name {
    color: white;
    font-size: 11px;
    font-weight: 500;
    margin: 6px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 6px;
}

.product-price {
    color: #ffd700;
    font-size: 11px;
    font-weight: 700;
    margin: 2px auto 0;
    background: rgba(255,215,0,0.12);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 40px;
    border: 1px solid rgba(255,215,0,0.2);
}

/* Selected Item Info Bar */
.selected-info {
    background: rgba(255,215,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    padding: 12px 16px;
    margin: 20px 0 10px;
    display: none;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    position: sticky;
    top: 10px;
    z-index: 10;
}

.selected-info.active {
    display: flex;
}

.selected-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selected-name {
    font-weight: 600;
    color: #ffd700;
}

.selected-price {
    font-size: 13px;
    opacity: 0.9;
}

.selected-remove {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* Fixed Bottom Button */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(165deg, rgba(20,20,30,0.98) 0%, rgba(15,15,25,0.98) 100%);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255,215,0,0.2);
    padding: 8px 16px 12px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.bottom-nav.visible {
    display: block;
}

.order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: white;
    font-size: 13px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-item img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.order-name {
    font-weight: 500;
    color: #ffd700;
    font-size: 12px;
}

.order-id {
    font-size: 10px;
    opacity: 0.7;
}

.total-price {
    font-size: 15px;
    font-weight: 700;
    color: #ffd700;
}

.buy-button {
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border: none;
    border-radius: 40px;
    padding: 12px 16px;
    width: 100%;
    color: #0a0a0f;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.buy-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 16px;
    overflow-y: auto;
}

.success-modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 24px 20px;
    max-width: 380px;
    width: 100%;
    color: white;
    box-shadow: 0 25px 50px rgba(255,215,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.payment-section {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,215,0,0.1);
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.payment-icon img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: white;
    padding: 8px;
    object-fit: contain;
}

.payment-icon span {
    font-size: 12px;
    color: #ffd700;
}

.payment-note {
    text-align: center;
    margin: 15px 0 10px;
    padding: 12px;
    background: rgba(255,215,0,0.05);
    border-radius: 30px;
    border: 1px dashed rgba(255,215,0,0.3);
    color: #ffd700;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.payment-note span {
    background: rgba(255,215,0,0.15);
    padding: 4px 12px;
    border-radius: 30px;
    margin: 0 4px;
}

.account-info {
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(255,215,0,0.15);
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.info-value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 15px;
    font-weight: 500;
}

.copy-btn {
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.copy-btn:active {
    background: rgba(255,215,0,0.3);
    transform: scale(0.95);
}

.copy-btn.copied {
    background: #00ff00;
    color: #0a0a0f;
    border-color: #00ff00;
}

/* File Upload Section */
.file-upload-section {
    margin: 16px 0;
}

.file-label {
    display: block;
    background: rgba(255,215,0,0.1);
    border: 2px dashed rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-label:hover {
    background: rgba(255,215,0,0.15);
    border-color: #ffd700;
}

.file-label input {
    display: none;
}

.file-icon {
    font-size: 30px;
    margin-bottom: 8px;
}

.file-text {
    color: #ffd700;
    font-size: 14px;
    font-weight: 500;
}

.file-hint {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    margin-top: 5px;
}

.preview-image {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 12px;
    margin-top: 10px;
    border: 2px solid #ffd700;
}

/* Selected Data Section */
.selected-data {
    background: rgba(255,215,0,0.05);
    border-radius: 16px;
    padding: 16px;
    margin: 16px 0;
    border: 1px dashed rgba(255,215,0,0.3);
}

.data-title {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.data-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.1);
}

.data-label {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.data-value {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.order-number {
    background: rgba(255,215,0,0.1);
    border-radius: 12px;
    padding: 12px;
    margin: 16px 0;
    border: 1px solid rgba(255,215,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-number-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.order-number-value {
    color: #ffd700;
    font-weight: 600;
    font-size: 16px;
    font-family: monospace;
}

.send-btn {
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border: none;
    border-radius: 40px;
    padding: 14px 20px;
    width: 100%;
    color: #0a0a0f;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin: 16px 0 12px;
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    padding: 12px;
    width: 100%;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #0a0a0f;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 500;
    z-index: 3000;
    display: none;
    box-shadow: 0 5px 20px rgba(255,215,0,0.3);
}

.toast.show {
    display: block;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    15% { opacity: 1; transform: translate(-50%, 0); }
    85% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* Order Details Modal */
.order-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 16px;
}

.order-details-modal.active {
    display: flex;
}

.order-details-content {
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 24px 20px;
    max-width: 380px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}

.order-details-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
}

.order-details-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.order-detail-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.order-detail-value {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.order-detail-value.success {
    color: #00ff00;
}

.order-detail-value.pending {
    color: #ffd700;
}

.order-detail-value.failed {
    color: #ff4444;
}

/* Success Dialog Modal */
.success-dialog-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}

.success-dialog-modal.active {
    display: flex;
}

.success-dialog-content {
    background: linear-gradient(165deg, #1a1a25, #12121a);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 30px 24px;
    max-width: 380px;
    width: 100%;
    color: white;
    box-shadow: 0 25px 50px rgba(255,215,0,0.3);
    animation: slideUp 0.4s ease;
}

.success-dialog-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 16px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-dialog-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.success-dialog-body {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,215,0,0.2);
    max-height: 300px;
    overflow-y: auto;
}

.success-dialog-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.success-dialog-row:last-child {
    border-bottom: none;
}

.success-dialog-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.success-dialog-value {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.success-dialog-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.success-dialog-btn {
    flex: 1;
    background: linear-gradient(145deg, #ffd700, #fdb931);
    border: none;
    border-radius: 40px;
    padding: 14px 10px;
    color: #0a0a0f;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    max-width: 200px;
}

.success-dialog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.success-dialog-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-panel {
        width: 280px;
        left: 10px;
    }
    
    .notification-panel {
        width: 280px;
        right: 10px;
    }
    
    .store-title {
        padding: 6px 12px;
    }
    
    .title-text {
        font-size: 14px;
    }
    
    .title-text::before,
    .title-text::after {
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .mobile-container {
        padding-top: 80px;
    }
    
    .store-title {
        padding: 4px 8px;
    }
    
    .title-text {
        font-size: 12px;
    }
    
    .title-text::before,
    .title-text::after {
        display: none;
    }
}