/*
Theme Name: VoxelMarket
Theme URI: https://github.com/david/voxelmarket
Author: Antigravity
Author URI: https://github.com/google-deepmind
Description: A premium, highly immersive, glassmorphic WordPress theme for 3D model marketplaces, styled similarly to CGTrader. Fully optimized for WooCommerce and Dokan multi-vendor marketplace.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voxelmarket
Tags: dark, grid-layout, custom-background, post-formats, translation-ready, ecommerce, two-columns
*/

/* ==========================================================================
   Global Variables & Reset
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-dark: #090d16;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 240, 255, 0.4);
  
  --primary-glow: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
  --accent-cyan: #00f0ff;
  --accent-purple: #8b5cf6;
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  
  --glow-shadow: 0 8px 32px 0 rgba(0, 240, 255, 0.15);
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--text-main);
  text-shadow: 0 0 8px var(--accent-cyan);
}
