/* theme: style.css */
/*
Theme Name: PromptMarket Terminal
Theme URI: https://example.com/promptmarket
Author: Baseado em USER
Description: A WooCommerce-ready marketplace theme for AI master prompts. Retro terminal styling with gradient backgrounds, neon borders, and multicolored text.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: promptmarket
*/

/* Base Reset & Variables */
:root {
    --color-bg-start: #0a0a1a;
    --color-bg-end: #1a0a2e;
    --color-text: #e0e0e0;
    --color-accent-1: #00f2fe;
    --color-accent-2: #4facfe;
    --color-accent-3: #f093fb;
    --color-accent-4: #f5576c;
    --color-accent-5: #ff4b2b;
    --color-border-glow: #4facfe;
    --font-mono: 'Fira Code', 'JetBrains Mono', 'Courier New', monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --space: 16px;
    --radius: 8px;
    --max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4facfe;
    color: #000;
    padding: 8px;
    z-index: 100;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
