/* Custom Global Root Properties - Shifted fully to Premium Deep Purple Matrix */
:root {
    --bg-dark: #05030a;
    --bg-card: rgba(22, 14, 43, 0.55);
    --border-glass: rgba(168, 85, 247, 0.25);
    --neon-blue: #a855f7; /* Master Accent Core */
    --neon-purple: #c084fc;
    --neon-pink: #e879f9;
    --text-main: #f1f5f9;
    --text-muted: #a78bfa;
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition-speed: 0.35s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% 0%, #2e1065 0%, var(--bg-dark) 75%);
    min-height: 100vh;
}

/* Simulated Vector Particles System Background Elements */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    background-image: radial-gradient(rgba(168, 85, 247, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
}
.orb-1 { top: 15%; left: -10%; width: 500px; height: 500px; background: var(--neon-blue); }
.orb-2 { top: 60%; right: -10%; width: 600px; height: 600px; background: #581c87; }

/* Structural Glassmorphism Architecture */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

/* Master Shared Buttons */
.action-btn {
    background: linear-gradient(135deg, #7e22ce 0%, #a855f7 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(232, 121, 249, 0.5);
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

/* Navigation Layout Core */
.navbar {
    border-bottom: 1px solid var(--border-glass);
    background: rgba(5, 3, 10, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.nav-container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-zone {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-logo {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    border: 2px solid var(--border-glass);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    object-fit: cover;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.brand-title {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
.accent-purple { color: var(--neon-blue); text-shadow: 0 0 10px rgba(168, 85, 247, 0.6); }
.brand-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Server pill metadata */
.server-status-pill {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.server-status-pill:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}
.status-indicator-glow {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}
.status-info { display: flex; flex-direction: column; }
.ip-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }
.ip-address { font-family: var(--font-header); font-size: 1.05rem; font-weight: 700; color: #fff; }
.ip-copy-trigger {
    background: #581c87;
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-header);
    cursor: pointer;
}

/* Master Hero Section Dashboard */
.store-hero {
    padding: 90px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.hero-content { max-width: 900px; margin: 0 auto; }
.hero-badge {
    background: rgba(232, 121, 249, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-header);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.store-hero h1 {
    font-family: var(--font-header);
    font-size: 4.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff 20%, #c084fc 50%, #7e22ce 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.hero-desc {
    color: #cbd5e1;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 35px;
}
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-node {
    background: rgba(5, 3, 10, 0.6);
    border: 1px solid var(--border-glass);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}
.discord-link {
    text-decoration: none;
    color: #fff;
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    transition: 0.3s;
}
.discord-link:hover {
    background: #5865F2;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

/* Master Layout Framework */
.store-container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto 100px auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Sidebar Elements Navigation Layer */
.store-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.sidebar-header {
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    padding-left: 5px;
}
.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-tab {
    background: rgba(22, 14, 43, 0.4);
    border: 1px solid var(--border-glass);
    padding: 18px 24px;
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.category-tab:hover {
    background: rgba(168, 85, 247, 0.12);
    border-color: var(--neon-purple);
    padding-left: 30px;
}
.category-tab.active {
    background: linear-gradient(90deg, rgba(126, 34, 206, 0.4) 0%, rgba(168, 85, 247, 0.15) 100%);
    border-color: var(--neon-blue);
    box-shadow: inset 3px 0 0 var(--neon-blue);
}

/* Authentication Panel Design Frame */
.sidebar-auth-card {
    background: rgba(15, 7, 32, 0.75);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.auth-header-title {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}
.auth-help-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.4;
    margin-bottom: 18px;
}
.auth-input-field {
    width: 100%;
    background: rgba(5, 3, 10, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: 0.3s;
}
.auth-input-field:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(232, 121, 249, 0.3);
}
.auth-trigger-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.05rem;
}

/* Active Login Elements Interface */
.player-profile-identity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.player-avatar-node {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}
.player-metadata { display: flex; flex-direction: column; }
.profile-greeting { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }
.profile-ign { font-family: var(--font-header); font-size: 1.3rem; font-weight: 700; color: #fff; }
.logout-trigger {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-family: var(--font-header);
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
}
.logout-trigger:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

/* Product Shelf Render Output Context */
.products-display-hub {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.shelf-header-banner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.shelf-header-banner h2 {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.shelf-decoration-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-glass) 0%, transparent 100%);
}
.products-grid-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

/* Premium Dynamic Interactive Product Card Layout */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
    background: linear-gradient(180deg, rgba(26, 17, 50, 0.6) 0%, rgba(13, 8, 28, 0.8) 100%);
    overflow: hidden;
}

/* Dynamic Interactive Glow effect using Mouse tracking JS elements */
.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(168, 85, 247, 0.12), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 121, 249, 0.4);
    box-shadow: 0 15px 35px rgba(5, 3, 10, 0.8), 0 0 20px rgba(168, 85, 247, 0.15);
}

.product-info { position: relative; z-index: 2; }
.p-tier-banner {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-pink);
    border: 1px solid rgba(232, 121, 249, 0.3);
    background: rgba(232, 121, 249, 0.05);
    padding: 3px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.p-title {
    font-family: var(--font-header);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.p-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.p-features-list li {
    font-size: 1.15rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.p-features-list i {
    color: var(--neon-blue);
    font-size: 1rem;
    margin-top: 4px;
}

.product-action-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    gap: 15px;
}
.p-price-tag {
    font-family: var(--font-header);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}
.buy-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
}

/* Master Checkout Overlay Systems Layout */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 1, 7, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    transition: opacity 0.3s ease;
}
.modal-container {
    width: 100%;
    max-width: 950px;
    position: relative;
    overflow: hidden;
    animation: modalSlide 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes modalSlide {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close-trigger {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 10;
}
.modal-close-trigger:hover { background: #ef4444; border-color: #ef4444; }

.modal-grid-engine {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.modal-payment-gateway-view {
    padding: 40px;
    border-right: 1px solid var(--border-glass);
    background: rgba(5, 3, 10, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.modal-grid-engine h3 {
    font-family: var(--font-header);
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.gateway-instructions {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 25px;
}
.qr-wrapper-frame {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
    margin-bottom: 25px;
    display: inline-block;
}
.payment-qr {
    width: 210px;
    height: 210px;
    display: block;
}
.checkout-billing-receipt {
    width: 100%;
    background: rgba(5, 3, 10, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 15px 20px;
}
.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.receipt-row:last-child { margin-bottom: 0; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,0.1); }
.receipt-bold-val { color: #fff; font-weight: 700; }
.receipt-total-accent {
    font-family: var(--font-header);
    color: var(--neon-pink);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Verification form inputs container */
.modal-form-processing-view { padding: 40px; background: rgba(15, 7, 32, 0.2); }
.checkout-data-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.input-block { display: flex; flex-direction: column; gap: 8px; }
.input-block label {
    font-family: var(--font-header);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}
.input-block input {
    background: rgba(5, 3, 10, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.2rem;
    transition: 0.3s;
}
.input-block input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}
.purchase-confirm-btn {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Notification Pop Alerts */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0d081c;
    border-left: 4px solid var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 15px rgba(168, 85, 247, 0.3);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-header);
    font-weight: 700;
    color: #fff;
    z-index: 100000;
    animation: toastPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes toastPop {
    from { transform: translateY(20px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Clean Simplified Footer UI */
.store-footer {
    border-top: 1px solid var(--border-glass);
    padding: 40px 20px;
    text-align: center;
    background: #030206;
}
.store-footer p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.store-footer .disclaimer {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.2);
}

.hidden { display: none !important; }

/* Responsive Adaptive Viewports layout corrections */
@media (max-width: 1024px) {
    .store-container { grid-template-columns: 1fr; gap: 30px; }
    .modal-grid-engine { grid-template-columns: 1fr; }
    .modal-payment-gateway-view { border-right: none; border-bottom: 1px solid var(--border-glass); }
    .store-hero h1 { font-size: 3rem; }
}
