/*
Theme Name: WEKKZ Gaming & Entertainment
Theme URI: https://wekkz.com
Author: AI Collaborator
Description: A dark, electrifying theme designed for static gaming pages, inspired by the WEKKZ wolf mascot.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: wekkz
*/

:root {
    --bg-dark: #0b0c10;
    --bg-card: #1f2833;
    --electric-blue: #00d2ff;
    --neon-glow: #005f73;
    --text-main: #c5c6c7;
    --text-bright: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(180s, rgba(0,0,0,0.85) 0%, rgba(11,12,16,1) 100%);
    border-bottom: 2px solid var(--electric-blue);
    padding: 20px 0;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h1 a {
    color: var(--text-bright);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--electric-blue);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 8px var(--electric-blue);
}

.main-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 70vh;
}

.static-page-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 210, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

h1, h2, h3 {
    color: var(--text-bright);
    text-transform: uppercase;
}

.static-page-card h1 {
    border-left: 4px solid var(--electric-blue);
    padding-left: 15px;
    margin-top: 0;
}

footer {
    background-color: #050508;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    margin: 0;
    color: #666;
}