/* ===== RESET & BASE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', 'Space Mono', 'Courier New', monospace;
}

body,
html {
    height: 100%;
    font-family: 'JetBrains Mono', 'Space Mono', 'Courier New', monospace;
    background-color: #000000;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */

h1 {
    color: #ffffff;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    color: #ffffff;
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.4;
}

h4 {
    color: #ffffff;
    font-size: clamp(16px, 2.5vw, 18px);
    margin-bottom: 15px;
    font-weight: 500;
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

/* ===== LAYOUT COMPONENTS ===== */

.container {
    text-align: center;
    background: #0a0a0a;
    padding: clamp(25px, 5vw, 45px) clamp(20px, 4vw, 35px);
    width: min(90%, 400px);
    margin: 30px auto;
    position: relative;
    z-index: 1;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
}

.dashboard-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    position: relative;
}

/* ===== FOOTER STYLES ===== */

.site-footer {
    margin-top: auto;
    padding: 25px 0;
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    width: 100%;
}

.footer-content {
    text-align: center;
    color: #888888;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-content p {
    margin: 0;
    padding: 0;
    color: #888888;
    font-size: 14px;
}

/* ===== NAVIGATION ===== */

.top-nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #000000;
    z-index: 100;
    border-bottom: 2px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    color: #ffffff;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: 700;
}

.logo-accent {
    color: #888888;
    font-weight: 400;
}

.nav-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 3px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background-color: #1a1a1a;
}

/* ===== USER INFO STYLES ===== */

.user-info {
    color: #ffffff;
    font-size: 14px;
    padding: 6px 12px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3px;
}

/* Modern User Info Styles */

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 20px;
    position: relative;
}

.user-info-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-info-wrapper:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.user-details {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-greeting {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: none;
    letter-spacing: 0.3px;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: none;
    letter-spacing: 0.5px;
}

.user-dropdown-indicator {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.user-info-wrapper:hover .user-dropdown-indicator {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

/* Quick Menu - Appears on hover */

.user-quick-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-info-wrapper:hover .user-quick-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-menu-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.quick-menu-item:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--text-bright);
}

.quick-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.quick-menu-divider {
    height: 1px;
    background: rgba(0, 255, 255, 0.2);
    margin: 8px 0;
}

.quick-menu-link {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.quick-menu-link:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-cyan);
}

/* Auth links for non-logged in users */

.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.login-link:hover {
    background: rgba(0, 255, 255, 0.1);
}

.register-link {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: black;
    font-weight: bold;
}

.register-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    color: black;
}

.auth-separator {
    color: var(--border-dim);
    font-size: 1rem;
}

/* Animation removed - no tilting */

.user-info-wrapper {
    transition: all 0.3s ease;
}

/* Ensure no uppercase transformation on username */

.user-name,
.quick-menu-item .quick-text,
.quick-menu-link .quick-text {
    text-transform: none;
}

/* ===== DROPDOWN MENU ===== */

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */

.dropdown-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    font-family: inherit;
    border-radius: 4px;
}

.dropdown-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown content (hidden by default) */

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 5px 0;
}

/* Show dropdown on hover */

.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown items */

.dropdown-item {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

/* Hover effect on dropdown items */

.dropdown-item:hover {
    background-color: #333;
}

/* Active state */

.dropdown-item.active {
    background-color: #007bff;
    color: white;
}

/* Ensure dropdown stays visible while hovering over it */

.dropdown-content:hover {
    display: block;
}

/* Menu icons */

.menu-icon {
    font-size: 1.2em;
    min-width: 24px;
}

/* ===== DASHBOARD CONTENT ===== */

.dashboard-content {
    flex: 1;
    padding: 30px 40px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.content-area {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 25px 30px;
    border-radius: 6px;
    margin-top: 20px;
}

.content-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a2a2a;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== BALANCE SECTION ===== */

.balance-section {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.balance-card {
    background: #0a0a0a;
    padding: 15px 25px;
    border: 1px solid #3a3a3a;
    display: inline-block;
    min-width: 240px;
    border-radius: 6px;
    border-left: 4px solid #00cc66;
}

.balance-label {
    font-size: 13px;
    color: #888888;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

.balance-amount {
    font-size: 28px;
    color: #00cc66;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.balance-btc {
    font-size: 14px;
    color: #888888;
    margin-bottom: 4px;
    font-weight: 400;
}

.balance-update {
    font-size: 12px;
    color: #666666;
    padding-top: 6px;
    border-top: 1px solid #2a2a2a;
    font-weight: 400;
}

/* ===== IMPROVED TABLE STYLES ===== */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 25px 0;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 650px;
}

.data-table thead {
    background-color: #0a0a0a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.data-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #3a3a3a;
}

.data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #cccccc;
    font-weight: 400;
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* Column specific widths - flexible */

.data-table .col-id {
    width: 8%;
}

.data-table .col-name {
    width: 20%;
}

.data-table .col-type {
    width: 12%;
}

.data-table .col-price {
    width: 12%;
}

.data-table .col-status {
    width: 10%;
}

.data-table .col-date {
    width: 15%;
}

.data-table .col-action {
    width: 15%;
}

/* Status colors */

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-radius: 3px;
}

.status-available {
    color: #ffffff;
    background-color: #1a4d1a;
    border: 1px solid #2d6a2d;
}

.status-sold {
    color: #aaaaaa;
    background-color: #331919;
    border: 1px solid #662222;
}

/* ===== MODERN BUTTON STYLES ===== */

.btn {
    background: #4a6bff;
    color: #ffffff;
    padding: 8px 16px;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1;
    gap: 6px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn.small {
    padding: 6px 12px;
    font-size: 12px;
}

.btn.large {
    padding: 10px 20px;
    font-size: 14px;
}

.btn.block {
    display: flex;
    width: 100%;
}

/* Primary Button */

.primary-btn {
    background: #0066ff;
}

.primary-btn:hover {
    background: #0052cc;
}

/* Secondary Button */

.secondary-btn {
    background: #ff6b6b;
}

.secondary-btn:hover {
    background: #ff5252;
}

/* Success Button */

.success-btn {
    background: #28a745;
}

.success-btn:hover {
    background: #218838;
}

/* Danger Button */

.danger-btn {
    background: #dc3545;
}

.danger-btn:hover {
    background: #c82333;
}

/* Action Button - for table actions */

.action-btn {
    background: #4a6bff;
    color: #ffffff;
    padding: 4px 10px;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    white-space: nowrap;
    font-weight: 500;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1;
    gap: 4px;
    min-width: 60px;
}

.action-btn:hover {
    transform: translateY(-1px);
    background: #3a5be0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.action-btn.small {
    padding: 3px 8px;
    font-size: 11px;
    min-width: 50px;
}

.action-btn.secondary {
    background: #ff6b6b;
}

.action-btn.secondary:hover {
    background: #ff5252;
}

.action-btn.danger {
    background: #dc3545;
}

.action-btn.danger:hover {
    background: #c82333;
}

.action-btn.success {
    background: #28a745;
}

.action-btn.success:hover {
    background: #218838;
}

/* Checkout Button */

.checkout-btn {
    background: #ff8c42;
    padding: 10px 20px;
    font-size: 14px;
}

.checkout-btn:hover {
    background: #ff7518;
}

/* Top Up Button */

.topup-btn {
    background: #ffaa00;
    color: #000000;
}

.topup-btn:hover {
    background: #e69900;
}

/* Login/Register Buttons */

.login-btn,
.register-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.login-btn {
    background: #4a6bff;
}

.register-btn {
    background: #28a745;
}

/* Support Submit Button */

.support-submit-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

/* Download Buttons */

.btn-download,
.btn-download-all,
.btn-download-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 11px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
}

.btn-download:hover,
.btn-download-all:hover,
.btn-download-item:hover {
    background: #218838;
    transform: translateY(-1px);
}

.btn-download-item {
    padding: 3px 6px;
    font-size: 11px;
}

/* View/Cancel/Delete Buttons for Orders */

.btn-view,
.btn-cancel,
.btn-delete,
.btn-permanent-delete {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-weight: 500;
    transition: all 0.2s ease;
    line-height: 1;
}

.btn-view {
    background: #4a6bff;
    color: #ffffff;
}

.btn-view:hover {
    background: #3a5be0;
}

.btn-cancel {
    background: #ff8c42;
    color: #ffffff;
}

.btn-cancel:hover {
    background: #e67300;
}

.btn-delete {
    background: #dc3545;
    color: #ffffff;
}

.btn-delete:hover {
    background: #c82333;
}

.btn-permanent-delete {
    background: #6c757d;
    color: #ffffff;
    font-size: 10px;
}

.btn-permanent-delete:hover {
    background: #5a6268;
}

/* Search Button */

.search-btn {
    padding: 8px 16px;
    background: #4a6bff;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-btn:hover {
    transform: translateY(-1px);
    background: #3a5be0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Pay Button */

.pay-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

/* Copy Button */

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #4a6bff;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: auto;
    text-align: center;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.copy-btn:hover {
    transform: translateY(-1px);
    background: #3a5be0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Quantity Buttons */

.qty-btn {
    width: 26px;
    height: 26px;
    background: #4a6bff;
    color: #ffffff;
    cursor: pointer;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.qty-btn:hover {
    transform: translateY(-1px);
    background: #3a5be0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ===== LOADING ANIMATIONS ===== */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* General Button Loading State */

.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
    background: #4a6bff !important;
    opacity: 0.8;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Login Button Loading */

.login-btn.loading {
    background: #4a6bff !important;
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
}

.login-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Register Button Loading */

.register-btn.loading {
    background: #28a745 !important;
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
}

.register-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Support Button Loading */

.support-submit-btn.loading {
    background: #4a6bff !important;
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
}

.support-submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Action Button Loading */

.action-btn.loading {
    background: #4a6bff !important;
    position: relative;
    color: transparent !important;
    pointer-events: none;
    cursor: wait;
}

.action-btn.loading::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    margin-left: -6px;
    margin-top: -6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    animation: spin 0.8s ease-in-out infinite;
}

/* Page Loader */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    flex-direction: column;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: #4a6bff;
    border-bottom-color: #4a6bff;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 15px;
}

.loader-text {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Skeleton Loading Animation */

.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
    border-radius: 4px;
    min-height: 16px;
}

/* Inline Loading Spinner */

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    margin-right: 4px;
    vertical-align: middle;
}

.spinner-small {
    width: 12px;
    height: 12px;
    border-width: 2px;
}

.spinner-medium {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.spinner-large {
    width: 20px;
    height: 20px;
    border-width: 3px;
}

/* ===== CART BADGE STYLES ===== */

.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: badge-pop 0.3s ease;
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
    }

    80% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== ENHANCED CART STYLES ===== */

/* Cart Summary Bar - Enhanced */

.cart-summary {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    padding: 15px 25px;
    background: #0a0a0a;
    margin-bottom: 25px;
    border: 1px solid #2a2a2a;
    flex-wrap: wrap;
    position: relative;
    border-left: 4px solid #00cc66;
    border-radius: 6px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.summary-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    height: 24px;
    width: 2px;
    background: #333333;
}

.summary-label {
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    color: #00cc66;
    font-weight: 600;
    font-size: 16px;
}

.summary-value.total-amount {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.summary-value.btc-amount {
    color: #ffaa00;
    font-size: 14px;
}

/* Cart Table Container */

.cart-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border: 1px solid #2a2a2a;
    background: #0a0a0a;
    border-radius: 6px;
}

/* Cart Header */

.cart-header {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 0.8fr 0.8fr 0.8fr 0.6fr;
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid #3a3a3a;
    min-width: 750px;
}

.header-item {
    text-align: left;
}

/* Cart Item */

.cart-item {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 0.8fr 0.8fr 0.8fr 0.6fr;
    padding: 15px 20px;
    border-bottom: 1px solid #2a2a2a;
    align-items: center;
    transition: background-color 0.2s ease;
    min-width: 750px;
}

.cart-item:hover {
    background-color: #1a1a1a;
}

.cart-item:last-child {
    border-bottom: none;
}

/* Item Product */

.item-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-icon {
    font-size: 24px;
    color: #888888;
    min-width: 30px;
    text-align: center;
}

.item-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Item Details */

.item-details {
    color: #aaaaaa;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

/* Item Price */

.item-price {
    color: #aaaaaa;
    font-size: 15px;
    font-weight: 400;
}

/* Quantity Controls */

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-value {
    color: #ffffff;
    min-width: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* Item Total */

.item-total {
    color: #00cc66;
    font-size: 16px;
    font-weight: 600;
}

/* Item Action */

.item-action .action-btn {
    background: #dc3545;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 11px;
    border: none;
    transition: all 0.2s ease;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(220, 53, 69, 0.2);
    min-width: 50px;
}

.item-action .action-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(220, 53, 69, 0.3);
}

/* Cart Actions */

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 15px;
}

.action-left {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Order Summary (Mobile/Compact) */

.order-summary {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 20px;
    margin-top: 25px;
    display: none;
    border-radius: 6px;
}

.summary-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #aaaaaa;
    border-bottom: 1px dashed #2a2a2a;
    font-weight: 400;
}

.summary-row.total-row {
    margin-top: 5px;
    padding-top: 12px;
    font-weight: 600;
    color: #00cc66;
    border-top: 2px solid #2a2a2a;
    border-bottom: none;
}

.summary-row.btc-row {
    color: #ffaa00;
    font-size: 13px;
    border-bottom: none;
}

/* Empty Cart Styles */

.empty-cart {
    text-align: center;
    padding: 60px 30px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    margin-top: 25px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.empty-cart-icon {
    font-size: 70px;
    color: #888888;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-cart-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.empty-cart-message {
    color: #888888;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 400px;
}

.empty-cart-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.empty-cart-actions .btn {
    min-width: 160px;
    padding: 8px 16px;
    font-size: 13px;
}

.empty-cart-topup {
    margin-top: 25px;
    padding: 15px 25px;
    background: #0a0a0a;
    border: 1px solid #3a3a3a;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
}

.topup-text {
    color: #888888;
    font-size: 14px;
    font-weight: 400;
}

.topup-link {
    background: #ffaa00;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(255, 170, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.topup-link:hover {
    transform: translateY(-1px);
    background: #e69900;
    box-shadow: 0 2px 5px rgba(255, 170, 0, 0.4);
}

/* Flash Messages */

.flash-message {
    background: #0a0a0a;
    color: #cccccc;
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #2a2a2a;
    font-weight: 400;
    border-left: 4px solid #4a6bff;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.flash-message.error {
    border-color: #dc3545;
    color: #ff6b6b;
    border-left-color: #dc3545;
}

.flash-message.success {
    border-color: #28a745;
    color: #6bff6b;
    border-left-color: #28a745;
}

/* ===== SEARCH BAR ===== */

.search-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 10px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
    font-weight: 400;
    border-radius: 4px;
}

.search-input:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

/* ===== CHECKOUT LAYOUT ===== */

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.checkout-card {
    background: #0a0a0a;
    padding: 25px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.card-header {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a2a2a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== PAYMENT OPTIONS ===== */

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.payment-option:hover {
    background-color: #1a1a1a;
    border-color: #4a6bff;
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    accent-color: #4a6bff;
    width: 16px;
    height: 16px;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: wrap;
}

.option-icon {
    font-size: 20px;
    color: #888888;
}

.option-text {
    color: #cccccc;
    font-size: 15px;
    font-weight: 400;
}

.option-balance {
    color: #00cc66;
    font-size: 14px;
    margin-left: auto;
    font-weight: 400;
}

/* ===== BITCOIN CHECKOUT STYLES ===== */

.bitcoin-payment {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 25px;
    border-radius: 8px;
}

.payment-info {
    margin: 20px 0;
}

.btc-amount-box {
    background: #0a0a0a;
    border: 1px solid #3a3a3a;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #ffaa00;
}

.btc-label {
    display: block;
    color: #888888;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.btc-amount {
    display: block;
    color: #ffaa00;
    font-size: 28px;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 1px;
}

.btc-address-box {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #0a0a0a;
    padding: 12px;
    border: 1px solid #3a3a3a;
    margin-top: 10px;
    border-radius: 4px;
}

.btc-address {
    flex: 1;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.5px;
    word-break: break-all;
    font-weight: 400;
}

.address-note {
    color: #888888;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ===== QR CODE STYLES ===== */

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.qr-box {
    background: #ffffff;
    padding: 15px;
    text-align: center;
    display: inline-block;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.qr-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1/1;
    display: block;
    margin: 0 auto 10px auto;
    object-fit: contain;
}

.qr-text {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 5px;
    text-transform: uppercase;
}

/* ===== PAYMENT INSTRUCTIONS ===== */

.payment-instructions {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.instructions-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.instructions-list {
    padding-left: 20px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.instructions-list li {
    margin-bottom: 8px;
}

.instructions-list strong {
    color: #00cc66;
    font-weight: 600;
}

.warning-box {
    background: #1a0a0a;
    border: 1px solid #dc3545;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
    border-radius: 6px;
}

.warning-icon {
    font-size: 22px;
    color: #dc3545;
}

.warning-text {
    color: #ff6b6b;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    font-weight: 400;
}

.transaction-note {
    margin-top: 20px;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    text-align: center;
    border-radius: 6px;
}

.transaction-note p {
    color: #888888;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.secure-checkout {
    text-align: center;
    margin-top: 15px;
    color: #28a745;
    font-weight: 500;
    font-size: 14px;
}

.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.checkout-actions .btn {
    flex: 1;
    min-width: 180px;
}

/* ===== ACTIVITY FEED ===== */

.activity-feed {
    background: #0a0a0a;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.feed-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #2a2a2a;
    gap: 15px;
    flex-wrap: wrap;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-time {
    color: #888888;
    font-size: 13px;
    min-width: 70px;
    font-weight: 400;
}

.feed-content {
    color: #cccccc;
    font-size: 14px;
    flex: 1;
    font-weight: 400;
}

/* ===== EMPTY STATES ===== */

.empty-state {
    text-align: center;
    padding: 40px 25px;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
}

.empty-icon {
    font-size: 45px;
    margin-bottom: 15px;
    opacity: 0.4;
}

.empty-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.empty-message {
    color: #888888;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* ===== MODAL ===== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: #0a0a0a;
    width: min(90%, 450px);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.modal-title {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-close {
    background: none;
    color: #888888;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.modal-close:hover {
    color: #dc3545;
}

.modal-body {
    padding: 20px;
    font-size: 15px;
    color: #cccccc;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 15px 20px;
    border-top: 1px solid #2a2a2a;
}

/* ===== STATUS BARS ===== */

.status-bar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px 25px;
    background: #0a0a0a;
    font-size: 13px;
    color: #888888;
    z-index: 90;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 400;
}

.dashboard-status {
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 12px 25px;
    background: #0a0a0a;
    font-size: 13px;
    color: #888888;
    border-top: 1px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 400;
}

/* ===== UTILITIES ===== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 25px;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 25px;
}

.p-1 {
    padding: 5px;
}

.p-2 {
    padding: 10px;
}

.p-3 {
    padding: 15px;
}

.p-4 {
    padding: 20px;
}

.p-5 {
    padding: 25px;
}

/* ===== ORDER CONFIRMATION PAGE STYLES ===== */

.confirmation-content {
    max-width: 600px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-container {
    text-align: center;
    padding: 50px 40px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    width: 100%;
    border-radius: 10px;
}

.confirmation-icon {
    font-size: 70px;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-title {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.confirmation-message {
    color: #cccccc;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.confirmation-message p {
    margin: 8px 0;
    font-size: 15px;
}

.order-details {
    background: #0a0a0a;
    border: 1px solid #3a3a3a;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
    border-radius: 6px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #2a2a2a;
    color: #cccccc;
    font-size: 15px;
    font-weight: 400;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.detail-row span:last-child {
    color: #00cc66;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 16px;
}

.order-number,
.transaction-id {
    color: #4a6bff;
    font-weight: 600;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 0.5px;
    word-break: break-all;
    text-align: right;
    max-width: 65%;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.confirmation-actions .btn {
    flex: 1;
    min-width: 180px;
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== BANK LOGS TABLE ===== */

.logs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 750px;
}

.logs-table thead {
    background-color: #0a0a0a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.logs-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #3a3a3a;
}

.logs-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #cccccc;
    font-weight: 400;
}

.logs-table tbody tr {
    transition: background-color 0.2s ease;
}

.logs-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* Column specific widths */

.logs-table .col-id {
    width: 12%;
}

.logs-table .col-bank {
    width: 15%;
}

.logs-table .col-balance {
    width: 15%;
}

.logs-table .col-country {
    width: 12%;
}

.logs-table .col-status {
    width: 12%;
}

.logs-table .col-price {
    width: 12%;
}

.logs-table .col-action {
    width: 18%;
}

/* Sold text */

.logs-table .sold-text {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    display: inline-block;
    font-weight: 400;
}

/* ===== CASHAPP LOGS TABLE ===== */

.cashapp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 750px;
}

.cashapp-table thead {
    background-color: #0a0a0a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cashapp-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #3a3a3a;
}

.cashapp-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #cccccc;
    font-weight: 400;
}

.cashapp-table tbody tr {
    transition: background-color 0.2s ease;
}

.cashapp-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* Column specific widths for CashApp */

.cashapp-table .col-id {
    width: 10%;
}

.cashapp-table .col-username {
    width: 20%;
}

.cashapp-table .col-balance {
    width: 15%;
}

.cashapp-table .col-card {
    width: 12%;
}

.cashapp-table .col-status {
    width: 12%;
}

.cashapp-table .col-price {
    width: 12%;
}

.cashapp-table .col-action {
    width: 18%;
}

/* Username styling */

.cashapp-table .col-username {
    color: #ffffff;
    font-weight: 500;
}

/* Sold text for cashapp */

.cashapp-table .sold-text {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    display: inline-block;
    font-weight: 400;
}

/* ===== CVV TABLE ===== */

.cvv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 750px;
}

.cvv-table thead {
    background-color: #0a0a0a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cvv-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #3a3a3a;
}

.cvv-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #cccccc;
    font-weight: 400;
    vertical-align: middle;
}

.cvv-table tbody tr {
    transition: background-color 0.2s ease;
}

.cvv-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* Column specific widths for CVV */

.cvv-table .col-id {
    width: 10%;
}

.cvv-table .col-card {
    width: 18%;
}

.cvv-table .col-bin {
    width: 12%;
}

.cvv-table .col-country {
    width: 12%;
}

.cvv-table .col-level {
    width: 15%;
}

.cvv-table .col-price {
    width: 12%;
}

.cvv-table .col-action {
    width: 18%;
}

/* Card type styling for CVV */

.cvv-table .col-card {
    font-weight: 500;
}

/* Bin styling */

.cvv-table .col-bin {
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 0.5px;
    color: #00cc66;
    font-weight: 400;
}

/* Country badges */

.country-badge {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.country-us {
    background: #2196F3;
    color: white;
}

.country-uk {
    background: #9C27B0;
    color: white;
}

.country-ca {
    background: #F44336;
    color: white;
}

.country-au {
    background: #FF9800;
    color: white;
}

.country-de {
    background: #607D8B;
    color: white;
}

.country-fr {
    background: #3F51B5;
    color: white;
}

.country-it {
    background: #E91E63;
    color: white;
}

.country-jp {
    background: #00BCD4;
    color: white;
}

.country-es {
    background: #CDDC39;
    color: #333;
}

.country-cn {
    background: #FF5722;
    color: white;
}

.country-ie {
    background: #795548;
    color: white;
}

.country-nl {
    background: #9E9E9E;
    color: white;
}

/* Level badges */

.level-badge {
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.level-classic {
    background: #4CAF50;
    color: white;
}

.level-premium {
    background: #FF9800;
    color: white;
}

.level-business {
    background: #9C27B0;
    color: white;
}

.level-corporate {
    background: #F44336;
    color: white;
}

/* ===== PAYPAL LOGS TABLE ===== */

.paypal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 750px;
}

.paypal-table thead {
    background-color: #0a0a0a;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.paypal-table th {
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid #3a3a3a;
}

.paypal-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #2a2a2a;
    color: #cccccc;
    font-weight: 400;
}

.paypal-table tbody tr {
    transition: background-color 0.2s ease;
}

.paypal-table tbody tr:hover {
    background-color: #1a1a1a;
}

/* Column specific widths for PayPal */

.paypal-table .col-id {
    width: 8%;
}

.paypal-table .col-email {
    width: 25%;
}

.paypal-table .col-balance {
    width: 15%;
}

.paypal-table .col-verified {
    width: 12%;
}

.paypal-table .col-status {
    width: 12%;
}

.paypal-table .col-price {
    width: 12%;
}

.paypal-table .col-action {
    width: 16%;
}

/* Email styling */

.paypal-table .col-email {
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Verified badges */

.paypal-table .verified-badge {
    display: inline-block;
    padding: 3px 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-radius: 3px;
}

.paypal-table .verified-yes {
    color: #ffffff;
    background-color: #1a4d1a;
    border: 1px solid #2d6a2d;
}

.paypal-table .verified-no {
    color: #aaaaaa;
    background-color: #331919;
    border: 1px solid #662222;
}

/* Sold text for PayPal */

.paypal-table .sold-text {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    display: inline-block;
    font-weight: 400;
}

/* ===== LOGIN PAGE STYLES ===== */

.login-container {
    max-width: 380px;
    margin: 60px auto;
    padding: 35px 30px;
    border: 1px solid #2a2a2a;
    position: relative;
    background: #0a0a0a;
    border-radius: 8px;
}

.login-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.login-status {
    margin-bottom: 25px;
    padding: 10px 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    border-radius: 4px;
}

.login-form {
    margin-bottom: 20px;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    font-weight: 500;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 400;
    border-radius: 4px;
}

.login-input:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

.login-input::placeholder {
    color: #444444;
    opacity: 1;
}

.forgot-password {
    margin-top: 20px;
    text-align: center;
}

.login-link {
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.login-link:hover {
    color: #4a6bff;
}

.login-link.highlight {
    color: #ffffff;
    font-weight: 600;
}

.login-divider {
    border: none;
    height: 1px;
    background: #2a2a2a;
    margin: 25px 0;
}

.login-redirect {
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 400;
}

.login-redirect a {
    margin-left: 5px;
}

/* ===== REGISTER PAGE STYLES ===== */

.register-container {
    max-width: 420px;
    margin: 50px auto;
    padding: 35px 30px;
    border: 1px solid #2a2a2a;
    position: relative;
    background: #0a0a0a;
    border-radius: 8px;
}

.register-title {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.register-status {
    margin-bottom: 25px;
    padding: 10px 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    border-radius: 4px;
}

.register-form {
    margin-bottom: 20px;
}

.register-form-group {
    margin-bottom: 20px;
}

.register-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    font-weight: 500;
}

.register-input {
    width: 100%;
    padding: 12px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 400;
    border-radius: 4px;
}

.register-input:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

.register-input::placeholder {
    color: #444444;
    opacity: 1;
}

.register-link {
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.register-link:hover {
    color: #28a745;
}

.register-link.highlight {
    color: #ffffff;
    font-weight: 600;
}

.register-divider {
    border: none;
    height: 1px;
    background: #2a2a2a;
    margin: 25px 0;
}

.register-redirect {
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 400;
}

.register-redirect a {
    margin-left: 5px;
}

/* ===== SUPPORT PAGE STYLES ===== */

.support-content {
    max-width: 900px;
    margin: 0 auto;
}

.support-title {
    margin-bottom: 30px;
}

.support-form-container {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.support-form {
    width: 100%;
}

.support-form-group {
    margin-bottom: 20px;
}

.support-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.support-input {
    width: 100%;
    padding: 12px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 400;
    border-radius: 4px;
}

.support-input:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

.support-input::placeholder {
    color: #444444;
    opacity: 1;
}

.support-select {
    width: 100%;
    padding: 12px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaaaaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.support-select:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

.support-select option {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 13px;
    padding: 8px;
}

.support-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 14px;
    border: 1px solid #2a2a2a;
    outline: none;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 120px;
    font-weight: 400;
    border-radius: 4px;
}

.support-textarea:focus {
    border-color: #4a6bff;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(74, 107, 255, 0.2);
}

.support-textarea::placeholder {
    color: #444444;
    opacity: 1;
}

/* Contact Info Styles */

.contact-info-container {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.contact-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 12px;
    font-weight: 600;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.contact-info-item:hover {
    background-color: #1a1a1a;
    border-color: #4a6bff;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #4a6bff;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #888888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.contact-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

/* Telegram Support Link */

.telegram-support-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.telegram-support-link:hover {
    background-color: #0077b3;
}

.telegram-support-link img {
    filter: brightness(0) invert(1);
    width: 16px;
    height: 16px;
}

/* FAQ Section Styles */

.faq-section {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 25px;
    border-radius: 8px;
}

.faq-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 12px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 20px;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.faq-item:hover {
    background-color: #1a1a1a;
    border-color: #4a6bff;
}

.faq-question {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.faq-answer {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== TOP UP PAGE STYLES ===== */

.topup-content {
    max-width: 550px;
    margin: 0 auto;
}

.topup-container {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 30px;
    border-radius: 8px;
}

.topup-form {
    width: 100%;
}

.section-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2a2a2a;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 600;
}

/* Amount Input Section */

.amount-section {
    margin-bottom: 30px;
}

.amount-input-container {
    position: relative;
    width: 100%;
}

.topup-amount-input {
    width: 100%;
    padding: 16px 20px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 20px;
    text-align: center;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 500;
    border-radius: 6px;
}

.topup-amount-input:focus {
    border-color: #ffaa00;
    background-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
}

.topup-amount-input::placeholder {
    color: #444444;
    opacity: 1;
}

.currency-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
}

/* BTC Equivalent Display */

.btc-equivalent-section {
    margin-bottom: 30px;
}

.btc-equivalent-display {
    background: #0a0a0a;
    border: 1px solid #3a3a3a;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    border-left: 4px solid #ffaa00;
}

.btc-label {
    color: #888888;
    font-size: 16px;
    margin: 0 5px;
    text-transform: uppercase;
    font-weight: 400;
}

.btc-value {
    color: #ffaa00;
    font-size: 24px;
    font-weight: 700;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 1px;
}

/* Bitcoin Only Payment Section */

.payment-section {
    margin-bottom: 30px;
}

.bitcoin-only {
    background: #0a0a0a;
    border: 1px solid #3a3a3a;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

.bitcoin-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bitcoin-icon {
    font-size: 50px;
    color: #ffaa00;
    opacity: 0.9;
}

.bitcoin-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.bitcoin-note {
    color: #888888;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Action Section */

.action-section {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* Top Up Note */

.topup-note {
    margin-top: 25px;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    text-align: center;
    border-radius: 6px;
}

.topup-note p {
    color: #888888;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== ORDERS PAGE STYLES ===== */

.orders-container {
    max-width: 1200px;
    margin: 0 auto;
}

.orders-header {
    text-align: center;
    margin-bottom: 30px;
}

.orders-header h1 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.orders-header p {
    color: #888888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.order-card:hover {
    border-color: #4a6bff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #0a0a0a;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 10px;
}

.order-id,
.order-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
}

.order-id .label,
.order-date .label {
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.order-id .value,
.order-date .value {
    color: #4a6bff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    letter-spacing: 0.5px;
}

.order-status .status-badge {
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 3px;
}

.order-status .status-completed {
    color: #ffffff;
    background-color: #1a4d1a;
    border-color: #2d6a2d;
}

.order-status .status-pending {
    color: #ffffff;
    background-color: #4d4d1a;
    border-color: #6a6a2d;
}

.order-status .status-cancelled {
    color: #ffffff;
    background-color: #4d1a1a;
    border-color: #6a2d2d;
}

.order-status .status-processing {
    color: #ffffff;
    background-color: #1a4d4d;
    border-color: #2d6a6a;
}

.order-status .status-deleted {
    background-color: #333333;
    border-color: #555555;
    opacity: 0.7;
}

.order-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
}

.order-items h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #2a2a2a;
    gap: 12px;
}

.order-item:last-child {
    border-bottom: none;
}

.item-icon {
    font-size: 20px;
    min-width: 28px;
    text-align: center;
    color: #888888;
}

.item-name {
    flex: 1;
    color: #cccccc;
    font-size: 14px;
    font-weight: 400;
}

.item-quantity {
    color: #888888;
    font-size: 14px;
    min-width: 35px;
    text-align: center;
    font-weight: 400;
}

.item-price {
    color: #00cc66;
    font-size: 15px;
    font-weight: 600;
    min-width: 70px;
    text-align: right;
}

.order-summary {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: 15px;
    border-radius: 6px;
}

.order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #cccccc;
    border-bottom: 1px dashed #2a2a2a;
    font-weight: 400;
}

.order-summary .summary-row:last-child {
    border-bottom: none;
}

.order-summary .summary-row.txid {
    flex-direction: column;
    gap: 6px;
}

.order-summary .summary-row.txid span:first-child {
    color: #888888;
}

.order-summary .summary-row.txid .txid {
    color: #4a6bff;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 13px;
    word-break: break-all;
    background: #0a0a0a;
    padding: 8px;
    border: 1px solid #2a2a2a;
    font-weight: 400;
    border-radius: 4px;
}

.order-footer {
    padding: 15px 20px;
    border-top: 1px solid #2a2a2a;
}

.footer-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.inline-form {
    display: inline-block;
}

.download-all {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
}

.btn-download-all {
    display: block;
    text-align: center;
    margin: 0;
    padding: 6px 12px;
}

/* Cancelled/Deleted Order Styling */

.cancelled-order,
.deleted-order {
    opacity: 0.8;
}

.cancelled-order .order-header,
.deleted-order .order-header {
    background-color: #1a1a1a;
}

.no-orders {
    text-align: center;
    padding: 60px 25px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
}

.no-orders-icon {
    font-size: 60px;
    color: #888888;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-orders h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.no-orders p {
    color: #888888;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 400;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4a6bff;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-shop:hover {
    transform: translateY(-1px);
    background: #3a5be0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===== SETUP PAYMENT PAGE STYLES - ENHANCED ===== */

.setup-payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.setup-payment-header {
    text-align: center;
    margin-bottom: 35px;
}

.setup-payment-header h1 {
    color: #ffffff;
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.setup-payment-header p {
    color: #888888;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 400;
}

.setup-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

/* Features Card */

.features-card {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
}

.features-card h2 {
    color: #ffffff;
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 12px;
    font-weight: 600;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: #4a6bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 255, 0.1);
}

.feature-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.feature-details {
    flex: 1;
}

.feature-details h3 {
    color: #4a6bff;
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-details p {
    color: #cccccc;
    font-size: clamp(12px, 2.5vw, 13px);
    margin-bottom: 8px;
    line-height: 1.5;
}

.feature-details ul {
    color: #888888;
    font-size: clamp(11px, 2vw, 12px);
    padding-left: 18px;
    margin: 5px 0;
}

.feature-details li {
    margin-bottom: 4px;
}

.price-tag {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #4a6bff 0%, #764ba2 100%);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    color: #ffffff;
    font-size: clamp(12px, 2.5vw, 14px);
    display: block;
    margin-bottom: 6px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    color: #ffffff;
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Payment Card */

.payment-card {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
}

.payment-card h2 {
    color: #ffffff;
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 12px;
    font-weight: 600;
}

.balance-info,
.btc-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 15px;
}

.balance-label,
.btc-label {
    color: #888888;
    font-size: clamp(13px, 2.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-amount {
    color: #00cc66;
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 600;
}

.btc-amount {
    color: #ffaa00;
    font-size: clamp(14px, 2.5vw, 16px);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Payment Form */

.payment-form {
    margin-top: 20px;
    width: 100%;
}

.payment-form .pay-btn {
    width: 100%;
    padding: 14px;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Insufficient Balance */

.insufficient-balance {
    background: #331919;
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.warning-text {
    color: #dc3545;
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 600;
    margin-bottom: 6px;
}

.insufficient-balance p {
    color: #ffaaaa;
    font-size: clamp(13px, 2.5vw, 14px);
    margin: 5px 0;
}

.insufficient-balance strong {
    color: #ff6b6b;
    font-size: clamp(16px, 3vw, 18px);
}

/* Bitcoin Option */

.payment-options {
    margin-top: 20px;
}

.payment-options h3 {
    color: #ffffff;
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.bitcoin-option {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.bitcoin-option h4 {
    color: #ffaa00;
    font-size: clamp(15px, 3vw, 17px);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.bitcoin-address {
    text-align: center;
}

.bitcoin-address p {
    color: #cccccc;
    font-size: clamp(12px, 2.5vw, 13px);
    margin-bottom: 10px;
}

.bitcoin-address .note {
    color: #888888;
    font-size: clamp(11px, 2vw, 12px);
    margin-top: 10px;
}

.address-box {
    background: #0a0a0a;
    border: 1px solid #ffaa00;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    word-break: break-all;
}

.address-box code {
    color: #ffaa00;
    font-size: clamp(12px, 2.5vw, 14px);
    font-family: 'JetBrains Mono', monospace;
    word-break: break-all;
}

/* Top Up Button Link */

.pay-btn.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: #0066ff;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.pay-btn.primary-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Divider */

.divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 40px);
    height: 1px;
    background: #2a2a2a;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: #0a0a0a;
    padding: 0 15px;
    color: #888888;
    font-size: clamp(12px, 2.5vw, 13px);
    text-transform: uppercase;
}

/* Pending Download */

.pending-download {
    margin-top: 20px;
    padding: 15px;
    background: #1a4d4d;
    border: 1px solid #2d6a6a;
    border-radius: 8px;
    text-align: center;
}

.pending-download p {
    color: #ffffff;
    font-size: clamp(12px, 2.5vw, 13px);
    font-weight: 500;
}

/* Guarantee */

.guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid #28a745;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.guarantee:hover {
    border-color: #34ce57;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.guarantee-icon {
    font-size: clamp(30px, 5vw, 36px);
    color: #28a745;
    min-width: 50px;
    text-align: center;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text strong {
    color: #ffffff;
    font-size: clamp(14px, 2.5vw, 16px);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.guarantee-text p {
    color: #888888;
    font-size: clamp(12px, 2vw, 13px);
    margin: 0;
    line-height: 1.5;
}

/* Stats Summary */

.stats-summary div {
    padding: 5px 12px;
    border-right: 1px solid #333;
}

.stats-summary div:last-child {
    border-right: none;
}

/* Back to dashboard link */

.back-to-dashboard {
    text-align: center;
    margin-top: 25px;
    padding: 15px;
}

/* FAQ Section (already exists, enhancing for consistency) */

.faq-section {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 10px;
    margin-top: 40px;
}

.faq-section h2 {
    color: #ffffff;
    font-size: clamp(22px, 4vw, 26px);
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2a2a2a;
    padding-bottom: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #4a6bff;
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #4a6bff;
    font-size: clamp(15px, 2.5vw, 17px);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #cccccc;
    font-size: clamp(13px, 2vw, 14px);
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet */

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .dashboard-content {
        padding: 20px;
    }

    .content-area {
        padding: 20px;
    }

    .top-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px;
    }

    .nav-left,
    .nav-right {
        justify-content: flex-start;
        gap: 15px;
        width: 100%;
    }

    .nav-right {
        margin-left: 0;
        padding-right: 0;
    }

    .balance-section {
        justify-content: flex-start;
    }

    .balance-card {
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }

    .balance-amount {
        font-size: 24px;
    }

    .cart-summary {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        padding: 12px;
    }

    .summary-item:not(:last-child)::after {
        display: none;
    }

    .cart-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .action-left,
    .action-right {
        justify-content: flex-start;
        width: 100%;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .data-table,
    .logs-table,
    .cashapp-table,
    .cvv-table,
    .paypal-table {
        font-size: 13px;
    }

    .data-table th,
    .data-table td,
    .logs-table th,
    .logs-table td,
    .cashapp-table th,
    .cashapp-table td,
    .cvv-table th,
    .cvv-table td,
    .paypal-table th,
    .paypal-table td {
        padding: 12px 8px;
    }

    .login-container,
    .register-container {
        margin: 40px auto;
        width: 90%;
        padding: 25px 20px;
    }

    .support-form-container,
    .contact-info-container,
    .faq-section,
    .bitcoin-payment {
        padding: 20px;
    }

    .contact-info-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .btc-amount {
        font-size: 24px;
    }

    .btc-address {
        font-size: 13px;
    }

    .qr-box {
        width: 100%;
        max-width: 260px;
        margin: 0;
    }

    .qr-image {
        max-width: 200px;
    }

    .setup-payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .order-body {
        grid-template-columns: 1fr;
    }

    .features-card,
    .payment-card {
        padding: 20px;
    }

    .feature-item {
        padding: 12px;
    }

    /* Dropdown mobile adjustments */

    .dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background-color: #2a2a2a;
        width: 100%;
    }

    .dropdown-content {
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .user-info-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    
    .user-quick-menu {
        width: 100%;
        right: auto;
        left: 0;
    }
    
    .auth-links {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .dashboard-content {
        padding: 15px;
    }

    .content-area {
        padding: 15px;
        border-radius: 4px;
    }

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

    .container {
        width: 95%;
        padding: 25px 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn.large {
        padding: 10px 16px;
        font-size: 14px;
    }

    .balance-section {
        justify-content: flex-start;
        width: 100%;
    }

    .balance-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        padding: 12px 15px;
    }

    .balance-amount {
        font-size: 22px;
    }

    .balance-btc {
        font-size: 12px;
    }

    .balance-update {
        font-size: 11px;
    }

    .search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .search-input,
    .search-btn {
        width: 100%;
    }

    .cart-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 12px;
    }

    .summary-item {
        width: 100%;
        justify-content: space-between;
    }

    .summary-label {
        font-size: 13px;
    }

    .summary-value {
        font-size: 15px;
    }

    .summary-value.total-amount {
        font-size: 17px;
    }

    .cart-table-container {
        border-radius: 4px;
        margin-bottom: 20px;
    }

    .cart-header,
    .cart-item {
        min-width: 600px;
        padding: 12px 15px;
    }

    .item-icon {
        font-size: 22px;
    }

    .item-name {
        font-size: 14px;
    }

    .item-details {
        font-size: 12px;
    }

    .item-price,
    .item-total {
        font-size: 14px;
    }

    .qty-btn {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .cart-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: flex-start;
    }

    .action-left,
    .action-right {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .action-left .btn,
    .action-right .btn {
        width: 100%;
    }

    .empty-cart {
        padding: 40px 20px;
        min-height: auto;
    }

    .empty-cart-icon {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .empty-cart-title {
        font-size: 22px;
    }

    .empty-cart-message {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .empty-cart-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .empty-cart-actions .btn {
        width: 100%;
        min-width: unset;
    }

    .empty-cart-topup {
        flex-direction: column;
        width: 100%;
        text-align: left;
        padding: 12px;
        gap: 10px;
        align-items: flex-start;
    }

    .topup-text {
        font-size: 13px;
    }

    .topup-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .order-summary {
        display: block;
        padding: 15px;
        margin-top: 20px;
    }

    .summary-row {
        font-size: 13px;
        padding: 8px 0;
    }

    .feed-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .feed-time {
        min-width: auto;
        font-size: 12px;
    }

    .feed-content {
        font-size: 13px;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .logs-table,
    .cashapp-table,
    .cvv-table,
    .paypal-table {
        min-width: 600px;
        font-size: 12px;
    }

    .logs-table th,
    .logs-table td,
    .cashapp-table th,
    .cashapp-table td,
    .cvv-table th,
    .cvv-table td,
    .paypal-table th,
    .paypal-table td {
        padding: 10px 6px;
    }

    .login-container,
    .register-container {
        margin: 30px auto;
        padding: 25px 15px;
        width: 95%;
    }

    .login-title,
    .register-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .login-status,
    .register-status {
        font-size: 12px;
        padding: 8px 10px;
        margin-bottom: 20px;
    }

    .login-label,
    .register-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .login-input,
    .register-input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .login-btn,
    .register-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .login-link,
    .register-link {
        font-size: 12px;
    }

    .footer-content {
        font-size: 12px;
        padding: 0 15px;
    }

    .support-form-container,
    .contact-info-container,
    .faq-section,
    .bitcoin-payment {
        padding: 15px;
    }

    .support-label {
        font-size: 13px;
    }

    .support-input,
    .support-select,
    .support-textarea {
        padding: 10px 14px;
        font-size: 13px;
    }

    .support-submit-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-info-item {
        padding: 12px;
    }

    .contact-icon {
        font-size: 22px;
        margin-right: 12px;
    }

    .contact-value {
        font-size: 15px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .bitcoin-payment {
        padding: 15px;
    }

    .btc-amount-box {
        padding: 15px;
    }

    .btc-amount {
        font-size: 22px;
    }

    .btc-address-box {
        padding: 12px;
    }

    .address-container {
        flex-direction: column;
        gap: 8px;
    }

    .btc-address {
        font-size: 13px;
        text-align: center;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .qr-box {
        width: 100%;
        max-width: 220px;
        padding: 12px;
        margin: 0;
    }

    .qr-image {
        max-width: 180px;
    }

    .qr-text {
        font-size: 13px;
    }

    .instructions-list {
        font-size: 13px;
        padding-left: 18px;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .warning-icon {
        font-size: 20px;
    }

    .warning-text {
        font-size: 13px;
    }

    .transaction-note p {
        font-size: 12px;
    }

    .checkout-actions {
        flex-direction: column;
        gap: 10px;
    }

    .checkout-actions .btn {
        width: 100%;
        min-width: unset;
    }

    .topup-container {
        padding: 20px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .topup-amount-input {
        font-size: 18px;
        padding: 14px 16px;
    }

    .currency-label {
        font-size: 15px;
        right: 16px;
    }

    .btc-equivalent-display {
        padding: 15px;
    }

    .btc-label {
        font-size: 14px;
    }

    .btc-value {
        font-size: 20px;
    }

    .bitcoin-icon {
        font-size: 45px;
    }

    .bitcoin-text {
        font-size: 16px;
    }

    .action-section {
        flex-direction: column;
        gap: 10px;
    }

    .secondary-btn,
    .topup-btn {
        width: 100%;
    }

    .topup-note {
        padding: 12px;
    }

    .topup-note p {
        font-size: 12px;
    }

    .confirmation-container {
        padding: 35px 20px;
    }

    .confirmation-icon {
        font-size: 60px;
    }

    .confirmation-title {
        font-size: 24px;
    }

    .confirmation-message {
        font-size: 15px;
    }

    .order-details {
        padding: 15px;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
        font-size: 14px;
    }

    .detail-row span:last-child {
        max-width: 100%;
        text-align: left;
    }

    .order-number,
    .transaction-id {
        font-size: 14px;
    }

    .confirmation-actions {
        flex-direction: column;
        gap: 10px;
    }

    .confirmation-actions .btn {
        width: 100%;
    }

    .orders-header h1 {
        font-size: 24px;
    }

    .orders-header p {
        font-size: 13px;
    }

    .order-header {
        padding: 12px 15px;
    }

    .order-id,
    .order-date {
        font-size: 13px;
    }

    .order-body {
        padding: 15px;
    }

    .order-summary {
        padding: 12px;
    }

    .order-footer {
        padding: 12px 15px;
    }

    .footer-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .footer-actions form,
    .footer-actions a {
        width: 100%;
    }

    .btn-view,
    .btn-cancel,
    .btn-delete,
    .btn-permanent-delete {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .no-orders {
        padding: 40px 20px;
    }

    .no-orders-icon {
        font-size: 50px;
    }

    .no-orders h2 {
        font-size: 24px;
    }

    .no-orders p {
        font-size: 14px;
    }

    .btn-shop {
        width: 100%;
        justify-content: center;
    }

    /* Setup Payment Mobile Styles */

    .setup-payment-container {
        padding: 15px;
    }

    .features-card,
    .payment-card {
        padding: 20px 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: left;
        gap: 10px;
        padding: 15px;
    }

    .feature-icon {
        font-size: 36px;
        min-width: auto;
    }

    .feature-details ul {
        text-align: left;
    }

    .price-tag {
        padding: 15px;
    }

    .price-amount {
        font-size: 28px;
    }

    .balance-info,
    .btc-info {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .payment-form .pay-btn,
    .pay-btn.primary-btn {
        padding: 14px 12px;
        font-size: 14px;
    }

    .guarantee {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .address-box {
        padding: 12px;
    }

    .address-box code {
        font-size: 12px;
    }

    .divider::before,
    .divider::after {
        width: calc(50% - 30px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        text-align: left;
    }
}

/* Small Mobile */

@media (max-width: 360px) {
    body {
        font-size: 12px;
    }

    .dashboard-content {
        padding: 12px;
    }

    .content-area {
        padding: 12px;
    }

    .content-title {
        font-size: 18px;
    }

    .nav-link {
        font-size: 12px;
        padding: 5px 8px;
    }

    .dropdown-btn {
        font-size: 12px;
        padding: 5px 8px;
    }

    .dropdown-content {
        min-width: 180px;
    }

    .dropdown-item {
        padding: 10px 14px;
        font-size: 12px;
    }

    .balance-card {
        padding: 10px 12px;
    }

    .balance-amount {
        font-size: 20px;
    }

    .balance-btc {
        font-size: 11px;
    }

    .balance-update {
        font-size: 10px;
    }

    .cart-summary {
        padding: 10px;
    }

    .summary-label {
        font-size: 12px;
    }

    .summary-value {
        font-size: 14px;
    }

    .summary-value.total-amount {
        font-size: 16px;
    }

    .cart-header,
    .cart-item {
        min-width: 550px;
        padding: 10px 12px;
    }

    .item-icon {
        font-size: 20px;
    }

    .item-name {
        font-size: 13px;
    }

    .qty-btn {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .qty-value {
        font-size: 13px;
    }

    .empty-cart {
        padding: 30px 15px;
    }

    .empty-cart-icon {
        font-size: 50px;
    }

    .empty-cart-title {
        font-size: 20px;
    }

    .empty-cart-message {
        font-size: 13px;
    }

    .logs-table,
    .cashapp-table,
    .cvv-table,
    .paypal-table {
        min-width: 550px;
        font-size: 11px;
    }

    .logs-table th,
    .logs-table td,
    .cashapp-table th,
    .cashapp-table td,
    .cvv-table th,
    .cvv-table td,
    .paypal-table th,
    .paypal-table td {
        padding: 8px 5px;
    }

    .login-container,
    .register-container {
        padding: 20px 15px;
    }

    .login-title,
    .register-title {
        font-size: 20px;
    }

    .login-input,
    .register-input {
        padding: 8px 12px;
    }

    .login-btn,
    .register-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .footer-content {
        font-size: 10px;
    }

    .support-form-container,
    .contact-info-container,
    .faq-section,
    .bitcoin-payment {
        padding: 12px;
    }

    .contact-icon {
        font-size: 20px;
        margin-right: 10px;
    }

    .contact-value {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .btc-amount {
        font-size: 18px;
    }

    .btc-address {
        font-size: 12px;
    }

    .qr-box {
        max-width: 200px;
        padding: 10px;
    }

    .qr-image {
        max-width: 160px;
    }

    .qr-text {
        font-size: 12px;
    }

    .topup-amount-input {
        font-size: 16px;
        padding: 12px 14px;
    }

    .currency-label {
        font-size: 14px;
        right: 14px;
    }

    .btc-label {
        font-size: 13px;
    }

    .btc-value {
        font-size: 18px;
    }

    .bitcoin-icon {
        font-size: 40px;
    }

    .bitcoin-text {
        font-size: 15px;
    }

    .confirmation-container {
        padding: 25px 15px;
    }

    .confirmation-icon {
        font-size: 50px;
    }

    .confirmation-title {
        font-size: 22px;
    }

    .confirmation-message {
        font-size: 14px;
    }

    .order-number,
    .transaction-id {
        font-size: 13px;
    }

    .orders-header h1 {
        font-size: 22px;
    }

    .order-id,
    .order-date {
        font-size: 12px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-quantity,
    .item-price {
        font-size: 13px;
    }

    .no-orders h2 {
        font-size: 22px;
    }

    .no-orders p {
        font-size: 14px;
    }

    .btn-shop {
        font-size: 14px;
    }

    .price-amount {
        font-size: 24px;
    }

    .setup-payment-container {
        padding: 10px;
    }

    .features-card h2,
    .payment-card h2 {
        font-size: 18px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-details h3 {
        font-size: 14px;
    }

    .price-amount {
        font-size: 26px;
    }

    .balance-amount {
        font-size: 18px;
    }

    .btc-amount {
        font-size: 14px;
    }

    .guarantee-icon {
        font-size: 32px;
    }
}

/* Print */

@media print {
    .top-nav,
    .dropdown,
    .status-bar,
    .dashboard-status,
    .btn,
    .action-btn,
    .qty-btn,
    .search-bar,
    .cart-actions,
    .modal,
    .flash-message,
    .login-container .status-bar,
    .login-btn,
    .forgot-password,
    .login-redirect,
    .register-container .status-bar,
    .register-btn,
    .register-redirect,
    .site-footer,
    .support-submit-btn,
    .copy-btn,
    .qr-placeholder,
    .warning-box,
    .empty-cart-actions,
    .empty-cart-topup,
    .back-to-dashboard,
    .pay-btn,
    .payment-form,
    .payment-options,
    .pending-download {
        display: none !important;
    }

    body,
    .dashboard-container,
    .content-area,
    .balance-card,
    .login-container,
    .register-container,
    .support-form-container,
    .contact-info-container,
    .faq-section,
    .bitcoin-payment,
    .setup-payment-container,
    .features-card,
    .payment-card {
        background: white !important;
        color: black !important;
        border: 1px solid #cccccc !important;
    }

    h1,
    h2,
    h3,
    h4 {
        color: black !important;
    }

    .data-table th,
    .logs-table th,
    .cashapp-table th,
    .cvv-table th,
    .paypal-table th {
        background: #f0f0f0 !important;
        color: black !important;
    }

    .data-table td,
    .logs-table td,
    .cashapp-table td,
    .cvv-table td,
    .paypal-table td {
        color: #333333 !important;
    }

    .login-input,
    .register-input,
    .support-input,
    .support-select,
    .support-textarea {
        border: 1px solid #cccccc !important;
        background: white !important;
        color: black !important;
    }

    .contact-info-item,
    .faq-item,
    .feature-item {
        background: white !important;
        border: 1px solid #cccccc !important;
    }

    .contact-label,
    .faq-question,
    .btc-label,
    .btc-amount,
    .btc-address,
    .feature-details h3,
    .feature-details p,
    .feature-details li {
        color: black !important;
    }

    .contact-value,
    .faq-answer {
        color: #333333 !important;
    }

    .summary-label,
    .summary-value {
        color: black !important;
    }

    .order-summary {
        border: 1px solid #cccccc !important;
    }

    .status-badge {
        border: 1px solid #333 !important;
        color: black !important;
        background: #f0f0f0 !important;
    }

    .price-tag {
        background: #f0f0f0 !important;
        color: black !important;
    }

    .price-label,
    .price-amount {
        color: black !important;
    }

    .guarantee {
        border: 1px solid #cccccc !important;
        background: #f9f9f9 !important;
    }

    .guarantee-icon,
    .guarantee-text strong,
    .guarantee-text p {
        color: black !important;
    }
}

.onion-link {
    color: #87CEFA;
    overflow-wrap: anywhere;
}

/* ===== CUSTOM CAPTCHA STYLES ===== */

/* Timer Box */

.timer-box {
    background: #1a1a1a;
    border: 1px solid #ffaa00;
    border-left: 4px solid #ffaa00;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    border-radius: 4px;
}

.timer-label {
    color: #888888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timer-value {
    color: #ffaa00;
    font-size: 28px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
    margin-bottom: 5px;
}

.timer-note {
    color: #888888;
    font-size: 12px;
}

/* CAPTCHA Section */

.captcha-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a2a2a;
}

.captcha-image-container {
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.captcha-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
    background: #0a0a0a;
}

.captcha-refresh {
    text-align: center;
    margin: 10px 0 15px 0;
}

.captcha-refresh-link {
    display: inline-block;
    color: #888888;
    text-decoration: none;
    font-size: 13px;
    padding: 5px 15px;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    transition: all 0.2s ease;
    background: #0a0a0a;
}

.captcha-refresh-link:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #4a6bff;
}

.captcha-input {
    text-align: center;
    font-size: 24px !important;
    letter-spacing: 8px !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-weight: bold !important;
}

.captcha-hint {
    color: #888888;
    font-size: 12px;
    margin-top: 8px;
    text-align: center;
}

/* Disabled button state */

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: #444444;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.qty-fixed {
    display: inline-block;
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-cyan);
    font-size: 1.1rem;
    padding: 5px 10px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 4px;
}

/* Hide any remaining increment/decrement buttons */

.qty-btn {
    display: none;
}

/* Ensure the quantity column is properly aligned */

.item-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Additional styles for the updated support page */

.highlight-item {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 255, 0.05) 100%);
    border: 1px solid var(--primary-cyan);
    border-radius: 8px;
    padding: 15px;
}

.telegram-icon {
    font-size: 2rem;
}

.quick-contact-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed var(--primary-cyan);
}

.telegram-contact-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0088cc, #005f8c);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.telegram-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    background: linear-gradient(135deg, #0099dd, #006f9c);
}

.contact-note {
    margin-top: 15px;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.support-guidelines {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--border-dim);
}

.guidelines-title {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    color: var(--text-dim);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    font-size: 0.95rem;
}

.guidelines-list li:last-child {
    border-bottom: none;
}

.guidelines-list li:hover {
    color: var(--text-bright);
}

/* Responsive adjustments */

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .telegram-contact-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for highlight item - removed tilting */

.highlight-item {
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

/* ===== USER INFO RESPONSIVE FIXES ===== */

@media (max-width: 768px) {
    .nav-right {
        justify-content: flex-start;
        width: 100%;
        padding-right: 0;
    }

    .user-info-wrapper {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }

    .user-details {
        flex: 1;
    }

    .user-quick-menu {
        width: 100%;
        left: 0;
        right: auto;
    }
}