/*
Theme Name: BlitzarRack
Theme URI: https://blitzarrack.com
Description: Custom WordPress theme for BlitzarRack - Premium 3D printed modular synthesizer solutions
Author: BlitzarRack Team
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: blitzarrack
Tags: e-commerce, woocommerce, modular-synth, custom

This theme requires WooCommerce plugin to be installed and activated.
*/

:root {
    --primary-color: #00ff41;
    --secondary-color: #39ff14;
    --dark-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --accent-gradient: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    --cyber-green: #00ff41;
    --neon-green: #39ff14;
    --dark-green: #003d1a;
}

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

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}
