/* ==========================================================================
   DER SPÄTI - ARCADE SHOP & LOOT DISTRICT (HARDCORE Späti STYLE + 3 REGALE)
   ========================================================================== */

.store-tab-shell {
    position: relative;
    width: 100%;
}

.store-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 6px 0 28px;
}

.store-showcase::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 10px;
    height: 240px;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.2) 0%, rgba(0, 204, 255, 0.14) 36%, rgba(255, 215, 0, 0.08) 68%, transparent 100%);
    filter: blur(44px);
    pointer-events: none;
    opacity: 0.92;
}

.store-showcase > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   PANELS & HERO (Exakt wie in style.css)
   ========================================================================== */
.store-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
    gap: 22px;
    align-items: stretch;
}

.store-hero-copy,
.store-spotlight-card,
.store-stat-card,
.store-toolbar,
.store-system-card {
    position: relative;
    overflow: hidden;
    background: rgba(8, 10, 18, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.12);
    /* Der signifikante Späti-Schatten */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.65), 10px 10px 0 rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(8px);
}

.store-hero-copy::before,
.store-spotlight-card::before,
.store-toolbar::before,
.store-system-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0px, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px);
    pointer-events: none;
    z-index: 0;
}

.store-hero-copy {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-color: rgba(0, 204, 255, 0.45);
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.12) 0%, rgba(127, 0, 255, 0.08) 42%, rgba(0, 0, 0, 0.92) 100%);
}

.store-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: fit-content;
    padding: 8px 14px;
    margin: 0 auto 18px;
    font-size: 8px;
    letter-spacing: 3px;
    color: #00ccff;
    border: 1px solid rgba(0, 204, 255, 0.45);
    background: rgba(0, 204, 255, 0.08);
    box-shadow: 0 0 12px rgba(0, 204, 255, 0.15);
    position: relative;
    z-index: 1;
}

.store-main-title {
    margin: 0 0 14px;
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.28), 0 0 22px rgba(127, 0, 255, 0.22);
    position: relative;
    z-index: 1;
}

.store-main-subtitle {
    margin: 0 0 18px;
    text-align: center;
    color: #99a3b3;
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.store-marquee {
    margin-top: 18px;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.06);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.4);
    padding: 11px 0;
    position: relative;
    z-index: 1;
}

.store-marquee span {
    display: inline-block;
    min-width: 100%;
    padding-left: 100%;
    color: #ffd86b;
    font-size: 8px;
    letter-spacing: 2px;
    animation: storeTicker 18s linear infinite;
}

@keyframes storeTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Spotlight Card (Feature Item) */
.store-spotlight-card {
    --feature-color: #FFD700;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
    border-color: rgba(255, 215, 0, 0.45);
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08) 0%, rgba(18, 18, 30, 0.96) 38%, rgba(0, 0, 0, 0.98) 100%);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.65), 10px 10px 0 rgba(0, 0, 0, 0.82), 0 0 24px rgba(255, 215, 0, 0.12);
}

.store-spotlight-label {
    display: inline-flex;
    padding: 8px 14px;
    margin: 0 auto 6px;
    font-size: 8px;
    letter-spacing: 3px;
    color: #ffd86b;
    border: 1px solid rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.08);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.store-spotlight-type {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--feature-color);
    text-shadow: 0 0 10px var(--feature-color);
    position: relative;
    z-index: 1;
}

.store-spotlight-name {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.store-spotlight-description {
    margin: 0;
    font-size: 8px;
    line-height: 1.9;
    color: #b4bfcd;
    max-width: 390px;
    position: relative;
    z-index: 1;
}

.store-spotlight-price {
    margin-top: 10px;
    font-size: 20px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.35);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   DASHBOARD STATS
   ========================================================================== */
.store-dashboard {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.store-stat-card {
    --accent: #8b9bb4;
    min-height: 92px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(8, 8, 14, 0.96) 100%);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-stat-card:hover {
    transform: translateY(-4px);
}

.store-stat-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent);
}

.store-stat-card.accent-blue { --accent: #00ccff; }
.store-stat-card.accent-green { --accent: #00ff88; }
.store-stat-card.accent-gold { --accent: #FFD700; }
.store-stat-card.accent-pink { --accent: #ff0055; }
.store-stat-card.accent-violet { --accent: #7F00FF; }

.store-stat-label {
    font-size: 7px;
    letter-spacing: 2px;
    color: #9ba7b7;
    position: relative;
    z-index: 1;
}

.store-stat-value {
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 12px var(--accent);
    position: relative;
    z-index: 1;
}

.store-stat-value.compact {
    font-size: 10px;
    line-height: 1.5;
}

/* ==========================================================================
   TOOLBAR & FILTER
   ========================================================================== */
.store-toolbar {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 8, 12, 0.96) 100%);
}

.store-toolbar .quest-section-header {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.store-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.store-filter-btn {
    flex: 1;
    min-width: 104px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 7px;
    color: #d7e7ff;
    background: rgba(7, 12, 20, 0.9);
    border: 2px solid rgba(124, 142, 170, 0.35);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-filter-btn:hover {
    transform: translateY(-2px) translateX(-2px);
    border-color: #00f3ff;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 243, 255, 0.18);
    color: #fff;
}

.store-filter-btn.active {
    color: #000;
    background: linear-gradient(180deg, #fff09f 0%, #FFD700 100%);
    border-color: #FFD700;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 215, 0, 0.28);
}

.store-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border: 1px solid currentColor;
    background: rgba(255, 255, 255, 0.08);
}

.store-toolbar-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 7px;
    letter-spacing: 2px;
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.store-toolbar-led {
    width: 10px;
    height: 10px;
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: toolbarBlink 1.8s steps(2, end) infinite;
}

@keyframes toolbarBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ==========================================================================
   ECHTE REGALE (SAUBER & NORMAL)
   ========================================================================== */
.store-shelf-frame {
    position: relative;
    padding: 24px 16px 36px;
    background: rgba(10, 12, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.store-shelf-frame::after {
    display: none !important;
}

.store-shelves-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Normaler Abstand zwischen Regalen */
    width: 100%;
}

.store-category-shelf {
    position: relative;
    background: rgba(15, 18, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Das ist das Regalbrett: Eine saubere, dicke Kante unten */
    border-bottom: 6px solid #222;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.store-shelf-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.store-shelf-title::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 18px;
    background: var(--shelf-color, #fff);
    box-shadow: 0 0 10px var(--shelf-color, #fff);
    border-radius: 2px;
}

/* Das Grid innerhalb des Regals */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-content: flex-start; /* Items ordnen sich normal linksbündig an */
    align-items: stretch;
    width: 100%;
}

/* ==========================================================================
   STORE CARDS (HARTE PIXEL-AESTHETIK IM GRID)
   ========================================================================== */
.store-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: rgba(8, 8, 8, 0.95);
    border: 2px solid var(--store-color, #7F00FF);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.9), inset 0 0 15px rgba(0,0,0,0.8);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.store-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 0;
}

.store-card:hover {
    transform: translateY(-6px) translateX(-6px);
    box-shadow: 14px 14px 0px rgba(0, 0, 0, 0.9), 0 0 20px var(--store-color, #7F00FF);
}

.store-card-hidden {
    display: none !important;
}

.store-card-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 2px dashed var(--store-color, #7F00FF);
    padding: 14px;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.store-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 5px var(--store-color));
}

.store-title {
    font-size: 10px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,1);
    letter-spacing: 1px;
}

.store-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.store-card-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-type-badge {
    padding: 6px 10px;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--store-color, #888);
    color: var(--store-color, #fff);
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05);
}

.store-new-badge,
.store-owned-chip {
    padding: 6px 10px;
    font-size: 7px;
    letter-spacing: 2px;
    border: 1px solid;
    background: rgba(0, 0, 0, 0.45);
}

.store-new-badge {
    color: #1a1200;
    border-color: #FFD700;
    background: linear-gradient(180deg, #fff1a4 0%, #FFD700 100%);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.4);
    animation: newBadgePulse 1.8s ease-in-out infinite;
}

.store-owned-chip {
    color: #88ffd3;
    border-color: #00ff88;
}

@keyframes newBadgePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.store-preview-wrapper {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8);
    position: relative;
    margin-bottom: 0;
}

.store-item-preview {
    max-width: 90%;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.9));
    transition: transform 0.3s ease;
}

.store-card:hover .store-item-preview {
    transform: scale(1.1);
}

.store-item-description {
    font-size: 8px;
    line-height: 1.8;
    color: #9ab;
    min-height: 48px;
    margin-bottom: 0;
}

.store-item-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0;
    margin-top: auto;
}

.store-item-meta span {
    flex: 1;
    padding: 8px;
    font-size: 7px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00ffff;
    letter-spacing: 1px;
}

.store-card-footer {
    padding: 16px;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 112px;
    gap: 12px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.store-price {
    font-size: 14px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.buy-btn {
    height: 100%;
    padding: 0 10px;
    font-size: 8px;
    font-family: 'Press Start 2P', cursive;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--store-color, #00ff88);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.buy-btn:hover {
    background: var(--store-color, #00ff88);
    color: #000;
    box-shadow: 0 0 15px var(--store-color, #00ff88);
}

.store-empty-state {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border: 2px dashed rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.45);
    color: #cfd7e4;
    font-size: 9px;
    letter-spacing: 2px;
}

.store-empty-state.error {
    color: #ff7b9c;
    border-color: rgba(255, 0, 85, 0.45);
    box-shadow: inset 0 0 20px rgba(255, 0, 85, 0.08);
}

/* ==========================================================================
   SYSTEM CARDS & ROADMAP (HARDWARE / MAINFRAME STYLE)
   ========================================================================== */
.store-systems-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.store-system-card {
    padding: 24px;
    border-color: rgba(0, 204, 255, 0.2);
}

.store-system-kicker {
    display: inline-flex;
    padding: 6px 12px;
    margin-bottom: 14px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #00ccff;
    border: 1px solid rgba(0, 204, 255, 0.35);
    background: rgba(0, 204, 255, 0.08);
}

.store-system-card h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.store-system-copy {
    margin: 12px 0 0;
    font-size: 8px;
    line-height: 1.8;
    color: #b8c6d8;
}

.store-roadmap-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.store-roadmap-item {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 2px solid #333;
    background: rgba(0, 0, 0, 0.6);
    border-left: 4px solid var(--p-lila);
    transition: transform 0.2s;
}

.store-roadmap-item:hover {
    transform: translateX(5px);
    border-color: rgba(127, 0, 255, 0.4);
    background: rgba(127, 0, 255, 0.1);
}

.store-roadmap-item strong {
    font-size: 10px;
    color: #fff;
}

.store-roadmap-item span {
    font-size: 8px;
    line-height: 1.7;
    color: #9eb0c8;
}

/* ==========================================================================
   WHEEL OF FORTUNE (HARDWARE / RADAR STYLE)
   ========================================================================== */
.store-wheel-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.store-wheel-shell {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.store-wheel-disc {
    --wheel-rotation: 0deg;
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 6px solid #222;
    background: #050505;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.9),
        inset 0 0 30px rgba(127,0,255,0.2),
        0 0 0 10px #0a0a0a;
    transform: rotate(var(--wheel-rotation));
    transition: transform 3.5s cubic-bezier(0.15, 0.85, 0.15, 1);
    overflow: hidden;
}

.store-wheel-disc.is-spinning {
    filter: drop-shadow(0 0 15px rgba(0, 204, 255, 0.4));
}

.store-wheel-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #00ccff;
    filter: drop-shadow(0 0 10px #00ccff);
    z-index: 10;
}

.store-wheel-core {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: #000;
    border: 4px solid var(--p-lila);
    box-shadow: inset 0 0 15px rgba(127, 0, 255, 0.6), 0 0 20px rgba(127, 0, 255, 0.8);
    color: #fff;
    font-size: 8px;
    letter-spacing: 1px;
    z-index: 5;
    animation: corePulse 2s infinite alternate;
}

@keyframes corePulse {
    0% { box-shadow: inset 0 0 10px rgba(127, 0, 255, 0.4), 0 0 10px rgba(127, 0, 255, 0.5); }
    100% { box-shadow: inset 0 0 20px rgba(127, 0, 255, 0.8), 0 0 30px rgba(127, 0, 255, 1); }
}

.store-wheel-segment {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    transform-origin: 0 0;
    transform: rotate(calc((360deg / var(--segment-total)) * var(--segment-index))) translate(0, -50%);
    z-index: 1;
}

.store-wheel-segment span {
    position: absolute;
    left: 30px;
    top: -12px;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    font-size: 7px;
    letter-spacing: 1px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(15deg);
}

.store-wheel-segment.tone-coins span { border-color: #FFD700; color: #FFD700; box-shadow: 0 0 8px rgba(255, 215, 0, 0.3); }
.store-wheel-segment.tone-boost span { border-color: #00ff88; color: #00ff88; box-shadow: 0 0 8px rgba(0, 255, 136, 0.3); }
.store-wheel-segment.tone-case span { border-color: #ff0055; color: #ff0055; box-shadow: 0 0 8px rgba(255, 0, 85, 0.3); }
.store-wheel-segment.tone-pack span { border-color: #00ccff; color: #00ccff; box-shadow: 0 0 8px rgba(0, 204, 255, 0.3); }

.store-wheel-segment.is-winning span {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px #fff;
    transform: scale(1.2) rotate(15deg);
    z-index: 10;
}

.store-wheel-meta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.store-wheel-badge,
.store-wheel-last,
.store-wheel-result {
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #333;
    text-align: center;
}

.store-wheel-result {
    grid-column: 1 / -1;
}

.store-wheel-badge strong,
.store-wheel-last strong,
.store-wheel-result strong {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    color: #fff;
}

.store-wheel-badge span,
.store-wheel-last span,
.store-wheel-result span {
    font-size: 8px;
    color: #888;
}

.store-wheel-result.is-hot {
    border-color: #00ccff;
    background: rgba(0, 204, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.2);
}
.store-wheel-result.is-hot strong {
    color: #00ccff;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.store-wheel-loading {
    padding: 22px 14px;
    text-align: center;
    font-size: 8px;
    letter-spacing: 2px;
    color: #9fb3cc;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
    .store-hero-panel { grid-template-columns: 1fr; }
    .store-dashboard { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .store-systems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .store-showcase { gap: 18px; }

    .store-hero-copy,
    .store-spotlight-card,
    .store-toolbar,
    .store-system-card,
    .store-stat-card {
        box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.65), 6px 6px 0 rgba(0, 0, 0, 0.8);
    }

    .store-dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .store-filter-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .store-item-meta { flex-direction: column; }
    
    .store-main-title { font-size: 16px; }
    .store-spotlight-name { font-size: 13px; }

    .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .store-card-footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
    .store-dashboard { grid-template-columns: 1fr; }
    .store-filter-bar { grid-template-columns: 1fr; }
    .store-filter-btn { min-width: 0; width: 100%; }
    .store-grid { grid-template-columns: 1fr; }
}