:root {
    --primary: #2563eb;
    --secondary: #f59e0b;
    --accent: #10b981;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
}

/* Hero */
.hero-section {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(16,185,129,0.15));
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.hero-section h1 {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}
.breadcrumb {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { color: var(--secondary); }

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

/* Section blocks */
.section {
    padding: 4rem 0;
}
.block {
    background: var(--dark-card);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}
.block img, .block video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}
.block.reverse img, .block.reverse video { order: 2; }
.block.reverse .info { order: 1; }

h2, h3 {
    font-family: 'Lora', serif;
    margin-bottom: 1rem;
}
p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Lists */
ul { list-style: none; margin-top: 1rem; }
ul li {
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}
ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Footer */
footer {
    background: #1e293b;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}
footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media(max-width: 768px) {
    .block { grid-template-columns: 1fr; padding: 1.5rem; }
    .block.reverse img, .block.reverse video { order: initial; }
}