/*
Theme Name: Wetten EU Theme
Theme URI: https://wetten-eu.com
Description: Custom performance-optimized theme for wetten-eu.com with kemoku integration
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.3
Author: Dennis Philippus
Text Domain: wetten-eu
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ========================================
   CSS Variables - EU Inspired Color Scheme
   ======================================== */
:root {
    /* EU Inspired Colors - WCAG Compliant */
    --color-primary: #003399; /* EU Blue - AAA contrast on white */
    --color-secondary: #0066cc; /* EU Light Blue - AA contrast on white */
    --color-accent: #ffcc00; /* EU Yellow - AAA contrast on dark backgrounds */
    --color-dark: #1a1a1a; /* Dark Gray - Better readability than pure black */
    --color-light: #f8f9fa; /* Light Gray - WCAG compliant background */
    --color-white: #ffffff;
    --color-text: #212529; /* Dark text - AAA contrast on light backgrounds */
    --color-text-light: #f8f9fa; /* Light text - AAA contrast on dark backgrounds */
    --color-success: #28a745; /* Success green - AA contrast */
    --color-warning: #ffc107; /* Warning yellow - AA contrast */
    --color-danger: #dc3545; /* Danger red - AA contrast */
    --color-info: #17a2b8; /* Info cyan - AA contrast */

    /* EU Gradient Colors */
    --eu-gradient-start: #003399;
    --eu-gradient-mid: #0066cc;
    --eu-gradient-end: #ffcc00;

    /* Kemoku Plugin Colors - EU Adapted */
    --kemoku-primary: var(--color-primary);
    --kemoku-secondary: var(--color-secondary);
    --kemoku-accent: var(--color-accent);
    --kemoku-dark: var(--color-dark);

    /* Typography */
    --font-primary:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    --font-heading: "Helvetica Neue", Arial, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition: all 0.3s ease;

    /* WCAG Compliant Color Combinations */
    --text-on-primary: var(--color-white); /* AAA contrast */
    --text-on-secondary: var(--color-white); /* AAA contrast */
    --text-on-accent: var(--color-dark); /* AAA contrast */
    --text-on-light: var(--color-text); /* AAA contrast */
    --text-on-white: var(--color-text); /* AAA contrast */
    --text-on-dark: var(--color-text-light); /* AAA contrast */
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(180deg, #003399 0%, #001a4d 50%, #000d26 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Modern Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ========================================
   Container & Layout
   ======================================== */
.site-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Mobile: weniger Rand für mehr Content-Breite */
@media (max-width: 768px) {
    .site-container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .site-container {
        padding: 0 12px;
    }
}

.content-wrapper {
    display: block;
    position: relative;
}

/* Subtle Decorative Background */
.content-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(0, 51, 153, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.content-wrapper::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(255, 204, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}
h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: #ffcc00;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: var(--transition);
}

a:hover {
    color: #ffe066;
    text-decoration-thickness: 2px;
}

/* Content Links */
.entry-content a {
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.entry-content a:hover {
    color: var(--color-primary);
}

/* Content Text */
.entry-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.entry-content p,
.entry-content li {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Modern Content Card Design - Dark Theme
   ======================================== */
.site-main {
    padding: var(--spacing-lg) 0;
}

.site-main > article,
.front-page-content,
.single-post-content {
    background: rgba(0, 26, 77, 0.4);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* H1 Title Styling */
.entry-title,
.site-main h1.entry-title {
    font-size: 2.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
    position: relative;
}

/* Modern H2 Styling */
.entry-content h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin: 2.5rem 0 1.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--color-accent);
    position: relative;
}

/* Modern H3 Styling */
.entry-content h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 2rem 0 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.entry-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

/* Paragraph Styling */
.entry-content p {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* List Styling */
.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 0;
}

.entry-content ul li,
.entry-content ol li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    list-style: none;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-accent), #ffe066);
    border-radius: 50%;
}

.entry-content ol {
    counter-reset: item;
}

.entry-content ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquote */
.entry-content blockquote {
    background: rgba(0, 51, 153, 0.3);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.5;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Strong / Bold Text */
.entry-content strong {
    color: #ffffff;
    font-weight: 700;
}

/* Inline Links */
.entry-content a {
    color: #ffcc00;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(180deg, transparent 65%, rgba(255, 204, 0, 0.3) 65%);
    transition: all 0.2s ease;
}

.entry-content a:hover {
    background: linear-gradient(180deg, transparent 65%, rgba(255, 204, 0, 0.5) 65%);
    color: #ffe066;
}

/* Links ohne Unterstreichung in bestimmten Bereichen */
.site-logo a,
.site-title a,
.post-card a,
.post-card-title a,
.post-card-link,
.archive-card a,
.archive-card-title a,
.archive-card-link,
.related-post-card a,
.related-post-title a,
.related-post-link,
.site-footer a,
.footer-navigation a,
.breadcrumbs a,
.yoast-breadcrumbs a,
#breadcrumbs a {
    text-decoration: none;
}

/* ========================================
   Header
   ======================================== */
.site-header {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        #001a4d 50%,
        var(--color-secondary) 100%
    );
    border-bottom: 3px solid var(--color-accent);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.site-header .site-container {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

body {
    padding-top: 80px;
}

/* Header Scroll Effect */
.site-header.scrolled {
    background: rgba(0, 51, 153, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Breadcrumbs
   ======================================== */
.breadcrumbs {
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: #ffcc00;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: #ffe066;
}

/* Yoast Breadcrumbs - Inside Content Box */
.breadcrumbs-inside {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumbs-inside .yoast-breadcrumbs,
.breadcrumbs-inside #breadcrumbs {
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-inside .yoast-breadcrumbs a,
.breadcrumbs-inside #breadcrumbs a {
    color: #ffcc00;
}

.breadcrumbs-inside .yoast-breadcrumbs a:hover,
.breadcrumbs-inside #breadcrumbs a:hover {
    color: #ffe066;
}

.yoast-breadcrumbs,
#breadcrumbs {
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.yoast-breadcrumbs a,
#breadcrumbs a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
    background: none !important;
}

.yoast-breadcrumbs a:hover,
#breadcrumbs a:hover {
    color: #ffe066;
    text-decoration: underline;
}

.yoast-breadcrumbs span,
#breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-title a {
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-title a:hover {
    color: var(--color-accent);
}

/* Custom Logo */
.site-logo img,
.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* SVG Logo */
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.wetten-eu-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-logo a:hover .wetten-eu-logo {
    transform: scale(1.02);
    filter: drop-shadow(0 2px 8px rgba(255, 204, 0, 0.3));
}

@media (max-width: 768px) {
    .wetten-eu-logo {
        height: 38px;
    }
}

/* ========================================
   Navigation
   ======================================== */
.main-navigation {
    position: relative;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation > ul > li {
    position: relative;
}

/* Modern EU Button Style Navigation */
.main-navigation a {
    color: var(--color-white);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect - only for non-dropdown items */
.main-navigation > ul > li:not(.menu-item-has-children) > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.main-navigation > ul > li:not(.menu-item-has-children) > a:hover::before {
    left: 100%;
}

/* Hover State - Gold Accent */
.main-navigation > ul > li > a:hover,
.main-navigation > ul > li:hover > a,
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-parent > a {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 204, 0, 0.1) 100%);
    border-color: rgba(255, 204, 0, 0.4);
    color: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

/* Active/Current Page - Gold highlight */
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-parent > a {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.25) 0%, rgba(255, 204, 0, 0.15) 100%);
    border-color: rgba(255, 204, 0, 0.5);
}

/* Submenu Dropdown Styles - Modern EU Design */
.main-navigation ul ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(180deg, #001a4d 0%, #000d26 100%);
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 204, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

/* Gold accent line at top */
.main-navigation ul ul::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    border-radius: 0 0 3px 3px;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-navigation ul ul li {
    position: relative;
}

.main-navigation ul ul a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}

.main-navigation ul ul a:hover {
    background: rgba(255, 204, 0, 0.12);
    color: #ffcc00;
    border-color: rgba(255, 204, 0, 0.25);
    transform: translateX(4px);
}

/* Third level submenu */
.main-navigation ul ul ul {
    top: -12px;
    left: calc(100% + 8px);
    transform: translateX(0) translateY(10px);
}

.main-navigation ul ul li:hover > ul {
    transform: translateX(0) translateY(0);
}

/* Submenu arrow indicator - Modern Chevron */
.main-navigation > ul > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 4px;
    border: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
}

.main-navigation > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg) translateY(0);
}

.main-navigation ul ul li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: auto;
    border: none;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 204, 0, 0.5);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    box-shadow: none;
    z-index: 1001;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--color-accent);
    outline: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle:hover span {
    background-color: var(--color-accent);
}

/* Hamburger to X Animation */
.menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Close Button - Hidden by default */
.menu-close {
    display: none;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }

    .site-branding {
        position: relative;
    }

    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #003399 0%, #001a4d 100%) !important;
        padding: 100px 0 0 0 !important;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999 !important;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .main-navigation.is-open {
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Mobile Menu Close Button - FIXED position at top right */
    .main-navigation .menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 204, 0, 0.5);
        border-radius: 12px;
        color: #ffffff;
        cursor: pointer;
        z-index: 10002;
        transition: all 0.2s ease;
    }

    .main-navigation .menu-close:hover,
    .main-navigation .menu-close:focus {
        background: rgba(255, 204, 0, 0.25);
        border-color: #ffcc00;
        color: #ffcc00;
        outline: none;
    }

    .main-navigation .menu-close svg {
        width: 26px;
        height: 26px;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: var(--spacing-md) var(--spacing-lg);
        gap: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .main-navigation > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .main-navigation a {
        padding: 16px 20px;
        border-radius: 8px;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .main-navigation > ul > li > a:hover,
    .main-navigation > ul > li:hover > a {
        background: rgba(255, 204, 0, 0.15);
        color: var(--color-accent);
    }

    /* Mobile Submenu */
    .main-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        min-width: 100%;
        width: 100%;
        border-radius: 8px;
        padding: 8px 16px;
        margin: 8px 0;
        border: none;
        display: none;
    }

    .main-navigation ul li.menu-item-has-children.is-open > ul {
        display: block;
    }

    .main-navigation ul ul li {
        border: none;
        width: 100%;
    }

    .main-navigation ul ul a {
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }

    .main-navigation ul ul a:hover {
        background: rgba(255, 204, 0, 0.1);
        color: var(--color-accent);
    }

    /* Reset any negative margins or transforms on mobile */
    .main-navigation ul,
    .main-navigation ul ul,
    .main-navigation li,
    .main-navigation a {
        margin-left: 0 !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
    }

    /* Dropdown Arrow */
    .main-navigation > ul > li.menu-item-has-children > a::after {
        content: '';
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-left: auto;
        position: static;
    }

    .main-navigation > ul > li.menu-item-has-children.is-open > a::after {
        transform: rotate(-135deg);
    }
}

/* ========================================
   Content
   ======================================== */
.site-main {
    padding: var(--spacing-lg) 0;
}

/* Main Content Card */
.site-main > .site-container > article,
.site-main > .site-container > .page,
.site-main > .site-container > .post {
    background: rgba(0, 26, 77, 0.4);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.entry-content {
    margin-top: var(--spacing-md);
}

.entry-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.entry-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 2px;
}

.entry-title {
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 2.25rem;
    letter-spacing: -0.02em;
}

.entry-meta {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    align-items: center;
}

.entry-meta a {
    color: #ffcc00;
    font-weight: 500;
}

.entry-meta a:hover {
    color: #ffe066;
}

.entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Posts & Pages
   ======================================== */
.post,
.page {
    margin-bottom: var(--spacing-xl);
}

.post-thumbnail {
    margin-bottom: var(--spacing-md);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.widget {
    margin-bottom: var(--spacing-md);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: var(--spacing-xs);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: linear-gradient(180deg, #0a0f1a 0%, #1a1a2e 100%);
    color: #e8e8e8;
    padding: 0;
    margin-top: var(--spacing-xl);
    border-top: 4px solid var(--color-accent);
}

.footer-main {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .footer-logo {
    max-height: 50px;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: #a0a0a0;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-section ul li a::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.2s ease;
}

.footer-section ul li a:hover::before {
    width: 12px;
}

/* Footer Navigation (WordPress widget) */
.footer-navigation ul,
.site-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm) var(--spacing-md);
}

.footer-navigation ul li,
.site-footer .menu li {
    margin: 0;
}

.footer-navigation ul li a,
.site-footer .menu li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.footer-navigation ul li a:hover,
.site-footer .menu li a:hover {
    color: var(--color-accent);
}

/* Footer Disclaimer / Warning */
.footer-disclaimer {
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    padding: var(--spacing-md) 0;
}

.footer-disclaimer .site-container {
    text-align: center;
}

.footer-disclaimer p,
.site-footer .disclaimer {
    color: #c0c0c0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--color-accent);
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-sm) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-copyright {
    color: #808080;
    font-size: 0.875rem;
}

.footer-copyright a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--color-white);
}

/* Legacy Footer Support */
.site-footer p,
.site-footer .disclaimer {
    color: #c0c0c0;
}

.site-footer a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--color-white);
}

.site-footer > .site-container {
    padding: var(--spacing-lg) var(--spacing-md);
}

.site-footer > .site-container > p {
    margin-bottom: var(--spacing-sm);
}

/* Simple Footer Fallback */
.site-footer:not(:has(.footer-main)) {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.site-footer:not(:has(.footer-main)) ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm) var(--spacing-md);
}

.site-footer:not(:has(.footer-main)) ul li {
    margin: 0;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-section h4 {
        display: block;
    }

    .footer-section ul li a::before {
        display: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn,
button,
input[type="submit"] {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: var(--text-on-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 33, 153, 0.25);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    background: linear-gradient(
        135deg,
        var(--color-secondary) 0%,
        var(--color-primary) 100%
    );
    color: var(--text-on-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #e6b800 100%);
    color: var(--text-on-accent);
}

.btn-secondary:hover {
    background: linear-gradient(
        135deg,
        var(--color-secondary) 0%,
        var(--color-primary) 100%
    );
    color: var(--text-on-secondary);
}

/* ========================================
   Front Page
   ======================================== */
.front-page-content {
    margin-bottom: var(--spacing-xl);
}

.hero-image {
    margin-bottom: var(--spacing-lg);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.front-page-posts {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 2px solid var(--color-light);
}

.front-page-posts h2 {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.post-card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 51, 153, 0.06);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.12);
    border-color: rgba(0, 51, 153, 0.15);
}

.post-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.08);
}

.post-card-content {
    padding: var(--spacing-md);
}

.post-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    line-height: 1.35;
}

.post-card-title a {
    color: var(--color-dark);
}

.post-card-title a:hover {
    color: var(--color-primary);
}

.post-card-excerpt {
    color: #555;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 0.9rem;
}

.post-card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.post-card-link:hover {
    color: var(--color-secondary);
    gap: 8px;
}

.front-page-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   Author Bio
   ======================================== */
.author-bio {
    background: rgba(0, 51, 153, 0.3);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin: var(--spacing-xl) 0;
    display: flex;
    gap: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-bio img {
    border-radius: 50%;
    border: 2px solid rgba(255, 204, 0, 0.5);
}

.author-bio h3 {
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.author-bio p {
    color: rgba(255, 255, 255, 0.9);
}

.author-info h4 {
    color: #ffcc00;
    margin-bottom: var(--spacing-xs);
}

.author-info p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Author Bio Responsive */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .author-bio img {
        width: 100px;
        height: 100px;
        min-width: 100px;
    }

    .author-info {
        width: 100%;
    }

    .author-info h4 {
        font-size: 1.25rem;
        color: #ffcc00;
    }

    .author-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
    }
}

/* ========================================
   Post Navigation
   ======================================== */
.post-navigation,
.posts-navigation {
    margin: var(--spacing-xl) 0;
}

.post-navigation .nav-links,
.posts-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.post-navigation a,
.posts-navigation a {
    flex: 1;
    padding: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: 8px;
    transition: var(--transition);
}

.post-navigation a:hover,
.posts-navigation a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: var(--spacing-xs);
}

.post-navigation a:hover .nav-subtitle {
    color: var(--color-white);
}

/* ========================================
   Pagination - EU Design
   ======================================== */
.pagination-nav {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.pagination-item {
    margin: 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 204, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
    color: #ffcc00;
    transform: translateY(-2px);
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
    border-color: #ffcc00;
    color: #001a4d;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.08);
}

.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
    background: rgba(255, 204, 0, 0.15);
}

.pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    transform: none;
    background: transparent;
}

/* Mobile Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 6px;
    }

    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .pagination .page-numbers.prev,
    .pagination .page-numbers.next {
        padding: 0 14px;
    }
}

/* ========================================
   Comments
   ======================================== */
.comments-area {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--color-light);
}

.comments-title {
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--color-light);
    border-radius: 8px;
}

.comment-author {
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.comment-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: var(--spacing-sm);
}

.comment-form {
    margin-top: var(--spacing-lg);
}

.comment-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--color-light);
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* ========================================
   Search Form
   ======================================== */
.search-form {
    display: flex;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.search-form .search-field {
    flex: 1;
    padding: var(--spacing-sm);
    border: 2px solid var(--color-light);
    border-radius: 4px;
    font-family: var(--font-primary);
}

.search-form .search-submit {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-form .search-submit:hover {
    background-color: var(--color-secondary);
}

/* ========================================
   Related Posts
   ======================================== */
.related-posts {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xl);
    background: linear-gradient(145deg, #003399 0%, #001a4d 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.related-posts-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.related-posts-title span {
    color: #ffcc00;
    font-weight: 700;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.related-post-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.related-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 204, 0, 0.3);
}

.related-post-image {
    display: block;
    overflow: hidden;
    background-color: var(--color-light);
    aspect-ratio: 16/10;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.08);
}

.related-post-content {
    padding: var(--spacing-md);
}

.related-post-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.35;
    font-weight: 600;
}

.related-post-title a {
    color: #ffffff !important;
    text-decoration: none;
}

.related-post-title a:hover {
    color: #ffcc00 !important;
}

.related-post-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: var(--spacing-sm);
}

.related-post-meta time {
    color: rgba(255, 255, 255, 0.6) !important;
}

.related-post-excerpt {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 0.9rem;
}

.related-post-link {
    color: #ffcc00 !important;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.related-post-link:hover {
    color: #ffe066 !important;
    gap: 8px;
}

/* ========================================
   Archive / Category Pages
   ======================================== */
.archive-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.archive-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--spacing-sm);
}

.archive-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.site-main .archive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.archive-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 204, 0, 0.3);
}

.archive-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.archive-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.05);
}

.archive-card-content {
    padding: var(--spacing-md);
}

.archive-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: var(--spacing-xs);
}

.archive-card-title a {
    color: #ffffff !important;
    text-decoration: none;
}

.archive-card-title a:hover {
    color: #ffcc00 !important;
}

.archive-card-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: var(--spacing-sm);
}

.archive-card-meta time {
    color: rgba(255, 255, 255, 0.6) !important;
}

.archive-card-excerpt {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.archive-card-link {
    color: #ffcc00 !important;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.archive-card-link:hover {
    color: #ffe066 !important;
    gap: 8px;
}

/* Time elements for all cards - light color for dark theme */
.related-posts .related-post-card time,
.related-post-meta time,
.archive-card time,
.archive-card-meta time,
.entry-content time,
.entry-meta time,
.content-box time,
.content-box .entry-meta,
article.type-post .entry-meta,
article.type-page .entry-meta {
    color: rgba(255, 255, 255, 0.7) !important;
}

.entry-meta span,
.content-box .entry-meta span {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Latest Posts Block (Blue Cards)
   ======================================== */
.wp-block-wetten-eu-latest-posts-by-category {
    margin: var(--spacing-lg) 0;
}

.wetten-eu-posts-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 12px;
}

.wetten-eu-posts-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ffd633);
    border-radius: 2px;
}

.wetten-eu-posts-grid {
    display: grid;
    gap: 24px;
}

.wetten-eu-post-card {
    background: linear-gradient(180deg, #001a4d 0%, #000d26 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
}

.wetten-eu-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 204, 0, 0.4);
}

.wetten-eu-post-thumbnail {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.wetten-eu-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wetten-eu-post-card:hover .wetten-eu-post-thumbnail img {
    transform: scale(1.05);
}

.wetten-eu-post-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffcc00;
    color: #000d26 !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    z-index: 10;
}

.wetten-eu-post-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wetten-eu-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
}

.wetten-eu-post-title a {
    color: #ffffff !important;
    text-decoration: none;
}

.wetten-eu-post-title a:hover {
    color: #ffcc00 !important;
}

/* Date/Meta in blue cards - MUST be light */
.wetten-eu-post-meta {
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.wetten-eu-post-meta time,
.wetten-eu-post-card time,
.wetten-eu-post-meta {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Calendar icon */
.wetten-eu-post-meta::before {
    content: "📅";
    font-size: 0.875rem;
}

.wetten-eu-post-excerpt {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.wetten-eu-post-read-more {
    background: #ffcc00;
    color: #000d26 !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none !important;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    margin-top: auto;
}

.wetten-eu-post-read-more:visited {
    color: #000d26 !important;
    background: #ffcc00;
}

.wetten-eu-post-read-more:hover {
    background: #ffe066;
    color: #000d26 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .wetten-eu-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .wetten-eu-posts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   Frontpage Sections (Dark Background)
   NUR aktiv wenn body.frontpage-dark-mode
   ======================================== */

/* Reset all text colors for frontpage dark mode */
body.frontpage-dark-mode .frontpage-main,
body.frontpage-dark-mode .frontpage-main p,
body.frontpage-dark-mode .frontpage-main span,
body.frontpage-dark-mode .frontpage-main div,
body.frontpage-dark-mode .frontpage-main li {
    color: rgba(255, 255, 255, 0.9);
}

body.frontpage-dark-mode .frontpage-main h1,
body.frontpage-dark-mode .frontpage-main h2,
body.frontpage-dark-mode .frontpage-main h3,
body.frontpage-dark-mode .frontpage-main h4,
body.frontpage-dark-mode .frontpage-main h5,
body.frontpage-dark-mode .frontpage-main h6 {
    color: #ffffff;
}

body.frontpage-dark-mode .frontpage-main a {
    color: #ffcc00;
}

body.frontpage-dark-mode .frontpage-main a:hover {
    color: #ffe066;
}

body.frontpage-dark-mode .frontpage-main {
    padding: 0;
}

body.frontpage-dark-mode .frontpage-section {
    padding: var(--spacing-xl) 0;
}

body.frontpage-dark-mode .frontpage-section:first-child {
    padding-top: var(--spacing-lg);
}

/* Section Title */
body.frontpage-dark-mode .frontpage-section__title {
    color: #ffffff !important;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-left: 16px;
}

body.frontpage-dark-mode .frontpage-section__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffcc00, #ffd633);
    border-radius: 2px;
}

/* ===== News Grid Section ===== */
body.frontpage-dark-mode .frontpage-news-grid {
    display: grid;
    gap: 24px;
}

body.frontpage-dark-mode .frontpage-news-card {
    background: linear-gradient(180deg, #001a4d 0%, #000d26 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.15);
    display: flex;
    flex-direction: column;
}

body.frontpage-dark-mode .frontpage-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 204, 0, 0.4);
}

body.frontpage-dark-mode .frontpage-news-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

body.frontpage-dark-mode .frontpage-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

body.frontpage-dark-mode .frontpage-news-card:hover .frontpage-news-card__image img {
    transform: scale(1.05);
}

body.frontpage-dark-mode .frontpage-news-card__content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

body.frontpage-dark-mode .frontpage-news-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
}

body.frontpage-dark-mode .frontpage-news-card__title a {
    color: #ffffff !important;
    text-decoration: none;
}

body.frontpage-dark-mode .frontpage-news-card__title a:hover {
    color: #ffcc00 !important;
}

body.frontpage-dark-mode .frontpage-news-card__meta {
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6) !important;
}

body.frontpage-dark-mode .frontpage-news-card__meta time {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.frontpage-dark-mode .frontpage-news-card__meta::before {
    content: "\01F4C5";
    font-size: 0.875rem;
}

body.frontpage-dark-mode .frontpage-news-card__link {
    background: #ffcc00;
    color: #000d26 !important;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none !important;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    margin-top: auto;
}

body.frontpage-dark-mode .frontpage-news-card__link:visited {
    color: #000d26 !important;
    background: #ffcc00;
}

body.frontpage-dark-mode .frontpage-news-card__link:hover {
    background: #ffe066;
    color: #000d26 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

/* ===== Text Block Section ===== */
body.frontpage-dark-mode .frontpage-text-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.frontpage-dark-mode .frontpage-text-block,
body.frontpage-dark-mode .frontpage-text-block p,
body.frontpage-dark-mode .frontpage-text-block li {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
}

body.frontpage-dark-mode .frontpage-text-block h2,
body.frontpage-dark-mode .frontpage-text-block h3,
body.frontpage-dark-mode .frontpage-text-block h4 {
    color: #ffffff !important;
    margin-bottom: var(--spacing-sm);
}

body.frontpage-dark-mode .frontpage-text-block a {
    color: #ffcc00 !important;
}

body.frontpage-dark-mode .frontpage-text-block a:hover {
    color: #ffe066 !important;
}

/* ===== Anbieter Table in Frontpage ===== */
body.frontpage-dark-mode .frontpage-section--anbieter_table .sb-listing-wrapper {
    background: transparent !important;
}

body.frontpage-dark-mode .frontpage-section--anbieter_table .sb-wrapper {
    background: transparent !important;
    padding: 0 !important;
}

/* ===== Fallback Content ===== */
body.frontpage-dark-mode .frontpage-fallback-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.frontpage-dark-mode .frontpage-fallback-content,
body.frontpage-dark-mode .frontpage-fallback-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.frontpage-dark-mode .frontpage-fallback-content h1,
body.frontpage-dark-mode .frontpage-fallback-content h2,
body.frontpage-dark-mode .frontpage-fallback-content h3 {
    color: #ffffff !important;
}

/* ===== Hero Section ===== */
body.frontpage-dark-mode .frontpage-hero {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 51, 153, 0.3) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
}

body.frontpage-dark-mode .frontpage-hero__content {
    max-width: 900px;
    margin: 0 auto;
}

body.frontpage-dark-mode .frontpage-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 var(--spacing-sm);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.frontpage-dark-mode .frontpage-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffcc00 !important;
    font-weight: 600;
    margin: 0 0 var(--spacing-md);
    letter-spacing: 0.5px;
}

body.frontpage-dark-mode .frontpage-hero__text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

body.frontpage-dark-mode .frontpage-hero__text p {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0 var(--spacing-sm);
}

body.frontpage-dark-mode .frontpage-hero__text p:last-child {
    margin-bottom: 0;
}

body.frontpage-dark-mode .frontpage-hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

body.frontpage-dark-mode .frontpage-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 30px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

body.frontpage-dark-mode .frontpage-hero__badge:hover {
    background: rgba(255, 204, 0, 0.15);
    border-color: rgba(255, 204, 0, 0.5);
    transform: translateY(-2px);
}

body.frontpage-dark-mode .frontpage-hero__badge-icon {
    width: 18px;
    height: 18px;
    color: #ffcc00;
    flex-shrink: 0;
}

/* ===== Featured Provider Hero ===== */
.featured-provider-hero {
    position: relative;
    padding: 60px 0;
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
}

.featured-provider-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #001a4d 0%, #003399 50%, #001a4d 100%);
    z-index: 0;
}

.featured-provider-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 204, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 51, 153, 0.3) 0%, transparent 50%);
}

.featured-provider-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.featured-provider-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
}

.featured-provider-hero__badge-icon {
    font-size: 18px;
}

.featured-provider-hero__main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
    background: rgba(0, 26, 77, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-provider-hero__logo-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.featured-provider-hero__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.featured-provider-hero__rating {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.5);
    border: 3px solid #ffffff;
}

.featured-provider-hero__rating-value {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.featured-provider-hero__rating-max {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
}

.featured-provider-hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.featured-provider-hero__name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.featured-provider-hero__bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-provider-hero__bonus-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-provider-hero__bonus-value {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffcc00;
}

.featured-provider-hero__code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-provider-hero__code-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.featured-provider-hero__code-value {
    background: rgba(255, 204, 0, 0.15);
    border: 1px dashed rgba(255, 204, 0, 0.5);
    color: #ffcc00;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 15px;
    font-weight: 600;
}

.featured-provider-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.featured-provider-hero__feature {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-provider-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
}

.featured-provider-hero__button {
    display: block;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.featured-provider-hero__button--primary {
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
}

.featured-provider-hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.5);
}

.featured-provider-hero__button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-provider-hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Featured Provider Hero - Responsive */
@media (max-width: 992px) {
    .featured-provider-hero__main {
        grid-template-columns: auto 1fr;
        gap: var(--spacing-lg);
    }

    .featured-provider-hero__cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }

    .featured-provider-hero__logo-wrap {
        width: 140px;
        height: 140px;
    }

    .featured-provider-hero__rating {
        width: 54px;
        height: 54px;
        top: -10px;
        right: -10px;
    }

    .featured-provider-hero__rating-value {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .featured-provider-hero {
        padding: 40px 0;
    }

    .featured-provider-hero__main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .featured-provider-hero__logo-wrap {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .featured-provider-hero__info {
        align-items: center;
    }

    .featured-provider-hero__features {
        justify-content: center;
    }

    .featured-provider-hero__cta {
        flex-direction: column;
        width: 100%;
    }

    .featured-provider-hero__button {
        width: 100%;
    }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    body.frontpage-dark-mode .frontpage-news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    body.frontpage-dark-mode .frontpage-section__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    body.frontpage-dark-mode .frontpage-hero {
        padding: var(--spacing-lg) 0;
    }

    body.frontpage-dark-mode .frontpage-hero__badges {
        gap: var(--spacing-sm);
    }

    body.frontpage-dark-mode .frontpage-hero__badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    body.frontpage-dark-mode .frontpage-news-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    body.frontpage-dark-mode .frontpage-news-card {
        border-radius: 12px;
    }

    body.frontpage-dark-mode .frontpage-news-card__content {
        padding: var(--spacing-sm);
    }

    body.frontpage-dark-mode .frontpage-news-card__title {
        font-size: 1rem;
    }

    body.frontpage-dark-mode .frontpage-news-card__link {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }

    body.frontpage-dark-mode .frontpage-section {
        padding: var(--spacing-md) 0;
    }

    body.frontpage-dark-mode .frontpage-section__title {
        font-size: 1.25rem;
        padding-left: 12px;
    }

    body.frontpage-dark-mode .frontpage-hero__badges {
        flex-direction: column;
        align-items: center;
    }

    body.frontpage-dark-mode .frontpage-hero__badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    body.frontpage-dark-mode .frontpage-text-block {
        padding: var(--spacing-md);
        border-radius: 12px;
    }
}

/* ========================================
   Kemoku Plugin Styles - EU Design
   Nur Hero + Tabelle (table-payments)
   ======================================== */

/* === VARIABLEN === */
.sb-wrapper,
.sb-hero {
    --kmk-bg: rgba(0, 26, 77, 0.5);
    --kmk-bg-dark: rgba(0, 13, 38, 0.8);
    --kmk-border: rgba(255, 255, 255, 0.1);
    --kmk-text: #ffffff;
    --kmk-text-muted: rgba(255, 255, 255, 0.7);
    --kmk-accent: #ffcc00;
    --kmk-accent-hover: #ffe066;
    --kmk-radius: 16px;
    --kmk-radius-sm: 8px;
    --kmk-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* === WRAPPER === */
.sb-wrapper {
    background: transparent;
    padding: 0;
    margin: 0;
}

.sb-listing-wrapper {
    margin: var(--spacing-md) 0;
}

/* ========================================
   REVIEW HERO - Moderne Full-Width Version
   ======================================== */
.review-hero {
    position: relative;
    min-height: 400px;
    margin: 0 calc(-1 * var(--spacing-md));
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
}

.review-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.review-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
}

.review-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.95) 0%, rgba(0, 51, 153, 0.85) 50%, rgba(0, 26, 77, 0.95) 100%);
}

.review-hero__content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.review-hero__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
}

/* Logo Section */
.review-hero__logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.review-hero__logo-wrap {
    width: 180px;
    height: 180px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.review-hero__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.review-hero__rating {
    display: flex;
    align-items: baseline;
    gap: 4px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
}

.review-hero__rating-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.review-hero__rating-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* Info Section */
.review-hero__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.review-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.review-hero__bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-hero__bonus-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-hero__bonus-value {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffcc00;
}

.review-hero__code {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-hero__code-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.review-hero__code-value {
    background: rgba(255, 204, 0, 0.15);
    border: 2px dashed rgba(255, 204, 0, 0.5);
    color: #ffcc00;
    padding: 8px 18px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.review-hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: var(--spacing-sm);
}

.review-hero__feature {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* CTA Section */
.review-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-hero__button {
    display: block;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.review-hero__button--primary {
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4);
}

.review-hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.5);
}

/* Terms */
.review-hero__terms {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.review-hero__terms a {
    color: rgba(255, 204, 0, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
    .review-hero__grid {
        grid-template-columns: auto 1fr;
        gap: var(--spacing-lg);
    }

    .review-hero__cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }

    .review-hero__logo-wrap {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .review-hero {
        min-height: auto;
        margin: 0 calc(-1 * var(--spacing-sm));
    }

    .review-hero__content {
        padding: 40px 0;
    }

    .review-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .review-hero__logo-section {
        order: 1;
    }

    .review-hero__info {
        order: 2;
        align-items: center;
    }

    .review-hero__cta {
        order: 3;
        width: 100%;
    }

    .review-hero__logo-wrap {
        width: 120px;
        height: 120px;
    }

    .review-hero__features {
        justify-content: center;
    }

    .review-hero__button {
        width: 100%;
        padding: 16px 30px;
    }
}

/* ========================================
   ALTE HERO STYLES (für Kompatibilität)
   ======================================== */
.sb-hero {
    display: none; /* Alte Version verstecken */
}

/* Logo Box für Tabelle */
.sb-logo-box {
    width: 160px;
    height: 160px;
    background: var(--kmk-bg-dark);
    border-radius: var(--kmk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    border: 1px solid var(--kmk-border);
    transition: all 0.3s ease;
}

.sb-logo-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sb-logo-button {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.sb-logo-button img,
.sb-hero-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Rank Badge */
.sb-rank-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 44px;
    height: 44px;
    background: var(--kmk-accent) !important;
    color: #000000 !important;
    border-radius: 50%;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
    z-index: 10;
    border: 3px solid rgba(0, 26, 77, 0.8);
}

/* Force black text on all rank badges */
.sb-rank-badge,
.sb-rank-badge *,
.sb-rank-badge span,
.sb-hero-badge,
.sb-hero-badge * {
    color: #000000 !important;
}

/* Rating Badge */
.sb-rating-badge {
    position: absolute !important;
    top: -12px !important;
    right: -12px !important;
    width: 44px !important;
    height: 44px !important;
    background: var(--kmk-accent) !important;
    border: 3px solid #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: #000d26 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
}

/* Rating Badge - Circle Progress verstecken, nur Zahl zeigen */
.sb-rating-badge svg,
.sb-rating-badge .circular-chart {
    display: none !important;
}

.sb-rating-badge .circle-bg-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.sb-rating-badge .circle-percentage {
    display: block !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    color: #000d26 !important;
    line-height: 1 !important;
}

/* Hero Info */
.sb-hero-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sb-hero-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--kmk-text);
    margin: 0;
}

.sb-hero-bonus-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sb-hero-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--kmk-accent);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.sb-hero-bonuscode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--kmk-text);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--kmk-border);
}

/* Hero Button */
.sb-hero-button-wrap {
    flex-shrink: 0;
    min-width: 200px;
}

.sb-hero-button {
    background: var(--kmk-accent);
    color: #000d26;
    border: none;
    border-radius: var(--kmk-radius-sm);
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.sb-hero-button:hover {
    background: var(--kmk-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

/* Hero Info Toggle */
.sb-info-wrapper {
    background: var(--kmk-bg-dark);
    border-top: 1px solid var(--kmk-border);
    border-radius: 0 0 var(--kmk-radius) var(--kmk-radius);
}

.sb-details-toggle {
    background: transparent;
    border: none;
    padding: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    color: var(--kmk-text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sb-details-toggle:hover {
    color: var(--kmk-accent);
}

.sb-hero-info {
    padding: 20px 24px;
    color: var(--kmk-text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: none;
    border-top: 1px solid var(--kmk-border);
}

.sb-hero-info.active {
    display: block;
}

/* ========================================
   TABELLE - Anbieter Listing
   ======================================== */
.sb-item,
.sb-item.sb-item-one-line {
    background: var(--kmk-bg) !important;
    border: 1px solid var(--kmk-border) !important;
    border-radius: var(--kmk-radius) !important;
    margin-bottom: 16px !important;
    box-shadow: var(--kmk-shadow) !important;
    transition: all 0.3s ease !important;
    overflow: visible !important;
}

.sb-item:hover,
.sb-item.sb-item-one-line:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 204, 0, 0.3) !important;
}

/* Top Row */
.sb-top-row {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Logo Column */
.sb-col-logo {
    position: relative;
    flex-shrink: 0;
}

.sb-col-logo .sb-logo-box {
    width: 140px;
    height: 140px;
}

/* Info Column */
.sb-col-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--kmk-text);
    margin: 0;
}

.sb-bonus {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 204, 0, 0.15);
    color: var(--kmk-accent);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 204, 0, 0.3);
    width: fit-content;
}

.sb-bonuscode {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--kmk-text);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--kmk-border);
    width: fit-content;
}

/* Buttons Column */
.sb-col-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

.sb-button {
    display: block;
    padding: 12px 20px;
    border: none;
    border-radius: var(--kmk-radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sb-btn-red,
.sb-button:first-child {
    background: var(--kmk-accent);
    color: #000d26;
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
}

.sb-btn-red:hover,
.sb-button:first-child:hover {
    background: var(--kmk-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.4);
}

.sb-btn-dark,
.sb-col-buttons .sb-button:last-child:not(:first-child) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--kmk-text);
    border: 1px solid var(--kmk-border);
}

.sb-btn-dark:hover,
.sb-col-buttons .sb-button:last-child:not(:first-child):hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Bottom Row / Toggle */
.sb-bottom-row {
    background: rgba(0, 26, 77, 0.3) !important;
    border-top: 1px solid var(--kmk-border) !important;
    border-radius: 0 0 var(--kmk-radius) var(--kmk-radius) !important;
}

.sb-toggle {
    background: transparent !important;
    border: none !important;
    padding: 14px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    color: var(--kmk-text-muted) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
}

.sb-toggle:hover {
    color: var(--kmk-accent) !important;
    background: rgba(255, 204, 0, 0.1) !important;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.sb-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Details Panel */
.sb-details {
    background: var(--kmk-bg-dark);
    border-top: 1px solid var(--kmk-border);
    padding: 20px;
    display: none;
}

.sb-details.active {
    display: block;
}

.sb-detail-row {
    margin-bottom: 16px;
}

.detail-label {
    font-weight: 700;
    color: var(--kmk-text);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label::before {
    content: '';
    width: 4px;
    height: 14px;
    background: var(--kmk-accent);
    border-radius: 2px;
}

.detail-value {
    color: var(--kmk-text-muted);
    font-size: 14px;
    padding-left: 12px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 12px;
}

.payment-icon {
    width: 44px;
    height: 28px;
    background: #ffffff;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Warning Row / Disclaimer */
.sb-warning-row {
    background: rgba(255, 204, 0, 0.1);
    color: var(--kmk-text);
    padding: 14px 20px;
    border-radius: var(--kmk-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    margin-top: 12px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    font-size: 14px;
}

.sb-warning-row strong {
    background: var(--kmk-accent);
    color: #000d26;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 15px;
}

/* Load More Button */
.sb-loadmore-wrapper {
    text-align: center;
    margin: 32px 0;
}

.sb-load-more {
    background: var(--kmk-accent);
    color: #000d26;
    border: none;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 204, 0, 0.3);
}

.sb-load-more:hover {
    background: var(--kmk-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 204, 0, 0.4);
}

.sb-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Disclaimer Box - Kompakt in einer Zeile */
.sb-disclaimer-wrapper {
    max-width: 1200px;
    margin: 24px auto;
}

.sb-disclaimer {
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.15) 0%, rgba(0, 26, 77, 0.2) 100%);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.sb-disclaimer-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255, 204, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.sb-disclaimer-icon svg {
    width: 18px;
    height: 18px;
}

.sb-disclaimer-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sb-disclaimer-title {
    display: none;
}

.sb-disclaimer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-disclaimer-badge {
    background: #991b1b;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
}

.sb-disclaimer-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.sb-disclaimer-subtext::before {
    content: "·";
    margin-right: 8px;
}

.sb-disclaimer-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.sb-disclaimer-link:hover {
    color: #ffe066;
}

@media (max-width: 768px) {
    .sb-disclaimer {
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .sb-disclaimer-content {
        flex-direction: column;
        gap: 6px;
    }

    .sb-disclaimer-subtext::before {
        display: none;
    }
}

/* ========================================
   RESPONSIVE - Kemoku
   ======================================== */
@media (max-width: 768px) {
    .sb-hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .sb-hero .sb-logo-box {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .sb-hero-info-section {
        align-items: center;
    }

    .sb-hero-name {
        font-size: 22px;
    }

    .sb-hero-bonus-wrapper {
        justify-content: center;
    }

    .sb-hero-button-wrap {
        width: 100%;
        max-width: 280px;
    }

    .sb-rank-badge,
    .sb-rating-badge {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .sb-hero .sb-rank-badge {
        left: calc(50% - 60px - 19px);
    }

    .sb-hero .sb-rating-badge {
        right: calc(50% - 60px - 19px);
    }

    /* Tabelle Mobile */
    .sb-top-row {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .sb-col-logo {
        margin-bottom: 12px;
    }

    .sb-col-logo .sb-logo-box {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .sb-col-logo .sb-rank-badge {
        left: calc(50% - 50px - 19px);
    }

    .sb-col-logo .sb-rating-badge {
        right: calc(50% - 50px - 19px);
    }

    .sb-col-info {
        align-items: center;
    }

    .sb-name {
        font-size: 20px;
    }

    .sb-col-buttons {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .sb-hero .sb-logo-box {
        width: 100px;
        height: 100px;
    }

    .sb-hero .sb-rank-badge {
        left: calc(50% - 50px - 19px);
    }

    .sb-hero .sb-rating-badge {
        right: calc(50% - 50px - 19px);
    }

    .sb-hero-name {
        font-size: 20px;
    }

    .sb-hero-bonus,
    .sb-hero-bonuscode,
    .sb-bonus,
    .sb-bonuscode {
        font-size: 13px;
        padding: 6px 12px;
    }

    .sb-col-logo .sb-logo-box {
        width: 90px;
        height: 90px;
    }

    .sb-col-logo .sb-rank-badge {
        left: calc(50% - 45px - 19px);
    }

    .sb-col-logo .sb-rating-badge {
        right: calc(50% - 45px - 19px);
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-md);
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    padding: var(--spacing-xs) 0;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .related-posts-title {
        font-size: 1.25rem;
    }

    .related-posts {
        padding: var(--spacing-lg) var(--spacing-sm);
        margin: var(--spacing-lg) 0;
    }

    .site-main .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-title {
        font-size: 1.5rem;
    }

    body {
        padding-top: 70px;
    }
}

/* ========================================
   EU Branding Elements
   ======================================== */
.eu-flag-colors {
    background: linear-gradient(
        90deg,
        var(--color-primary) 50%,
        var(--color-accent) 50%
    );
    background-size: 200% 100%;
}

.eu-brand-gradient {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 50%,
        var(--color-accent) 100%
    );
}

.eu-star-pattern {
    background-image: radial-gradient(
        circle,
        var(--color-accent) 2px,
        transparent 2px
    );
    background-size: 20px 20px;
}

.eu-border {
    border: 2px solid var(--color-primary);
    border-radius: 8px;
}

.eu-border-accent {
    border: 2px solid var(--color-accent);
    border-radius: 8px;
}

.eu-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--text-on-primary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.eu-badge-accent {
    display: inline-block;
    background: var(--color-accent);
    color: var(--text-on-accent);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.eu-card {
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 51, 153, 0.1);
    transition: var(--transition);
}

.eu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 51, 153, 0.15);
    border-color: var(--color-secondary);
}

.eu-button {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    color: var(--text-on-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.eu-button:hover {
    background: linear-gradient(
        135deg,
        var(--color-secondary) 0%,
        var(--color-primary) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.3);
}

.eu-button-accent {
    background: var(--color-accent);
    color: var(--text-on-accent);
}

.eu-button-accent:hover {
    background: var(--color-secondary);
    color: var(--text-on-secondary);
}

.eu-alert {
    background: linear-gradient(
        135deg,
        rgba(0, 51, 153, 0.1) 0%,
        rgba(0, 102, 204, 0.1) 100%
    );
    border-left: 4px solid var(--color-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 0 8px 8px 0;
}

.eu-alert-success {
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.1) 0%,
        rgba(40, 167, 69, 0.2) 100%
    );
    border-left-color: var(--color-success);
}

.eu-alert-warning {
    background: linear-gradient(
        135deg,
        rgba(255, 193, 7, 0.1) 0%,
        rgba(255, 193, 7, 0.2) 100%
    );
    border-left-color: var(--color-warning);
}

.eu-alert-danger {
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.1) 0%,
        rgba(220, 53, 69, 0.2) 100%
    );
    border-left-color: var(--color-danger);
}

.eu-alert-info {
    background: linear-gradient(
        135deg,
        rgba(23, 162, 184, 0.1) 0%,
        rgba(23, 162, 184, 0.2) 100%
    );
    border-left-color: var(--color-info);
}

/* EU Typography */
.eu-heading {
    color: var(--color-primary);
    position: relative;
    padding-bottom: 8px;
}

.eu-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
}

.eu-subheading {
    color: var(--color-secondary);
    font-weight: 600;
}

/* EU Form Elements */
.eu-input {
    border: 2px solid var(--color-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.eu-input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

.eu-select {
    border: 2px solid var(--color-light);
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
    background: var(--color-white);
    transition: var(--transition);
    width: 100%;
}

.eu-select:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

/* EU Progress Bars */
.eu-progress {
    background: var(--color-light);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.eu-progress-bar {
    background: linear-gradient(
        90deg,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* EU Badges for Categories */
.category-badge-eu {
    background: var(--color-primary);
    color: var(--text-on-primary);
}

.category-badge-bonus {
    background: var(--color-accent);
    color: var(--text-on-accent);
}

.category-badge-sports {
    background: var(--color-secondary);
    color: var(--text-on-secondary);
}

/* Responsive EU Elements */
@media (max-width: 768px) {
    .eu-card {
        padding: var(--spacing-sm);
    }

    .eu-button,
    .eu-button-accent {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Table of Contents - Compact Sticky Bar
   ======================================== */
.toc-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.toc-bar.is-sticky {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toc-bar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
}

.toc-bar-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #003399 0%, #001a4d 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 51, 153, 0.3);
    transition: all 0.2s ease;
}

.toc-bar-toggle:hover {
    box-shadow: 0 6px 25px rgba(0, 51, 153, 0.4);
}

.toc-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 204, 0, 0.2);
    border-radius: 8px;
    color: #ffcc00;
    flex-shrink: 0;
}

.toc-bar-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.toc-bar-current {
    flex: 1;
    text-align: left;
    font-weight: 700;
    color: #ffcc00;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none;
    padding-left: 8px;
}

.toc-bar-current::before {
    content: '—';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.toc-bar-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: transform 0.3s ease, background 0.2s ease;
    flex-shrink: 0;
}

.toc-bar.is-open .toc-bar-chevron {
    transform: rotate(180deg);
    background: rgba(255, 204, 0, 0.2);
}

/* Dropdown */
.toc-bar-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(145deg, #003399 0%, #001a4d 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 51, 153, 0.4);
    border: 2px solid rgba(255, 204, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 60vh;
    overflow-y: auto;
}

.toc-bar.is-open .toc-bar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toc-bar-list {
    list-style: none;
    margin: 0;
    padding: 12px;
}

.toc-bar-item {
    margin: 0;
}

.toc-bar-item-sub {
    padding-left: 20px;
}

.toc-bar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 4px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.toc-bar-link:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-left-color: #ffcc00;
    transform: translateX(4px);
}

.toc-bar-link.is-active {
    background: rgba(255, 204, 0, 0.15) !important;
    border-left-color: #ffcc00;
}

.toc-bar-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #ffcc00 0%, #e6b800 100%);
    color: #001a4d;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
}

.toc-bar-text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.toc-bar-item-sub .toc-bar-num {
    min-width: 22px;
    height: 22px;
    font-size: 0.7rem;
    background: rgba(255, 204, 0, 0.3);
    color: #ffcc00;
}

.toc-bar-item-sub .toc-bar-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Scrollbar */
.toc-bar-dropdown::-webkit-scrollbar {
    width: 6px;
}

.toc-bar-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.toc-bar-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 204, 0, 0.3);
    border-radius: 3px;
}

/* TOC Bar Responsive */
@media (max-width: 768px) {
    .toc-bar {
        top: 70px;
    }

    .toc-bar-inner {
        padding: 0 8px;
    }

    .toc-bar-toggle {
        padding: 16px 18px;
        gap: 12px;
        border-radius: 12px;
        min-height: 56px;
    }

    .toc-bar-icon {
        width: 36px;
        height: 36px;
    }

    .toc-bar-icon svg {
        width: 18px;
        height: 18px;
    }

    .toc-bar-label {
        font-size: 1rem;
        font-weight: 700;
    }

    .toc-bar-current {
        font-size: 0.9rem;
    }

    .toc-bar-chevron {
        width: 32px;
        height: 32px;
    }

    .toc-bar-dropdown {
        left: 8px;
        right: 8px;
        border-radius: 14px;
    }

    .toc-bar-list {
        padding: 10px;
    }

    .toc-bar-link {
        padding: 14px 16px;
        gap: 12px;
        min-height: 52px;
    }

    .toc-bar-num {
        min-width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .toc-bar-text {
        font-size: 0.95rem;
    }

    .toc-bar-item-sub {
        padding-left: 12px;
    }

    .toc-bar-item-sub .toc-bar-link {
        min-height: 48px;
    }
}

/* ========================================
   KEMOKU HERO SECTION - Neue Klassen
   Für class-kemoku-hero.php Output
   ======================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 26, 77, 0.95) 0%, rgba(0, 51, 153, 0.85) 50%, rgba(0, 26, 77, 0.95) 100%);
    border-radius: var(--kmk-radius, 16px);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 102, 204, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-xl, 3rem);
    align-items: center;
    padding: var(--spacing-xl, 3rem);
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Side */
.hero-logo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: 180px;
    height: 180px;
}

.hero-logo-btn {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.hero-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Rating Badge */
.hero-rating-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.5);
    font-weight: 800;
}

.hero-rating-star {
    font-size: 14px;
    line-height: 1;
}

.hero-rating-num {
    font-size: 18px;
    line-height: 1;
}

/* Content Side */
.hero-content-side {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 1.5rem);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Bonus Display */
.hero-bonus-display {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-bonus-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-bonus-value {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffcc00;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
}

/* Bonus Code Box */
.hero-code-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 204, 0, 0.1);
    border: 2px dashed rgba(255, 204, 0, 0.4);
    border-radius: 12px;
    padding: 12px 20px;
    width: fit-content;
}

.hero-code-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-code-value {
    font-size: 18px;
    font-weight: 700;
    color: #ffcc00;
    letter-spacing: 2px;
    font-family: monospace;
}

/* CTA Button */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffcc00, #ffd633);
    color: #001a4d;
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 204, 0, 0.5);
}

.hero-cta-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .hero-cta-arrow {
    transform: translateX(5px);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-inner {
        gap: var(--spacing-lg, 2rem);
        padding: var(--spacing-lg, 2rem);
    }

    .hero-logo-container {
        width: 150px;
        height: 150px;
    }

    .hero-rating-badge {
        width: 50px;
        height: 50px;
    }

    .hero-rating-num {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md, 1.5rem);
        padding: var(--spacing-md, 1.5rem);
    }

    .hero-logo-side {
        order: 1;
    }

    .hero-content-side {
        order: 2;
        align-items: center;
    }

    .hero-logo-container {
        width: 120px;
        height: 120px;
    }

    .hero-logo-btn {
        padding: 15px;
    }

    .hero-rating-badge {
        width: 45px;
        height: 45px;
        top: -8px;
        right: -8px;
    }

    .hero-rating-star {
        font-size: 12px;
    }

    .hero-rating-num {
        font-size: 14px;
    }

    .hero-code-box {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .hero-cta-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        padding: var(--spacing-sm, 1rem);
    }

    .hero-logo-container {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-bonus-value {
        font-size: 1.3rem;
    }
}

/* ========================================
   Kemoku Plugin - Spielsucht/Disclaimer Box
   Dunkles Design für optimale Lesbarkeit
   ======================================== */

/* CSS-Variablen für Kemoku überschreiben (Dunkles Design) */
:root {
    --kemoku-warning-bg: #1a1a2e;
    --kemoku-warning-text: #ffffff;
    --kemoku-warning-border: #fbbf24;
    --kemoku-warning-link: #dc2626;
    --kemoku-warning-link-hover: #ef4444;
}



/* ========================================
   Modern Content Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .site-main > article,
    .front-page-content,
    .single-post-content {
        padding: var(--spacing-md);
        border-radius: 16px;
        margin: 0 -0.5rem var(--spacing-md);
    }

    .entry-title,
    .site-main h1.entry-title {
        font-size: 1.75rem;
    }

    .entry-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }

    .entry-content h3 {
        font-size: 1.2rem;
    }

    .entry-content {
        font-size: 1rem;
    }

    .entry-content ul li,
    .entry-content ol li {
        padding-left: 1.5rem;
    }

    .entry-content ol li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .entry-content blockquote {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }

    .entry-content blockquote::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
}

/* Gutenberg Block Spacing inside Content Cards */
.entry-content > .wp-block-group,
.entry-content > .wp-block-columns {
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

@media (max-width: 768px) {
    .entry-content > .wp-block-group,
    .entry-content > .wp-block-columns {
        margin-left: calc(-1 * var(--spacing-md));
        margin-right: calc(-1 * var(--spacing-md));
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* ========================================
   FLOATING BAR - Sticky CTA
   ======================================== */
.sb-floating-bar {
    position: fixed !important;
    bottom: -100px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(0, 13, 38, 0.95) !important;
    border: 1px solid rgba(255, 204, 0, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    z-index: 9999 !important;
    width: fit-content !important;
    max-width: min(90%, 700px) !important;
    min-width: 400px !important;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sb-floating-bar.visible {
    bottom: 20px !important;
}

/* Floating Bar Content */
.sb-floating-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* Floating Bar Logo */
.sb-floating-logo {
    width: 50px;
    height: 50px;
    min-width: 50px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.sb-floating-logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Floating Bar Info */
.sb-floating-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 150px;
}

.sb-floating-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-floating-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.sb-floating-rating {
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 600;
}

.sb-floating-star {
    color: var(--color-accent);
}

.sb-floating-bonus {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sb-floating-bonus-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.2;
}

.sb-floating-code {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.sb-floating-code strong {
    color: var(--color-accent);
}

/* Floating Bar CTA */
.sb-floating-cta {
    flex-shrink: 0;
}

.sb-floating-button {
    background: var(--color-accent);
    color: #000d26;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.sb-floating-button:hover {
    background: #ffe066;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.sb-floating-button-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sb-floating-button:hover .sb-floating-button-arrow {
    transform: translateX(3px);
}

/* Floating Bar Mobile */
@media (max-width: 768px) {
    .sb-floating-bar {
        bottom: -100px !important;
        left: 10px !important;
        right: 10px !important;
        transform: none !important;
        width: auto !important;
        max-width: none !important;
        min-width: unset !important;
        padding: 10px 15px !important;
        border-radius: 20px !important;
        gap: 10px !important;
    }

    .sb-floating-bar.visible {
        bottom: 10px !important;
    }

    .sb-floating-content {
        gap: 10px;
    }

    .sb-floating-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 4px;
        border-radius: 8px;
    }

    .sb-floating-info {
        min-width: unset;
        flex: 1;
    }

    .sb-floating-name {
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sb-floating-bonus-text {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sb-floating-code {
        display: none;
    }

    .sb-floating-button {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .sb-floating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .sb-floating-rating {
        font-size: 12px;
    }

    .sb-floating-name {
        max-width: 100px;
    }

    .sb-floating-button {
        padding: 8px 12px;
        font-size: 11px;
    }

    .sb-floating-button-text {
        display: none;
    }

    .sb-floating-button::after {
        content: 'BONUS';
        font-weight: bold;
    }
}

/* ========================================
   Live Search - Header Search Overlay
   ======================================== */

/* Header Actions Container */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* CSS-based Icons */
.search-icon {
    display: block;
    position: relative;
    width: 18px;
    height: 18px;
}

.search-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    box-sizing: border-box;
}

.search-icon::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 10px;
    height: 2.5px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
    border-radius: 2px;
}

/* Search Toggle Button in Header */
.search-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 204, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    flex-shrink: 0;
    padding: 0;
}

.close-icon {
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Close Icon Hover */
.menu-close:hover .close-icon::before,
.menu-close:hover .close-icon::after,
.live-search-close:hover .close-icon::before,
.live-search-close:hover .close-icon::after {
    background: var(--color-accent);
}

/* Search Icon in Submit Button */
.live-search-submit .search-icon {
    width: 20px;
    height: 20px;
}

.live-search-submit .search-icon::before {
    width: 13px;
    height: 13px;
}

.live-search-submit .search-icon::after {
    top: 11px;
    left: 11px;
    width: 11px;
}

.live-search-submit:hover .search-icon::before {
    border-color: var(--color-accent);
}

.live-search-submit:hover .search-icon::after {
    background: var(--color-accent);
}

.search-toggle:hover,
.search-toggle:focus {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--color-accent);
    outline: none;
}

.search-toggle:hover .search-icon::before {
    border-color: var(--color-accent);
}

.search-toggle:hover .search-icon::after {
    background: var(--color-accent);
}

/* Desktop: Search neben Navigation */
@media (min-width: 993px) {
    .header-actions {
        order: 3;
        margin-left: 16px;
    }

    .main-navigation {
        order: 2;
        margin-left: auto;
    }

    .site-logo {
        order: 1;
    }
}

/* Search Overlay */
.live-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 13, 38, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
}

.live-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

body.search-open {
    overflow: hidden;
}

/* Search Container */
.live-search-container {
    width: 100%;
    max-width: 700px;
    padding: 0 var(--spacing-md);
    position: relative;
}

/* Close Button */
.live-search-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 204, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    z-index: 10001;
}

.live-search-close:hover,
.live-search-close:focus {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--color-accent);
    color: var(--color-accent);
    outline: none;
}

/* Search Form */
.live-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.live-search-form:focus-within {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.2);
}

.live-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 12px;
    outline: none;
    font-family: inherit;
}

.live-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.live-search-submit {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.live-search-submit:hover {
    color: var(--color-accent);
}

/* Search Results */
.live-search-results {
    margin-top: var(--spacing-md);
    max-height: 50vh;
    overflow-y: auto;
}

/* Results Scrollbar */
.live-search-results::-webkit-scrollbar {
    width: 6px;
}

.live-search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.live-search-results::-webkit-scrollbar-thumb {
    background: rgba(255, 204, 0, 0.3);
    border-radius: 3px;
}

/* Loading State */
.live-search-loading {
    display: flex;
    justify-content: center;
    padding: var(--spacing-md);
}

.live-search-loading .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* No Results */
.live-search-no-results,
.live-search-error {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: var(--spacing-md);
    font-size: 1rem;
}

/* Result Item */
.live-search-result-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.live-search-result-item:hover,
.live-search-result-item:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 204, 0, 0.3);
    transform: translateX(4px);
    outline: none;
}

/* Result Thumbnail */
.live-search-result-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.live-search-result-thumb-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.3) 0%, rgba(0, 102, 204, 0.3) 100%);
    flex-shrink: 0;
}

/* Result Content */
.live-search-result-content {
    flex: 1;
    min-width: 0;
}

.live-search-result-type {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    background: rgba(255, 204, 0, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-weight: 600;
}

.live-search-result-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.3;
}

.live-search-result-title mark {
    background: rgba(255, 204, 0, 0.3);
    color: var(--color-accent);
    padding: 0 2px;
    border-radius: 2px;
}

.live-search-result-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* All Results Link */
.live-search-all-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.3) 0%, rgba(0, 102, 204, 0.3) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.live-search-all-results:hover,
.live-search-all-results:focus {
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.5) 0%, rgba(0, 102, 204, 0.5) 100%);
    border-color: var(--color-accent);
    color: var(--color-accent);
    outline: none;
}

.live-search-all-results svg {
    transition: transform 0.3s ease;
}

.live-search-all-results:hover svg {
    transform: translateX(4px);
}

/* Live Search Responsive */
@media (max-width: 768px) {
    .search-toggle {
        width: 44px;
        height: 44px;
    }

    .search-toggle svg {
        width: 20px;
        height: 20px;
    }

    .live-search-overlay {
        padding-top: 100px;
    }

    .live-search-container {
        padding: 0 var(--spacing-sm);
    }

    .live-search-close {
        top: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
    }

    .live-search-close svg {
        width: 24px;
        height: 24px;
    }

    .live-search-form {
        padding: 6px 12px;
        border-radius: 12px;
    }

    .live-search-input {
        font-size: 1rem;
        padding: 10px;
    }

    .live-search-results {
        max-height: 55vh;
    }

    .live-search-result-item {
        padding: 12px;
        gap: 12px;
    }

    .live-search-result-thumb,
    .live-search-result-thumb-placeholder {
        width: 55px;
        height: 55px;
        border-radius: 8px;
    }

    .live-search-result-title {
        font-size: 0.95rem;
    }

    .live-search-result-excerpt {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }
}

/* Mobile: Header Actions */
@media (max-width: 992px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .header-actions .search-toggle {
        order: 1;
    }

    .header-actions .menu-toggle {
        order: 2;
    }
}
