/* Modern & Premium Design System */
:root {
    /* Color Palette - Dark & Vibrant */
    --color-bg: #0a0a0c;
    --color-surface: #121216;
    --color-surface-translucent: rgba(18, 18, 22, 0.7);
    --color-primary: #8a2be2;
    /* Blue Violet */
    --color-secondary: #00ffff;
    /* Cyan */
    --color-accent: #ff00ff;
    /* Magenta */
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.3);
    --glass-blur: blur(12px);
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
    color: white;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, rgba(10, 10, 12, 0) 70%);
}

#hero h2 {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, var(--color-text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
}

section h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Works & Games Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.card h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.card p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.card-thumbnail {
    width: 100%;
    height: 180px;
    background: #000;
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

/* Music Section */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

/* Footer */
footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    #hero h2 {
        font-size: 2.5rem;
    }

    nav {
        display: none;
        /* Mobile menu implementation usually needed here */
    }
}