/*
Theme Name: ImgsPrompt
Theme URI: https://example.com/imgsprompt
Author: ImgsPrompt Team
Author URI: https://example.com
Description: A premium, fast-loading, dark-mode AI Prompt Discovery Platform WordPress theme.
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: promptverse
Tags: dark, responsive, masonry, ajax, custom-post-type, ai, modern, minimal, gallery
*/

/* Reset & CSS Custom Properties */
:root {
    --color-bg: #0b0b0b;
    --color-surface: #161616;
    --color-surface-hover: #222222;
    --color-border: #262626;
    --color-text: #ffffff;
    --color-text-muted: #a3a3a3;
    --color-purple: #8b5cf6;
    --color-blue: #3b82f6;
    --color-success: #22c55e;
    --color-error: #ef4444;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.15);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}
