/* =========================================
   WSO CORE // CLEANER SYSTEM v1.2.2
   ========================================= */
:root {
    --wso-gold: #f5c518;
    --wso-black: #111;
    --wso-white: #fff;
    --wso-red: #ff4d4f;
    --wso-border: 3px solid #000;
    --wso-shadow: 0px 0px 0px transparent; /* REMOVED HARD SHADOW */
    --font-mono: 'Courier Prime', monospace;
    --font-sans: 'Inter', sans-serif;
}

/* 1. BOX CONTAINERS (COMPACT) */
.wso-core-box {
    border: var(--wso-border);
    background: var(--wso-white);
    padding: 20px; /* REDUCED PADDING */
    margin-bottom: 30px;
    box-shadow: none; /* FLAT DESIGN */
    position: relative;
    font-family: var(--font-sans);
}

/* QUOTE BOX (CLEANER) */
.wso-quote-box blockquote {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
}

/* 2. HERO STYLES (User Status) */
.wso-visitor-hero { text-align: center; }
.wso-glitch-text { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; line-height: 1; margin: 0 0 10px 0; }
.wso-mono { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* 3. STAT GRIDS (COMPACT) */
.wso-stat-grid { display: flex; justify-content: space-around; margin: 20px 0; border-top: 2px solid #eee; border-bottom: 2px solid #eee; padding: 15px 0; }
.stat-item { text-align: center; }
.stat-item .num { display: block; font-weight: 900; font-size: 1.3rem; }
.stat-item .lbl { font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; }

/* 4. BUTTONS */
.wso-btn { display: inline-block; padding: 12px 30px; font-weight: 800; text-transform: uppercase; text-decoration: none; border: var(--wso-border); color: #000; transition: 0.2s; }
.wso-btn.gold { background: var(--wso-gold); }
.wso-btn.full-width { display: block; width: 100%; text-align: center; box-sizing: border-box; }
.wso-btn:hover { transform: translateY(-2px); box-shadow: 4px 4px 0px #000; }

/* 5. EXPIRED FACE */
.wso-guilt-strip { background: #fff0f0; border: 2px solid #ff4d4f; color: #d63031; padding: 10px; font-weight: bold; text-align: center; margin-bottom: 20px; font-size: 0.9rem; }
.wso-assets-grid { display: flex; gap: 10px; margin-bottom: 20px; }
.asset-lock { flex: 1; border: 1px dashed #ccc; padding: 10px; text-align: center; background: #fafafa; opacity: 0.7; font-size: 0.8rem; }

/* 6. ACTIVE FACE (Compact Dashboard) */
.wso-active-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 3px solid #000; padding-bottom: 15px; margin-bottom: 20px; }
.wso-welcome { margin: 0; font-size: 1.4rem; font-weight: 900; }
.wso-dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.dash-btn { padding: 15px; border: 2px solid #000; text-decoration: none; color: #000; font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.2s; font-size: 0.8rem; }
.dash-btn:hover { background: #000; color: #fff; }
.dash-btn.gold { background: var(--wso-gold); }
.dash-btn .emoji { font-size: 1.5rem; margin-bottom: 5px; }

/* 7. LIVE TICKER */
.wso-live-ticker-wrap { background: #000; color: #0f0; font-family: var(--font-mono); padding: 10px; border: 1px solid #0f0; overflow: hidden; white-space: nowrap; margin-bottom: 20px; font-size: 0.8rem; }
.ticker-content { display: inline-block; animation: ticker 20s linear infinite; }
.ticker-item { margin-right: 40px; }
@keyframes ticker { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* 8. TODAY & TRENDING GRIDS (MODERN READABILITY) */
.wso-today-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 20px 0; }

.wso-prod-card { 
    border: 3px solid #000; 
    background: #fff; 
    padding: 25px; /* More internal breathing room */
    position: relative; 
    transition: transform 0.2s, box-shadow 0.2s; 
    text-align: center; 
}
.wso-prod-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0px #000; }

.prod-badge { 
    position: absolute; top: -12px; right: -10px; 
    background: var(--wso-gold); border: 2px solid #000; 
    padding: 4px 8px; font-weight: 900; font-size: 0.75rem; 
    box-shadow: 2px 2px 0px rgba(0,0,0,0.2); 
}

/* Removed Icons for Cleaner Look */
.prod-preview-icon { display: none; } 

.prod-title { 
    margin: 10px 0 15px 0; 
    font-size: 1.3rem; /* BIGGER */
    line-height: 1.3; 
    color: #000;
}
.prod-title a { 
    text-decoration: none; color: #000; font-weight: 800; 
    font-family: var(--font-sans); /* READABLE FONT */
}

.prod-meta { 
    font-family: var(--font-sans); /* READABLE FONT */
    font-weight: 600;
    font-size: 0.85rem; 
    color: #444; 
    border-top: 2px solid #eee; 
    padding-top: 10px; 
    display: flex; justify-content: space-between; 
}

/* 9. PLUGIN UPDATES LIST */
.wso-plugin-list { background: #f4f4f5; border: var(--wso-border); padding: 20px; font-family: var(--font-mono); max-width: 800px; }
.plugin-row { display: flex; align-items: center; border-bottom: 1px dashed #ccc; padding: 8px 0; font-size: 0.9rem; }
.plugin-row:last-child { border-bottom: none; }
.plugin-row .status { background: #000; color: #0f0; padding: 2px 6px; font-weight: bold; font-size: 0.7rem; margin-right: 15px; text-transform: uppercase; }
.plugin-row .name { font-weight: 700; color: #333; }

/* 10. BOOK SHELF */
.wso-book-shelf { display: flex; flex-wrap: wrap; gap: 30px; padding: 20px 0; }
.book-item { width: 140px; display: flex; flex-direction: column; text-decoration: none; color: #000; transition: transform 0.2s; }
.book-item img { width: 100%; height: 210px; object-fit: cover; border: 3px solid #000; box-shadow: 5px 5px 0px #000; margin-bottom: 12px; transition: all 0.2s; }
.book-item:hover { transform: translateY(-5px); }
.book-item:hover img { box-shadow: 9px 9px 0px #000; border-color: var(--wso-gold); }
.book-title { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700; text-align: center; line-height: 1.3; text-transform: uppercase; }