/*
Theme Name: QuickQ VPN Theme
Theme URI: https://example.com/
Author: Antigravity
Author URI: https://example.com/
Description: A high-performance, SEO-optimized WordPress theme for QuickQ VPN, 100% replica of the provided UI.
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: quickqvpn
*/

:root {
    --primary-color: #6e4bf2;
    --primary-gradient: linear-gradient(135deg, #6e4bf2 0%, #9170ff 100%);
    --secondary-color: #2d2f3b;
    --text-main: #333333;
    --text-muted: #6b7280;
    --bg-light: #f8f9ff;
    --white: #ffffff;
    --border-radius: 12px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary-color);
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(110, 75, 242, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(110, 75, 242, 0.3);
}
