/* ------------------- */
/* --- Splash Screen Styles --- */
/* ------------------- */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it's on top of everything */
    opacity: 1;
    transition: opacity 0.7s ease-in-out; /* Fade-out animation */
}

#splash-screen.splash-hidden {
    opacity: 0; /* Target state for fade-out */
}

.splash-logo {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    animation: blinking-text 1.5s infinite;
}

.splash-logo span {
    color: var(--primary-violet);
}

@keyframes blinking-text {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}


/* ------------------- */
/* --- Global Styles & Variables --- */
/* ------------------- */
:root {
    --background-dark: #12121c;
    --primary-violet: #6c5ce7;
    --light-violet: #a29bfe;
    --surface-color: #1a1a29;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0b0;
    --border-color: #2c2c3a;
    --danger-red: #ff4757;
    --success-green: #2ed573;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    font-size: 16px;
}

.container {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Helper class */
.hidden {
    display: none !important;
}

/* ------------------- */
/* --- Login Page Styles --- */
/* ------------------- */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 420px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
}

.form-container {
    display: none;
}
.form-container.active {
    display: block;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.form-header h1 {
    font-size: 2rem;
    color: #fff;
}
.form-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-violet);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.input-group {
    position: relative;
    margin-bottom: 35px;
}
.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 0;
    font-size: 1rem;
    outline: none;
}
.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.2s ease;
}
.input-group input:focus ~ label,
.input-group input:valid ~ label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary-violet);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--background-dark);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
    margin-top: 15px;
}
.submit-btn:hover {
    background-color: var(--primary-violet);
    color: #fff;
    border-color: var(--primary-violet);
}

.form-switcher {
    text-align: center;
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.form-switcher a {
    color: var(--primary-violet);
    font-weight: 600;
    text-decoration: none;
}
.error-message {
    color: var(--danger-red);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 15px;
    min-height: 1em;
}

.password-reqs {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.password-reqs li {
    transition: color 0.2s;
}
.password-reqs li.valid {
    color: var(--success-green);
    text-decoration: line-through;
}


/* ------------------- */
/* --- Header --- */
/* ------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: sticky;
    top: 0;
    background-color: rgba(18, 18, 28, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo-link {
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    position: static;
    transform: none;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo span { color: var(--primary-violet); }

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu svg { width: 28px; height: 28px; stroke: var(--text-primary); }

.header-right { 
    display: flex;
    align-items: center;
    gap: 15px;
}

#logout-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
#logout-btn:hover {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    color: #fff;
}


/* ------------------- */
/* --- Sidebar Navigation --- */
/* ------------------- */
.sidebar {
    position: fixed; top: 0; left: 0; height: 100%; width: 280px;
    background-color: var(--surface-color); border-right: 1px solid var(--border-color);
    padding: 30px 0; transform: translateX(-100%); transition: transform 0.3s ease-in-out;
    z-index: 2000;
}

.sidebar.open { transform: translateX(0); }
.sidebar-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 20px 20px; border-bottom: 1px solid var(--border-color);
}
.sidebar-logo { font-size: 1.5rem; font-weight: 700; color: #fff; }
.sidebar-logo span { color: var(--primary-violet); }
.close-btn { background: none; border: none; cursor: pointer; }
.close-btn svg { width: 24px; height: 24px; stroke: var(--text-secondary); }

.sidebar-nav { list-style: none; padding: 20px; }
.sidebar-nav li a {
    display: flex; align-items: center; gap: 15px; padding: 15px 20px;
    color: var(--text-secondary); text-decoration: none; border-radius: 8px;
    font-weight: 500; transition: background-color 0.2s, color 0.2s;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active { background-color: var(--primary-violet); color: #fff; }
.sidebar-nav li a svg { width: 20px; height: 20px; }
.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); z-index: 1999; opacity: 0;
    visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* --- Homepage Styles --- */
.top-section { text-align: center; padding: 30px 0; }
.wallet-button {
    background-color: var(--primary-violet); color: #fff; border: none; border-radius: 8px;
    padding: 15px 30px; font-size: 1.1rem; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px; transition: background-color 0.2s;
    margin-bottom: 25px;
}
.wallet-button:hover { background-color: var(--light-violet); }
.wallet-button svg { width: 24px; height: 24px; }
.action-icons { display: flex; justify-content: center; gap: 20px; }
.action-icons button {
    background-color: var(--surface-color); border: 1px solid var(--border-color);
    border-radius: 50%; width: 50px; height: 50px; display: flex;
    justify-content: center; align-items: center; cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}
.action-icons button:hover { background-color: var(--border-color); border-color: var(--primary-violet); }
.action-icons svg { width: 24px; height: 24px; stroke: var(--text-secondary); }

.search-section {
    background-color: var(--surface-color); border-radius: 12px;
    padding: 30px; margin-top: 40px;
}
.search-section h2 { font-size: 1.8rem; margin-bottom: 30px; color: #fff; }
.search-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group select {
    background-color: var(--background-dark); border: 1px solid var(--border-color);
    color: var(--text-primary); padding: 12px 15px; border-radius: 8px; font-size: 1rem; width: 100%;
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-violet); }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0a0b0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 15px center; background-repeat: no-repeat; background-size: 1em;
}

/* --- Generic Content Page Styles (FAQ, Contact, etc.) --- */
.content-page {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 40px;
}
.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid var(--primary-violet);
    padding-bottom: 15px;
}
.page-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --- FAQ Page Styles --- */
.faq-item { border-bottom: 1px solid var(--border-color); }
.faq-item summary {
    font-size: 1.2rem; font-weight: 600; padding: 20px 0; cursor: pointer;
    list-style: none; position: relative; padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 5px; font-size: 1.8rem;
    color: var(--primary-violet); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 10px 20px; line-height: 1.7; color: var(--text-secondary); }
.faq-answer strong { color: var(--danger-red); font-weight: 600; }

/* --- Contact Page Styles --- */
.contact-info p { font-size: 1.1rem; margin-bottom: 25px; color: var(--text-secondary); }
.contact-email-box {
    background-color: var(--background-dark); border: 1px solid var(--border-color);
    border-radius: 8px; padding: 15px 20px; font-family: monospace;
    font-size: 1.2rem; color: var(--light-violet); margin-bottom: 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.contact-btn {
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
    background-color: var(--primary-violet); color: #fff; padding: 12px 25px;
    border-radius: 8px; font-weight: 600; transition: background-color 0.2s;
}
.contact-btn:hover { background-color: var(--light-violet); }
.contact-btn svg { width: 20px; height: 20px; }

/* --- Wallet Page Styles --- */
.wallet-header {
    background: linear-gradient(90deg, var(--primary-violet) 0%, var(--light-violet) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.balance-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.balance-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}
.balance-amount {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.transactions-container {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
}
.transactions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.transactions-header h2 {
    color: #fff;
    font-size: 1.5rem;
}
.table-wrapper {
    overflow-x: auto;
}
#transactions-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
}
#transactions-table th, #transactions-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
#transactions-table th {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
#transactions-table tbody tr:last-child td {
    border-bottom: none;
}
.amount-credit {
    color: var(--success-green);
    font-weight: 600;
}
.amount-debit {
    color: var(--danger-red);
    font-weight: 600;
}

/* --- Deposit Modal Styles --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); z-index: 3000;
    display: none; justify-content: center; align-items: center;
    perspective: 1000px;
    padding: 20px;
}
.modal-flipper {
    display: grid;
    width: 90%;
    max-width: 500px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}
.modal-flipper.is-flipped {
    transform: rotateY(180deg);
}
.modal-content {
    background-color: rgba(26, 26, 41, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    grid-row: 1 / 1;
    grid-column: 1 / 1;
    backface-visibility: hidden;
}
.modal-content .form-group input, .modal-content .form-group select {
    color: var(--text-primary);
}
#deposit-modal {
    z-index: 2;
    transform: rotateY(0deg);
}
#payment-details-modal {
    transform: rotateY(180deg);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: none;
}
.modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
}
.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
}
.back-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
}
.back-modal:hover {
    color: var(--primary-violet);
}
.modal-info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 20px;
}
.payment-details-content {
    text-align: center;
}
.payment-details-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.payment-details-content strong {
    color: var(--primary-violet);
    font-weight: 600;
}
.qr-code-container {
    background-color: var(--background-dark);
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 20px;
}
#qr-code-img {
    display: block;
    width: 160px;
    height: 160px;
}
.address-box {
    display: flex;
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.address-box input {
    flex-grow: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 15px;
    font-size: 0.9rem;
    font-family: monospace;
    outline: none;
}
.address-box button {
    background-color: var(--primary-violet);
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.address-box button:hover {
    background-color: var(--light-violet);
}
.timer {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-violet);
    margin-bottom: 15px;
    background-color: var(--background-dark);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

/* --- Orders Page Styles --- */
#orders-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
}
#orders-table th, #orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
#orders-table th {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
#orders-table tbody tr:last-child td {
    border-bottom: none;
}
.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}
.status-completed {
    background-color: rgba(46, 213, 115, 0.1);
    color: var(--success-green);
}
.status-pending {
    background-color: rgba(255, 165, 0, 0.1);
    color: #ffa500;
}
.status-failed {
    background-color: rgba(255, 71, 87, 0.1);
    color: var(--danger-red);
}
.action-button-small {
    background-color: var(--background-dark);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.action-button-small:hover {
    background-color: var(--primary-violet);
    border-color: var(--primary-violet);
    color: #fff;
}

/* --- CC Checker Page Styles --- */
#purchases-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
    margin-bottom: 30px;
}
#purchases-table th, #purchases-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
#purchases-table th {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}
#purchases-table .check-btn {
    min-width: 100px;
}
#purchases-table .check-btn:disabled {
    cursor: not-allowed;
    background-color: var(--border-color);
}
#check-results-area {
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
#check-results-area h3 {
    margin-bottom: 10px;
    color: #fff;
}
#check-results-area p {
    font-size: 1.1rem;
    font-weight: 600;
}
.result-checking { color: var(--text-secondary); }
.result-approved { color: var(--success-green); }
.result-declined { color: var(--danger-red); }

#checker-locked {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--background-dark);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}
.locked-content svg {
    stroke: var(--primary-violet);
    margin-bottom: 20px;
}
.locked-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.locked-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}
.locked-content .action-button {
    max-width: 200px;
    margin: 0 auto;
}

/* --- Results Table Section --- */
.results-section {
    background-color: var(--surface-color);
    border-radius: 12px;
    margin-top: 30px;
    padding: 15px;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
}

.results-table th, .results-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.results-table th {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.results-table tbody tr:hover {
    background-color: var(--background-dark);
}

.results-table tbody tr:last-child td {
    border-bottom: none;
}

.card-brand {
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
}

.card-brand-visa { background-color: #1a1e78; }
.card-brand-mastercard { background-color: #eb001b; }
.card-brand-amex { background-color: #2e77bc; }
.card-brand-discover { background-color: #f68b1e; }

/* Add these new styles to the end of your existing style.css file */

/* --- New Button States --- */
.preorder-btn {
    background-color: #4a4a5a !important;
    cursor: not-allowed !important;
    color: var(--text-secondary) !important;
}
.instant-btn {
    background-color: var(--success-green) !important;
    border-color: var(--success-green) !important;
    color: #fff !important;
}
.instant-btn:hover {
    background-color: #27ae60 !important;
    border-color: #27ae60 !important;
}

/* --- Cart Page Styles --- */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.cart-items-panel h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.item-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}
.item-price {
    font-size: 1rem;
    color: var(--text-secondary);
}
.remove-item-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
}
.remove-item-btn:hover {
    color: var(--danger-red);
}
.summary-box {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 120px; /* Header height + margin */
}
.summary-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
}
.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
}
.summary-box .action-button {
    width: 100%;
    margin-top: 20px;
}
.summary-box .action-button:disabled {
    background-color: var(--border-color);
    cursor: not-allowed;
}
.empty-cart-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 40px 0;
    text-align: center;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}
/* Add these new styles to the end of your existing style.css file */

/* --- Notification System Styles --- */
.notification-container {
    position: relative;
}
.notification-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 10px;
    color: var(--text-secondary);
}
.notification-btn:hover {
    color: var(--primary-violet);
}
.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--danger-red);
    border-radius: 50%;
    border: 2px solid var(--background-dark);
}
.notification-panel {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, top 0.2s;
    z-index: 5000;
}
.notification-panel.active {
    opacity: 1;
    visibility: visible;
    top: 140%;
}
.notification-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}
.notification-header h3 {
    font-size: 1rem;
    color: #fff;
}
.notification-body {
    max-height: 400px;
    overflow-y: auto;
}
.notification-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}
.notification-item:last-child {
    border-bottom: none;
}
.item-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}
.item-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}
.item-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* --- Friday Crate Section Styles --- */
.friday-crate-section {
    background: linear-gradient(45deg, var(--primary-violet), #4a00e0);
    border-radius: 12px;
    padding: 40px;
    margin-top: 30px;
    color: #fff;
}
.friday-crate-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.crate-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.crate-details {
    flex-grow: 1;
}
.crate-details h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.crate-details p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 400px;
    margin-bottom: 20px;
}
.crate-price {
    font-size: 2rem;
    font-weight: 700;
}
.crate-action {
    text-align: center;
}
.crate-action .action-button {
    min-width: 200px;
    margin-bottom: 10px;
}
.crate-timer {
    font-size: 0.9rem;
    opacity: 0.8;
}
/* Add this new style to the end of your existing style.css file */

.sold-btn {
    background-color: #3a3a4a !important;
    cursor: not-allowed !important;
    color: var(--text-secondary) !important;
    border-color: #3a3a4a !important;
}
/* --- Processing Page Styles --- */
.processing-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
.processing-container {
    padding: 20px;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--border-color);
    border-top-color: var(--primary-violet);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}
.processing-container h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}
.processing-container p {
    color: var(--text-secondary);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.results-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.preorder-btn {
    background-color: var(--primary-violet);
    border-color: var(--primary-violet);
    color: #fff;
}
.preorder-btn:hover {
    background-color: var(--light-violet) !important;
    border-color: var(--light-violet) !important;
}
/* Add this new style to the end of your existing style.css file */

.status-pre-ordered {
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary-violet);
}

.status-pending-payment {
    background-color: rgba(255, 165, 0, 0.1);
    color: #ffa500; /* Orange */
}
/* Add these new styles to the end of your existing style.css file */

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-violet);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.info-box svg {
    flex-shrink: 0;
    stroke: var(--primary-violet);
    margin-top: 2px;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}
