:root {
    --bg-color: #0f1015;
    --card-bg: #181a20;
    --text-color: #e4e4e7;
    --text-muted: #a1a1aa;
    --accent-color: #e50914; /* Kino-Rot */
    --accent-hover: #f6121d;
    --border-color: #27272a;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header.site-header {
    background: rgba(15, 16, 21, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-color);
}

/* Main Content Area */
main.container {
    flex: 1;
    padding: 40px 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #181a20 0%, #0f1015 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Produkt-Grid für Affiliate Artikel */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.product-img {
    height: 200px;
    background-color: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.btn-amazon {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-amazon:hover {
    background-color: var(--accent-hover);
}

/* Rechtliche & Inhalts-Seiten */
.content-section {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 10px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.content-section p, .content-section ul {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer nav {
    margin-top: 15px;
}

footer nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

footer nav a:hover {
    color: #fff;
}

.affiliate-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Dropdown-Menü Styling */
.main-nav ul {
    position: relative;
}

.main-nav li.dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    z-index: 1001;
    flex-direction: column;
    gap: 0;
}

.main-nav li.dropdown:hover .dropdown-menu {
    display: flex;
}

.main-nav .dropdown-menu li {
    width: 100%;
}

.main-nav .dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.main-nav .dropdown-menu a:hover {
    background-color: rgba(229, 9, 20, 0.1);
    color: var(--accent-color);
}