:root {
    color-scheme: dark;
    --color-bg: #04130a;
    --color-surface: rgba(8, 24, 15, 0.92);
    --color-glass: rgba(17, 37, 25, 0.86);
    --color-border: rgba(106, 154, 118, 0.28);
    --color-highlight: #68ff9d;
    --color-highlight-soft: rgba(104, 255, 157, 0.2);
    --color-warm: #ffb347;
    --color-text: #f3f9f4;
    --color-text-soft: rgba(216, 235, 223, 0.82);
    --color-muted: rgba(154, 174, 164, 0.72);
    --shadow-soft: 0 25px 70px -35px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 45px 110px -50px rgba(104, 255, 157, 0.4);
    --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(104, 255, 157, 0.18), transparent 55%),
        radial-gradient(circle at 80% 15%, rgba(255, 179, 71, 0.22), transparent 48%),
        radial-gradient(circle at 50% 90%, rgba(84, 188, 126, 0.14), transparent 60%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(140deg, rgba(4, 14, 9, 0.92) 0%, transparent 35%, rgba(4, 14, 9, 0.96) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: var(--color-highlight);
    color: #04130a;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--color-warm);
    outline-offset: 2px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-warm));
    z-index: 1000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(104, 255, 157, 0.5);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(104, 255, 157, 0.15);
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    color: var(--color-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-highlight);
    color: #04130a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(104, 255, 157, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--color-highlight);
}

a:focus-visible {
    outline: 2px solid var(--color-highlight);
    outline-offset: 3px;
}

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

main {
    position: relative;
}

.container {
    width: min(1180px, 100% - 2.8rem);
    margin: 0 auto;
}

section {
    padding: 4.5rem 0;
}

.button-primary,
.button-secondary,
.button-outline,
.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease, background 180ms ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #062515;
    border: 1px solid rgba(255, 179, 71, 0.4);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.button-primary:hover::before {
    width: 300px;
    height: 300px;
}

.button-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 35px 90px -40px rgba(104, 255, 157, 0.5), 0 0 0 2px rgba(104, 255, 157, 0.3);
}

.button-primary span {
    position: relative;
    z-index: 10;
}

.button-secondary,
.button-outline {
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: transparent;
}

.button-secondary:hover,
.button-outline:hover {
    border-color: rgba(255, 179, 71, 0.42);
    transform: translateY(-2px);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 20, 13, 0.8);
    color: var(--color-text);
}

.section-header {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2.4rem;
}

.section-header--split {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.section-header--split > div {
    display: grid;
    gap: 0.6rem;
}

.section-header h2,
.hero h1 {
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: -0.01em;
}

.section-kicker,
.section-header span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(104, 255, 157, 0.16);
    color: rgba(230, 255, 240, 0.82);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
    transition: all 0.3s ease;
}

.section-kicker:hover {
    background: rgba(104, 255, 157, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 255, 157, 0.2);
}

.muted {
    color: var(--color-muted);
}

/* Fade-in Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(4, 13, 9, 0.88);
    border-bottom: 1px solid rgba(104, 255, 157, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(4, 13, 9, 0.96);
    border-bottom-color: rgba(104, 255, 157, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.site-header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.4rem 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.site-logo:hover {
    transform: translateY(-2px) scale(1.02);
}

.logo-container {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 56px;
}

.logo-glow-pulse {
    display: none;
}

.logo-particles {
    display: none;
}

.logo-image {
    height: 56px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(104, 255, 157, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.site-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(104, 255, 157, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    position: relative;
}

.logo-title {
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.site-logo:hover .logo-title {
    animation: textShimmer 1s ease-in-out infinite, textPulse 0.5s ease-out;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.logo-subtitle {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    animation: subtitleFade 4s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.site-logo:hover .logo-subtitle {
    opacity: 1;
    animation: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: relative;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.site-nav a {
    position: relative;
    color: var(--color-muted);
    padding-bottom: 0.25rem;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-warm));
    border-radius: 999px;
    transition: width 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
    color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
    width: 100%;
}

.site-nav a.active {
    color: var(--color-highlight);
    font-weight: 600;
}

.site-cta {
    display: inline-flex;
}

.site-cta svg {
    flex-shrink: 0;
}

/* YouTube Button mit YouTube-Farben */
.button-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: #FF0000;
    color: #ffffff;
    border: 1px solid #FF0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.button-youtube::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.button-youtube:hover::before {
    width: 300px;
    height: 300px;
}

.button-youtube:hover {
    background: #CC0000;
    border-color: #CC0000;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.button-youtube svg {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.button-youtube span {
    position: relative;
    z-index: 1;
}

.site-footer {
    margin-top: 6rem;
    padding: 4rem 0 2.4rem;
    background: linear-gradient(180deg, rgba(4, 11, 7, 0.98) 0%, rgba(2, 8, 5, 0.95) 100%);
    border-top: 1px solid rgba(104, 255, 157, 0.15);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(104, 255, 157, 0.4), transparent);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.site-footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
}

.site-footer__brand img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(104, 255, 157, 0.25));
    flex-shrink: 0;
}

.site-footer__brand div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.site-footer__brand strong {
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-footer__brand span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(227, 241, 235, 0.7);
}

.site-footer__brand p {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(216, 235, 223, 0.75);
    max-width: 400px;
}

.site-footer__links {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.site-footer__links span {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.site-footer__links a {
    display: block;
    margin-top: 0.4rem;
    color: rgba(230, 245, 238, 0.82);
}

.site-footer__meta {
    margin-top: 2.2rem;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(190, 208, 200, 0.6);
}

/* Hero */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero--leaf::before,
.hero--leaf::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero--leaf::before {
    background: url('/public/assets/images/cannabis-hero.png') center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: screen;
    transform: scale(1.12);
    animation: backgroundFloat 20s ease-in-out infinite;
}

.hero--leaf::after {
    background:
        radial-gradient(circle at 18% 20%, rgba(104, 255, 157, 0.32), transparent 55%),
        radial-gradient(circle at 78% 18%, rgba(255, 179, 71, 0.26), transparent 48%),
        rgba(4, 14, 9, 0.82);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: scale(1.12) translate(0, 0);
    }
    50% {
        transform: scale(1.15) translate(10px, -10px);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

.hero__layout {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
    padding: clamp(5rem, 9vw, 8rem) 0;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .hero__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero__logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero__logo-item {
    position: absolute;
    will-change: transform;
    filter: drop-shadow(0 0 20px rgba(104, 255, 157, 0.15));
}

.hero__logo {
    width: auto;
    height: 100%;
    object-fit: contain;
    opacity: 0.15;
    display: block;
    transition: opacity 0.3s ease;
}

.hero__logo-item:hover .hero__logo {
    opacity: 0.25;
}

/* Logo 1 - Zufällige Position: Oben links, bewegt sich diagonal */
.hero__logo-item--1 {
    top: 8%;
    left: 12%;
    animation: logoPath1 23s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes logoPath1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    18% {
        transform: translate(28vw, 22vh) scale(1.12) rotate(7deg);
    }
    36% {
        transform: translate(58vw, 8vh) scale(0.88) rotate(-5deg);
    }
    54% {
        transform: translate(72vw, 38vh) scale(1.08) rotate(9deg);
    }
    72% {
        transform: translate(45vw, 68vh) scale(0.92) rotate(-6deg);
    }
    90% {
        transform: translate(15vw, 55vh) scale(1.05) rotate(4deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Logo 2 - Zufällige Position: Rechts oben, bewegt sich nach links */
.hero__logo-item--2 {
    top: 15%;
    right: 8%;
    animation: logoPath2 27s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: -5s;
}

@keyframes logoPath2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    22% {
        transform: translate(-32vw, 28vh) scale(0.9) rotate(-9deg);
    }
    44% {
        transform: translate(-62vw, 52vh) scale(1.15) rotate(8deg);
    }
    66% {
        transform: translate(-42vw, 78vh) scale(0.95) rotate(-4deg);
    }
    88% {
        transform: translate(-18vw, 35vh) scale(1.08) rotate(6deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Logo 3 - Zufällige Position: Unten links, bewegt sich nach oben */
.hero__logo-item--3 {
    bottom: 12%;
    left: 15%;
    animation: logoPath3 25s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: -10s;
}

@keyframes logoPath3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    24% {
        transform: translate(38vw, -28vh) scale(1.1) rotate(8deg);
    }
    48% {
        transform: translate(68vw, -18vh) scale(0.9) rotate(-6deg);
    }
    72% {
        transform: translate(52vw, -8vh) scale(1.06) rotate(5deg);
    }
    96% {
        transform: translate(22vw, -15vh) scale(0.94) rotate(-3deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Logo 4 - Zufällige Position: Mitte, strahlt aus */
.hero__logo-item--4 {
    top: 42%;
    left: 52%;
    animation: logoPath4 29s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: -15s;
}

@keyframes logoPath4 {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    17% {
        transform: translate(-50%, -50%) translate(42vw, -32vh) scale(1.2) rotate(11deg);
    }
    34% {
        transform: translate(-50%, -50%) translate(-38vw, 28vh) scale(0.85) rotate(-9deg);
    }
    51% {
        transform: translate(-50%, -50%) translate(33vw, 42vh) scale(1.14) rotate(7deg);
    }
    68% {
        transform: translate(-50%, -50%) translate(-28vw, -22vh) scale(0.92) rotate(-5deg);
    }
    85% {
        transform: translate(-50%, -50%) translate(18vw, -12vh) scale(1.08) rotate(4deg);
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

/* Logo 5 - Zufällige Position: Rechts Mitte, Zick-Zack */
.hero__logo-item--5 {
    top: 38%;
    right: 18%;
    animation: logoPath5 31s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    animation-delay: -20s;
}

@keyframes logoPath5 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    13% {
        transform: translate(-22vw, 28vh) scale(1.12) rotate(10deg);
    }
    26% {
        transform: translate(18vw, 38vh) scale(0.88) rotate(-8deg);
    }
    39% {
        transform: translate(-28vw, 18vh) scale(1.18) rotate(6deg);
    }
    52% {
        transform: translate(24vw, -18vh) scale(0.82) rotate(-11deg);
    }
    65% {
        transform: translate(-16vw, -28vh) scale(1.1) rotate(5deg);
    }
    78% {
        transform: translate(20vw, 12vh) scale(0.94) rotate(-7deg);
    }
    91% {
        transform: translate(-12vw, 8vh) scale(1.06) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Mobile: Weniger Logos, kleinere Größen */
@media (max-width: 768px) {
    .hero__logo-item--4,
    .hero__logo-item--5 {
        display: none;
    }

    .hero__logo-item--1 .hero__logo {
        height: 80px !important;
    }

    .hero__logo-item--2 .hero__logo {
        height: 70px !important;
    }

    .hero__logo-item--3 .hero__logo {
        height: 65px !important;
    }

    .hero__logo {
        opacity: 0.1;
    }
}

.hero__logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(104, 255, 157, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 179, 71, 0.3) 0%, transparent 50%),
        radial-gradient(circle, rgba(104, 255, 157, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowEpic2 5s ease-in-out infinite, logoGlowRotate 15s linear infinite;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

@keyframes logoGlowEpic2 {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

@keyframes logoGlowRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(104, 255, 157, 0.4)) drop-shadow(0 0 40px rgba(104, 255, 157, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(104, 255, 157, 0.6)) drop-shadow(0 0 60px rgba(104, 255, 157, 0.4));
    }
}


@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero h1,
.hero__title {
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero__title-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(104, 255, 157, 0.5);
    animation: fadeInUp 0.8s ease-out 0.3s backwards, textGlow 3s ease-in-out infinite 1s;
    position: relative;
}

.hero__title-highlight::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(104, 255, 157, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(104, 255, 157, 0.5), 0 0 60px rgba(104, 255, 157, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(104, 255, 157, 0.7), 0 0 80px rgba(104, 255, 157, 0.5), 0 0 120px rgba(104, 255, 157, 0.3);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero p,
.hero__subtitle {
    color: var(--color-text-soft);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
    line-height: 1.7;
    max-width: 600px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    z-index: 1;
    min-width: 180px;
    justify-content: center;
}

.hero-cta__bg {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-cta__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.hero-cta__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero-cta__text {
    font-weight: 600;
}

.hero-cta__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.hero-cta--primary {
    background: linear-gradient(135deg, var(--color-highlight) 0%, #4ade80 100%);
    color: #062515;
    border-color: rgba(104, 255, 157, 0.3);
}

.hero-cta--primary .hero-cta__bg {
    background: linear-gradient(135deg, var(--color-highlight) 0%, #4ade80 100%);
    opacity: 1;
}

.hero-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(104, 255, 157, 0.4),
                0 0 0 1px rgba(104, 255, 157, 0.5);
}

.hero-cta--primary:hover .hero-cta__arrow {
    transform: translateX(4px);
    opacity: 1;
}

.hero-cta--primary:hover .hero-cta__icon {
    transform: scale(1.1);
}

.hero-cta--secondary {
    background: rgba(17, 37, 25, 0.6);
    color: var(--color-text);
    border-color: rgba(104, 255, 157, 0.2);
    backdrop-filter: blur(12px);
}

.hero-cta--secondary .hero-cta__bg {
    background: rgba(104, 255, 157, 0.1);
    opacity: 0;
}

.hero-cta--secondary:hover {
    transform: translateY(-2px);
    background: rgba(17, 37, 25, 0.8);
    border-color: rgba(104, 255, 157, 0.4);
    box-shadow: 0 12px 32px rgba(104, 255, 157, 0.2),
                0 0 0 1px rgba(104, 255, 157, 0.3);
}

.hero-cta--secondary:hover .hero-cta__bg {
    opacity: 1;
}

.hero-cta--secondary:hover .hero-cta__arrow {
    transform: translateX(4px);
    opacity: 1;
}

.hero-cta--secondary:hover .hero-cta__icon {
    transform: scale(1.1);
}

.hero-cta--accent {
    background: rgba(255, 179, 71, 0.1);
    color: var(--color-warm);
    border-color: rgba(255, 179, 71, 0.3);
    backdrop-filter: blur(12px);
}

.hero-cta--accent .hero-cta__bg {
    background: rgba(255, 179, 71, 0.15);
    opacity: 0;
}

.hero-cta--accent:hover {
    transform: translateY(-2px);
    background: rgba(255, 179, 71, 0.15);
    border-color: rgba(255, 179, 71, 0.5);
    box-shadow: 0 12px 32px rgba(255, 179, 71, 0.25),
                0 0 0 1px rgba(255, 179, 71, 0.4);
}

.hero-cta--accent:hover .hero-cta__bg {
    opacity: 1;
}

.hero-cta--accent:hover .hero-cta__arrow {
    transform: translateX(4px);
    opacity: 1;
}

.hero-cta--accent:hover .hero-cta__icon {
    transform: scale(1.1);
}

.hero__stats {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero__stats li {
    padding: 1.1rem 1.4rem;
    border-radius: 18px;
    background: var(--color-glass);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero__stats li:nth-child(1) {
    animation-delay: 0.6s;
}

.hero__stats li:nth-child(2) {
    animation-delay: 0.7s;
}

.hero__stats li:nth-child(3) {
    animation-delay: 0.8s;
}

.hero__stats li:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 35px 90px -40px rgba(104, 255, 157, 0.4), 0 0 0 1px rgba(104, 255, 157, 0.3);
    border-color: rgba(104, 255, 157, 0.4);
}

.hero__stats span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.hero__stats strong {
    display: block;
    font-family: var(--font-display);
    margin-top: 0.4rem;
    font-size: 1.7rem;
    color: var(--color-highlight);
}

.hero__media {
    display: grid;
    justify-items: center;
    width: 100%;
    align-self: start;
    padding-top: 0;
}

.hero__card {
    background: var(--color-surface);
    border-radius: 32px;
    border: 1px solid var(--color-border);
    box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(104, 255, 157, 0.1);
    overflow: hidden;
    display: grid;
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0;
}

.hero__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(104, 255, 157, 0.2), 0 0 60px -20px rgba(104, 255, 157, 0.3);
}

.video-frame {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(104, 255, 157, 0.05), rgba(255, 179, 71, 0.05));
    pointer-events: none;
    z-index: 1;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    z-index: 2;
}

.hero__meta {
    padding: 2rem;
    display: grid;
    gap: 0.8rem;
    background: linear-gradient(180deg, rgba(8, 20, 13, 0.6) 0%, rgba(4, 13, 9, 0.8) 100%);
}

.hero__badge {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: var(--color-highlight-soft);
    color: #0b2615;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__meta strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.hero__placeholder {
    padding: 2.8rem;
    text-align: center;
    display: grid;
    gap: 1.2rem;
    background: rgba(9, 20, 13, 0.86);
}

.link-arrow {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-warm);
}

.link-arrow::after {
    content: '➜';
}

/* Flavour */
.flavour {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flavour-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.flavour-card {
    position: relative;
    display: grid;
    align-items: end;
    background: var(--color-surface);
    border-radius: 24px;
    padding: 0;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flavour-card::before {
    content: '';
    position: absolute;
    inset: -10% -15% 35% -15%;
    background-position: center;
    background-size: cover;
    opacity: 0.22;
    filter: saturate(1.2);
    pointer-events: none;
}

.flavour-card--studio::before {
    background-image: url('/public/assets/images/cannabis-hero.png');
}

.flavour-card--deepdive::before {
    background-image: url('/public/assets/images/cannabis-bud.png');
}

.flavour-card--community::before {
    background-image: url('/public/assets/images/cannabis-side.png');
}

.flavour-card > div,
.flavour-card__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flavour-card__icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(104, 255, 157, 0.3));
}

.flavour-card:hover .flavour-card__icon {
    transform: scale(1.2) rotate(10deg);
}

.flavour-card__glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    filter: blur(30px);
}

.flavour-card--studio .flavour-card__glow {
    background: radial-gradient(circle, rgba(104, 255, 157, 0.4) 0%, transparent 70%);
}

.flavour-card--deepdive .flavour-card__glow {
    background: radial-gradient(circle, rgba(255, 179, 71, 0.4) 0%, transparent 70%);
}

.flavour-card--community .flavour-card__glow {
    background: radial-gradient(circle, rgba(104, 255, 157, 0.3) 0%, rgba(255, 179, 71, 0.3) 50%, transparent 70%);
}

.flavour-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(104, 255, 157, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(104, 255, 157, 0.3),
                0 0 60px -20px rgba(104, 255, 157, 0.4);
}

.flavour-card:hover .flavour-card__glow {
    opacity: 0.8;
}

.flavour-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    background: rgba(104, 255, 157, 0.1);
    border: 1px solid rgba(104, 255, 157, 0.3);
    color: var(--color-highlight);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.flavour-card__cta .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.flavour-card__cta:hover {
    background: rgba(104, 255, 157, 0.2);
    border-color: rgba(104, 255, 157, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.3);
}

.flavour-card__cta:hover .arrow {
    transform: translateX(5px);
}

/* Videos */
.videos {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================================
   VIDEOS PAGE CLEAN - FUNKTIONIERENDES GRID
   ============================================================================ */

.videos-page-clean {
    padding: 2rem 0 4rem;
    background: var(--color-bg);
}

/* Header */
.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 2rem;
}

.videos-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.videos-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin: 0;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: #FF0000;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    white-space: nowrap;
}

.youtube-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

/* Section */
.videos-section {
    margin-bottom: 4rem;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.section-heading p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Videos Grid */
.videos-grid-clean {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Video Card */
.video-card-clean {
    position: relative;
    background: var(--color-surface);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
}

.video-card-clean:hover {
    transform: translateY(-6px);
    border-color: var(--color-highlight);
    box-shadow: 0 12px 40px rgba(104, 255, 157, 0.25);
}

.video-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.5);
}

.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--color-bg);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card-clean:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay-clean {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.video-card-clean:hover .video-overlay-clean {
    opacity: 1;
}

.video-views {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.video-info-clean {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-info-clean h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

.video-info-clean h3 a {
    color: var(--color-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.video-info-clean h3 a:hover {
    color: var(--color-highlight);
}

.video-stats-clean,
.video-meta-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.video-likes-clean {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.video-likes-clean svg {
    color: var(--color-highlight);
}

.video-meta-clean time {
    color: var(--color-text-muted);
}

.video-link-clean {
    color: var(--color-highlight);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.video-link-clean:hover {
    color: var(--color-warm);
    transform: translateX(3px);
}

/* Load More */
.load-more-clean {
    display: flex;
    justify-content: center;
    padding: 3rem 0 2rem;
    margin-top: 2rem;
}

.load-more-btn-clean {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
}

.load-more-btn-clean:hover:not(:disabled) {
    background: var(--color-highlight);
    color: var(--color-bg);
    border-color: var(--color-highlight);
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.4);
    transform: translateY(-2px);
}

.load-more-btn-clean:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    margin-top: 2rem;
}

.load-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.load-more-button:hover:not(:disabled) {
    background: var(--color-highlight);
    color: var(--color-bg);
    border-color: var(--color-highlight);
    box-shadow: 0 0 20px rgba(104, 255, 157, 0.4);
    transform: translateY(-2px);
}

.load-more-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-text {
    display: inline-block;
}

.load-more-spinner {
    display: none;
    animation: spin 1s linear infinite;
}

.load-more-spinner svg {
    width: 20px;
    height: 20px;
}

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

.empty-state {
    padding: 2.8rem;
    border-radius: 22px;
    border: 1px dashed var(--color-border);
    background: rgba(8, 24, 15, 0.9);
    text-align: center;
    color: var(--color-muted);
    display: grid;
    gap: 1.2rem;
}

/* Video Carousel */
.video-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

.video-carousel {
    display: flex;
    gap: 1.8rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-highlight) transparent;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.video-carousel::-webkit-scrollbar {
    height: 8px;
}

.video-carousel::-webkit-scrollbar-track {
    background: rgba(8, 24, 15, 0.5);
    border-radius: 4px;
}

.video-carousel::-webkit-scrollbar-thumb {
    background: var(--color-highlight);
    border-radius: 4px;
}

.video-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--color-warm);
}

.video-carousel__item {
    flex: 0 0 280px;
    min-width: 280px;
}

.video-carousel__prev,
.video-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(8, 24, 15, 0.95);
    border: 2px solid var(--color-highlight);
    border-radius: 50%;
    color: var(--color-highlight);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-carousel__prev:hover,
.video-carousel__next:hover {
    background: var(--color-highlight);
    color: #04130a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(104, 255, 157, 0.4);
}

.video-carousel__prev {
    left: -24px;
}

.video-carousel__next {
    right: -24px;
}

@media (max-width: 768px) {
    .video-carousel__prev,
    .video-carousel__next {
        display: none;
    }
    
    .video-carousel__item {
        flex: 0 0 240px;
        min-width: 240px;
    }
}

/* Appointments Page */
.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-soft);
    max-width: 600px;
    margin: 0 auto;
}

.appointments-section {
    padding: 3rem 0 6rem;
}

.appointments-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 4rem 3rem;
    text-align: center;
}

.appointments-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.appointments-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04130a;
    box-shadow: var(--shadow-glow);
}

.appointments-card h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--color-text);
}

.appointments-card p {
    font-size: 1.1rem;
    color: var(--color-text-soft);
    line-height: 1.7;
    max-width: 600px;
}

.appointments-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(8, 24, 15, 0.6);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.feature-item svg {
    color: var(--color-highlight);
    flex-shrink: 0;
}

#appointment-form {
    width: 100%;
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#appointment-form .form-group {
    text-align: left;
}

#appointment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

#appointment-form input[type="text"],
#appointment-form input[type="email"] {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.2s ease;
}

#appointment-form input[type="text"]:focus,
#appointment-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-highlight);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(104, 255, 157, 0.1);
}

.appointments-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #04130a;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.3);
    margin-top: 1rem;
}

.appointments-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(104, 255, 157, 0.5);
}

.appointments-button svg:last-child {
    transition: transform 0.2s ease;
}

.appointments-button:hover svg:last-child {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .appointments-card {
        padding: 2.5rem 1.5rem;
    }
    
    .appointments-features {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Stories */
.stories {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stories__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stories__panel {
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.1rem;
}

.story-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.story-list span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
}

.story-list strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.story-list p {
    margin: 0;
    color: var(--color-text-soft);
}

/* Community */
.community {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.community__layout {
    display: grid;
    gap: 2.2rem;
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr);
    align-items: stretch;
}

.community__text {
    display: grid;
    gap: 1.2rem;
}

.community__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.community__card {
    position: relative;
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
}

.community__card::before {
    content: '';
    position: absolute;
    inset: -20% -30% 45% -20%;
    background: url('/public/assets/images/cannabis-side.png') center/cover no-repeat;
    opacity: 0.18;
    mix-blend-mode: screen;
}

.community__card > * {
    position: relative;
    z-index: 10;
}

.community__card ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.8rem;
    color: var(--color-text-soft);
}

.community__card p {
    margin-bottom: 1.2rem;
    color: var(--color-text-soft);
}

.community__socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Social Media Links mit Logos */
.social-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link__icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.social-link__text {
    position: relative;
    z-index: 2;
}

.social-link__glow {
    position: absolute;
    inset: -50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(20px);
}

/* YouTube */
.social-link--youtube {
    --social-color: #FF0000;
    --social-color-light: rgba(255, 0, 0, 0.1);
    --social-color-glow: rgba(255, 0, 0, 0.3);
}

.social-link--youtube::before {
    background: linear-gradient(135deg, var(--social-color-light), transparent);
}

.social-link--youtube .social-link__icon {
    color: var(--social-color);
}

.social-link--youtube .social-link__glow {
    background: radial-gradient(circle, var(--social-color-glow), transparent);
}

.social-link--youtube:hover {
    border-color: var(--social-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
}

.social-link--youtube:hover::before {
    opacity: 1;
}

.social-link--youtube:hover .social-link__icon {
    transform: scale(1.15) rotate(5deg);
}

.social-link--youtube:hover .social-link__glow {
    opacity: 1;
}

/* Instagram */
.social-link--instagram {
    --social-color: #E4405F;
    --social-color-light: rgba(228, 64, 95, 0.1);
    --social-color-glow: rgba(228, 64, 95, 0.3);
    --social-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link--instagram::before {
    background: linear-gradient(135deg, var(--social-color-light), transparent);
}

.social-link--instagram .social-link__icon {
    color: var(--social-color);
}

.social-link--instagram .social-link__glow {
    background: radial-gradient(circle, var(--social-color-glow), transparent);
}

.social-link--instagram:hover {
    border-color: var(--social-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.2);
}

.social-link--instagram:hover::before {
    opacity: 1;
}

.social-link--instagram:hover .social-link__icon {
    transform: scale(1.15) rotate(-5deg);
}

.social-link--instagram:hover .social-link__glow {
    opacity: 1;
}

/* Facebook */
.social-link--facebook {
    --social-color: #1877F2;
    --social-color-light: rgba(24, 119, 242, 0.1);
    --social-color-glow: rgba(24, 119, 242, 0.3);
}

.social-link--facebook::before {
    background: linear-gradient(135deg, var(--social-color-light), transparent);
}

.social-link--facebook .social-link__icon {
    color: var(--social-color);
}

.social-link--facebook .social-link__glow {
    background: radial-gradient(circle, var(--social-color-glow), transparent);
}

.social-link--facebook:hover {
    border-color: var(--social-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.2);
}

.social-link--facebook:hover::before {
    opacity: 1;
}

.social-link--facebook:hover .social-link__icon {
    transform: scale(1.15) rotate(5deg);
}

.social-link--facebook:hover .social-link__glow {
    opacity: 1;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .community__socials {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .social-link__icon {
        width: 28px;
        height: 28px;
    }
}

/* Social Media Section - Großer Block */
/* ============================================
   SOCIAL MEDIA PREMIUM SECTION
   ============================================ */

.social-media-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a1f12 0%, #1a4d2e 100%);
    position: relative;
    overflow: hidden;
}

.social-media-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/public/assets/images/cannabis-side.png') center/cover no-repeat;
    opacity: 0.05;
    mix-blend-mode: screen;
    pointer-events: none;
}

.social-media-premium__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.social-premium-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    min-height: 280px;
}

.social-premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.social-premium-card:hover::before {
    opacity: 1;
}

.social-premium-card__bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-premium-card:hover .social-premium-card__bg {
    opacity: 0.1;
}

.social-premium-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.social-premium-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.social-premium-card__icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.4s ease;
}

.social-premium-card:hover .social-premium-card__icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
}

.social-premium-card:hover .social-premium-card__icon svg {
    transform: scale(1.15) rotate(5deg);
}

.social-premium-card__info {
    flex: 1;
    width: 100%;
}

.social-premium-card__info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #ffffff;
    line-height: 1.2;
}

.social-premium-card__info p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.social-premium-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-premium-card__cta svg {
    transition: transform 0.3s ease;
}

.social-premium-card:hover .social-premium-card__cta svg {
    transform: translateX(4px);
}

.social-premium-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.social-premium-card:hover .social-premium-card__glow {
    opacity: 1;
}

/* YouTube Card */
.social-premium-card--youtube {
    --social-color: #FF0000;
    --social-color-light: rgba(255, 0, 0, 0.15);
    --social-color-glow: rgba(255, 0, 0, 0.3);
}

.social-premium-card--youtube .social-premium-card__bg {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.05));
}

.social-premium-card--youtube .social-premium-card__icon {
    color: #FF0000;
}

.social-premium-card--youtube:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2);
}

/* Instagram Card */
.social-premium-card--instagram {
    --social-color: #E4405F;
    --social-color-light: rgba(228, 64, 95, 0.15);
    --social-color-glow: rgba(228, 64, 95, 0.3);
}

.social-premium-card--instagram .social-premium-card__bg {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
}

.social-premium-card--instagram .social-premium-card__icon {
    color: #E4405F;
}

.social-premium-card--instagram:hover {
    border-color: rgba(228, 64, 95, 0.3);
    box-shadow: 0 20px 60px rgba(228, 64, 95, 0.2);
}

/* Facebook Card */
.social-premium-card--facebook {
    --social-color: #1877F2;
    --social-color-light: rgba(24, 119, 242, 0.15);
    --social-color-glow: rgba(24, 119, 242, 0.3);
}

.social-premium-card--facebook .social-premium-card__bg {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.05));
}

.social-premium-card--facebook .social-premium-card__icon {
    color: #1877F2;
}

.social-premium-card--facebook:hover {
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 20px 60px rgba(24, 119, 242, 0.2);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .social-media-premium {
        padding: 4rem 0;
    }
    
    .social-media-premium__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .social-premium-card {
        padding: 2.5rem 2rem;
        min-height: 240px;
    }
    
    .social-premium-card__icon {
        width: 64px;
        height: 64px;
    }
    
    .social-premium-card__icon svg {
        width: 40px;
        height: 40px;
    }
    
    .social-premium-card__info h3 {
        font-size: 1.75rem;
    }
    
    .social-premium-card__info p {
        font-size: 1rem;
    }
}

/* Patreon Awesome Section - Großartiges Design mit großen Cards */
/* ============================================
   PATREON AWESOME SECTION
   ============================================ */

.patreon-awesome-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(4, 19, 10, 0.95) 0%, rgba(8, 24, 15, 0.92) 50%, rgba(4, 19, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
    margin: 2.5rem 0;
}

.patreon-awesome-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.patreon-awesome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(104, 255, 157, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 71, 0.12), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(104, 255, 157, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.patreon-awesome-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(104, 255, 157, 0.1), transparent 70%);
    border-radius: 50%;
    animation: patreon-glow-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes patreon-glow-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, 100px) scale(1.2); }
}

/* Header */
.patreon-awesome-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.patreon-awesome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-highlight-soft);
    border: 2px solid var(--color-highlight);
    border-radius: 999px;
    color: var(--color-highlight);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(104, 255, 157, 0.2);
}

.patreon-awesome-badge svg {
    width: 24px;
    height: 24px;
    animation: patreon-icon-rotate 3s ease-in-out infinite;
}

@keyframes patreon-icon-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.patreon-awesome-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 1rem;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .patreon-awesome-title {
        font-size: 3.5rem;
    }
}

.patreon-awesome-title-highlight {
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.patreon-awesome-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-warm));
    border-radius: 2px;
    opacity: 0.5;
}

.patreon-awesome-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .patreon-awesome-subtitle {
        font-size: 1.25rem;
    }
}

/* Stats */
.patreon-awesome-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem auto 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
}

.patreon-awesome-stat-card {
    background: linear-gradient(135deg, var(--color-highlight-soft) 0%, rgba(104, 255, 157, 0.05) 100%);
    border: 3px solid var(--color-highlight);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 48px rgba(104, 255, 157, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.patreon-awesome-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-highlight-soft), transparent 70%);
    animation: patreon-stat-glow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes patreon-stat-glow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, 20px) scale(1.2); opacity: 0.8; }
}

.patreon-awesome-stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: 0 16px 48px rgba(104, 255, 157, 0.3);
    background: var(--color-highlight-soft);
}

.patreon-awesome-stat-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 20px rgba(104, 255, 157, 0.4));
    animation: patreon-icon-bounce 2s ease-in-out infinite;
    display: block;
}

@keyframes patreon-icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.patreon-awesome-stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(104, 255, 157, 0.5));
    position: relative;
    z-index: 1;
}

.patreon-awesome-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Tier Cards */
.patreon-awesome-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem auto;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
    justify-items: center;
}

@media (min-width: 1024px) {
    .patreon-awesome-tiers {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

@media (min-width: 1400px) {
    .patreon-awesome-tiers {
        gap: 1.75rem;
        padding: 0 2.5rem;
    }
}

.patreon-tier-awesome-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-highlight-soft) 0%, rgba(104, 255, 157, 0.03) 100%);
    border: 2px solid var(--color-border);
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .patreon-tier-awesome-card {
        padding: 2rem 1.75rem;
        min-height: 450px;
    }
}

@media (min-width: 1400px) {
    .patreon-tier-awesome-card {
        padding: 2.25rem 2rem;
        min-height: 470px;
    }
}

.patreon-tier-awesome-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-highlight-soft), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.patreon-tier-awesome-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: var(--shadow-glow);
    background: var(--color-highlight-soft);
}

.patreon-tier-awesome-card:hover::before {
    opacity: 1;
}

.patreon-tier-awesome-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--color-highlight-soft), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.patreon-tier-awesome-card:hover .patreon-tier-awesome-card__glow {
    opacity: 1;
}

.patreon-tier-awesome-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.patreon-tier-awesome-card__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.patreon-tier-awesome-card__rank {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    border-radius: 50%;
    color: #04130a;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(104, 255, 157, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.patreon-tier-awesome-card__level {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.patreon-tier-awesome-card__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 1024px) {
    .patreon-tier-awesome-card__title {
        font-size: 1.75rem;
        min-height: 2.5rem;
    }
}

.patreon-tier-awesome-card__price {
    margin-bottom: 2rem;
}

.patreon-tier-awesome-card__price-amount {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 0 15px rgba(104, 255, 157, 0.4));
}

@media (min-width: 1024px) {
    .patreon-tier-awesome-card__price-amount {
        font-size: 3rem;
    }
}

.patreon-tier-awesome-card__price-period {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.patreon-tier-awesome-card__description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: rgba(104, 255, 157, 0.12);
    border-left: 3px solid var(--color-highlight);
    border-radius: 8px;
    font-style: normal;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
    overflow: visible;
    max-height: none;
    min-height: auto;
    height: auto;
    -webkit-line-clamp: none;
    -webkit-box-orient: unset;
    text-overflow: unset;
    white-space: normal;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .patreon-tier-awesome-card__description {
        font-size: 0.9375rem;
        padding: 1.125rem 1.5rem;
        line-height: 1.7;
    }
}

.patreon-tier-awesome-card__stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.patreon-tier-awesome-card__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.patreon-tier-awesome-card__stat strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.patreon-tier-awesome-card__stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.patreon-tier-awesome-card__benefits {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.patreon-tier-awesome-card__benefit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.5rem;
    position: relative;
}

.patreon-tier-awesome-card__benefit::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #68ff9d;
    font-weight: 700;
    font-size: 1.25rem;
}

.patreon-tier-awesome-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-highlight) 0%, var(--color-warm) 100%);
    color: #04130a;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(104, 255, 157, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.patreon-tier-awesome-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(104, 255, 157, 0.4);
    background: linear-gradient(135deg, var(--color-warm) 0%, var(--color-highlight) 100%);
}

.patreon-tier-awesome-card__button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.patreon-tier-awesome-card__button:hover svg {
    transform: translateX(4px);
}

/* Main CTA */
.patreon-awesome-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.patreon-awesome-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 3rem;
    background: var(--color-highlight-soft);
    border: 2px solid var(--color-highlight);
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(104, 255, 157, 0.2);
    max-width: 500px;
}

.patreon-awesome-main-cta:hover {
    transform: translateY(-4px);
    border-color: var(--color-highlight);
    box-shadow: 0 16px 48px rgba(104, 255, 157, 0.3);
    background: var(--color-highlight-soft);
}

.patreon-awesome-main-cta__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    border-radius: 16px;
    color: #04130a;
    box-shadow: 0 8px 24px rgba(104, 255, 157, 0.3);
    flex-shrink: 0;
}

.patreon-awesome-main-cta__icon svg {
    width: 32px;
    height: 32px;
}

.patreon-awesome-main-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.patreon-awesome-main-cta__text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.patreon-awesome-main-cta__subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.patreon-awesome-main-cta__arrow {
    font-size: 1.75rem;
    color: var(--color-highlight);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.patreon-awesome-main-cta:hover .patreon-awesome-main-cta__arrow {
    transform: translateX(8px);
}

/* Responsive */
@media (max-width: 1024px) {
    .patreon-awesome-tiers {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .patreon-awesome-section {
        padding: 4rem 0;
        margin: 3rem 0;
    }
    
    .patreon-awesome-title {
        font-size: 2.75rem;
    }
    
    .patreon-awesome-subtitle {
        font-size: 1.125rem;
    }
    
    .patreon-awesome-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .patreon-awesome-stat-card {
        width: 100%;
        max-width: 300px;
        padding: 1.5rem 2rem;
    }
    
    .patreon-awesome-stat-value {
        font-size: 2.5rem;
    }
    
    .patreon-awesome-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .patreon-tier-awesome-card {
        padding: 2.5rem 2rem;
        min-height: auto;
    }
    
    .patreon-tier-awesome-card__title {
        font-size: 1.5rem;
        min-height: 2.25rem;
    }
    
    .patreon-tier-awesome-card__price-amount {
        font-size: 2.25rem;
    }
    
    .patreon-awesome-main-cta {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    
    .patreon-awesome-main-cta__content {
        align-items: center;
        text-align: center;
    }
}

/* Generic cards for other pages */
.video-grid,
.post-grid,
.teaser-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-card,
.post-card,
.teaser-card {
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.post-card__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: rgba(8, 24, 15, 0.5);
}

.post-card__image img,
.post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.26);
    color: #3b280d;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.post-card__content,
.video-card__content {
    padding: 1.6rem;
    display: grid;
    gap: 0.7rem;
}

.filter-bar {
    margin: 2.2rem 0 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.6rem 2rem;
    border-radius: 18px;
    background: rgba(8, 24, 15, 0.88);
    border: 1px solid var(--color-border);
}

.filter-bar label {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.filter-bar input {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(5, 14, 9, 0.9);
    color: var(--color-text);
    min-width: 240px;
}

.filter-bar button {
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #062515;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    margin: 3rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pagination a {
    color: var(--color-highlight);
}

/* Detail pages */
.article-header {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.6rem;
}

.article-badge {
    width: fit-content;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(104, 255, 157, 0.18);
    color: rgba(230, 255, 240, 0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.article-meta {
    display: flex;
    gap: 1.4rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.article-image {
    margin: 2.4rem 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.article-tags span {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 179, 71, 0.24);
    color: #3b280d;
}

.contact-wrapper {
    display: grid;
    gap: 2.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-info,
.contact-form-card {
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    padding: 2.4rem;
    box-shadow: var(--shadow-soft);
}

.form-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-group {
    display: grid;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: rgba(6, 16, 10, 0.9);
    color: var(--color-text);
    font-family: var(--font-body);
}

.form-checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: var(--color-muted);
    font-size: 0.84rem;
}

.flash {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    margin-bottom: 0.8rem;
    background: rgba(104, 255, 157, 0.2);
    border: 1px solid rgba(104, 255, 157, 0.3);
}

.flash--error {
    background: rgba(255, 99, 125, 0.18);
    border-color: rgba(255, 99, 125, 0.3);
}

.flash--success {
    background: rgba(104, 255, 157, 0.28);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(8, 24, 15, 0.95);
    border: 1px solid rgba(104, 255, 157, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    cursor: pointer;
}

.toast--show {
    opacity: 1;
    transform: translateX(0);
}

.toast--hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.toast--success {
    border-color: rgba(104, 255, 157, 0.5);
    background: rgba(8, 24, 15, 0.98);
}

.toast--success .toast__icon {
    color: var(--color-highlight);
}

.toast--error {
    border-color: rgba(255, 99, 125, 0.5);
    background: rgba(24, 8, 12, 0.98);
}

.toast--error .toast__icon {
    color: #ff637d;
}

.toast--warning {
    border-color: rgba(255, 179, 71, 0.5);
    background: rgba(24, 20, 8, 0.98);
}

.toast--warning .toast__icon {
    color: var(--color-warm);
}

.toast--info {
    border-color: rgba(106, 154, 118, 0.5);
    background: rgba(8, 24, 15, 0.98);
}

.toast--info .toast__icon {
    color: rgba(106, 154, 118, 1);
}

.toast__message {
    flex: 1;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.toast__close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast__close:hover {
    color: var(--color-text);
    background: rgba(104, 255, 157, 0.1);
}

@media (max-width: 640px) {
    .toast-container {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        max-width: none;
    }

    .toast {
        transform: translateY(-100px);
    }

    .toast--show {
        transform: translateY(0);
    }

    .toast--hide {
        transform: translateY(-100px);
    }
}

/* Print Styles - Verbessert */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        max-width: 100%;
        margin: 0;
        padding: 1cm;
    }

    /* Header & Navigation ausblenden */
    .site-header,
    .site-footer,
    .breadcrumbs,
    nav,
    .filter-bar,
    .tag-cloud,
    .search-form-large,
    .pagination,
    .article-share,
    .related-posts,
    .comments-section,
    .skip-to-content,
    .scroll-progress,
    .back-to-top {
        display: none !important;
    }

    /* Artikel-Formatierung */
    article {
        page-break-inside: avoid;
        margin-bottom: 2cm;
    }

    .article-header {
        margin-bottom: 1.5cm;
        border-bottom: 2pt solid black;
        padding-bottom: 0.5cm;
    }

    .article-header h1 {
        font-size: 18pt;
        margin-bottom: 0.5cm;
        page-break-after: avoid;
    }

    .article-meta {
        font-size: 10pt;
        color: #666;
    }

    .article-content {
        font-size: 11pt;
        line-height: 1.6;
    }

    .article-content h2 {
        font-size: 14pt;
        margin-top: 1cm;
        margin-bottom: 0.5cm;
        page-break-after: avoid;
    }

    .article-content h3 {
        font-size: 12pt;
        margin-top: 0.75cm;
        margin-bottom: 0.4cm;
        page-break-after: avoid;
    }

    .article-content p {
        margin-bottom: 0.5cm;
        orphans: 3;
        widows: 3;
    }

    .article-content img {
        max-width: 100% !important;
        height: auto !important;
        page-break-inside: avoid;
        display: block;
        margin: 1cm auto;
    }

    .article-content figure {
        page-break-inside: avoid;
        margin: 1cm 0;
    }

    .article-content blockquote {
        border-left: 3pt solid #333;
        padding-left: 1cm;
        margin: 1cm 0;
        font-style: italic;
        page-break-inside: avoid;
    }

    .article-content ul,
    .article-content ol {
        margin: 0.75cm 0;
        padding-left: 1.5cm;
    }

    .article-content li {
        margin-bottom: 0.3cm;
    }

    .article-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1cm 0;
        page-break-inside: avoid;
    }

    .article-content table th,
    .article-content table td {
        border: 1pt solid #333;
        padding: 0.3cm;
    }

    .article-content table th {
        background: #f0f0f0 !important;
        font-weight: bold;
    }

    .article-content a {
        color: black !important;
        text-decoration: underline;
    }

    .article-content a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    /* Seitenumbrüche */
    .article-header,
    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    /* URLs anzeigen */
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    /* Container */
    .container {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Badges & Buttons */
    .article-badge,
    .post-card__badge,
    button,
    .button-primary,
    .button-secondary {
        display: none !important;
    }

    /* Code-Blöcke */
    .article-content pre,
    .article-content code {
        background: #f5f5f5 !important;
        border: 1pt solid #ccc;
        padding: 0.3cm;
        page-break-inside: avoid;
        font-size: 10pt;
    }

    /* Seitenzahlen */
    @page {
        margin: 2cm;
        size: A4;
    }

    @page :first {
        margin-top: 3cm;
    }
}

/* Print Styles - Legacy */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .site-header,
    .site-footer,
    .site-nav,
    .site-search,
    .site-cta,
    .mobile-menu-toggle,
    .back-to-top,
    .scroll-progress,
    .toast-container,
    .hero__logo-wrapper,
    .hero__cta,
    .cookie-banner,
    .article-comments,
    .share-buttons,
    .related-posts {
        display: none !important;
    }

    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    article {
        page-break-inside: avoid;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    a {
        text-decoration: underline;
    }

    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .article-header {
        margin-bottom: 1em;
    }

    .article-content {
        font-size: 11pt;
    }

    .breadcrumbs {
        margin-bottom: 1em;
        font-size: 10pt;
    }
}

/* Loading States */
button.loading,
.button-primary.loading,
.button-secondary.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

button.loading::after,
.button-primary.loading::after,
.button-secondary.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

button.loading::after {
    border-color: var(--color-text);
    border-top-color: transparent;
}

.button-primary.loading::after {
    border-color: #062515;
    border-top-color: transparent;
}

.button-secondary.loading::after {
    border-color: var(--color-text);
    border-top-color: transparent;
}

/* Archive Styles */
.archive-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.archive-sidebar {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.archive-sidebar h2 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-highlight);
}

.archive-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.archive-year a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.archive-year a:hover,
.archive-year a.active {
    background: rgba(104, 255, 157, 0.1);
    color: var(--color-highlight);
}

.archive-year a span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.archive-months {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.archive-months li a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.archive-months li a:hover,
.archive-months li a.active {
    background: rgba(104, 255, 157, 0.08);
    color: var(--color-highlight);
}

.archive-content h2 {
    margin-bottom: 2rem;
    color: var(--color-highlight);
}

@media (max-width: 968px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }

    .archive-sidebar {
        position: static;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header--split {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 860px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .site-header__wrap {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-logo {
        flex: 1;
        min-width: 0;
    }

    .logo-text {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(4, 13, 9, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        border-left: 1px solid rgba(104, 255, 157, 0.2);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav[aria-expanded="true"] {
        right: 0;
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .site-nav[aria-expanded="true"]::before {
        opacity: 1;
        pointer-events: all;
    }

    .site-nav a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(104, 255, 157, 0.1);
        font-size: 1rem;
    }

    .site-nav a:hover,
    .site-nav a.active {
        color: var(--color-highlight);
        padding-left: 1rem;
    }

    .site-search {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }

    .site-search .search-form {
        width: 100%;
    }

    .site-search input {
        width: 100%;
    }

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

    .stories__grid,
    .community__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 2rem);
    }

    .hero__cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        width: 100%;
        min-width: auto;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .hero__stats li {
        padding: 1rem;
    }

    .community__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .flavour-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flavour-card {
        padding: 1.5rem;
    }

    .section-header--split {
        flex-direction: column;
        gap: 1rem;
    }
}

    .hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .section-header--split {
        align-items: stretch;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.6rem;
    }
}

/* Search */
.site-search {
    display: flex;
    align-items: center;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-form input[type="search"] {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 0.9rem;
    min-width: 200px;
}

.search-form button {
    padding: 0.5rem 1rem;
    background: var(--color-highlight);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form-large {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(8, 24, 15, 0.88);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.search-form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-input-main {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: rgba(5, 14, 9, 0.9);
    color: var(--color-text);
    font-size: 1rem;
}

.search-submit-btn {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #062515;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-filters .filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 150px;
}

.search-filters label {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-filters select,
.search-filters input[type="date"] {
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: rgba(5, 14, 9, 0.9);
    color: var(--color-text);
    font-size: 0.9rem;
}

.search-form-large select {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
}

.search-form-large button {
    padding: 0.75rem 1.5rem;
    background: var(--color-highlight);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Search Highlighting */
mark {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #062515;
    padding: 0.125rem 0.25rem;
    border-radius: 4px;
    font-weight: 600;
}

.search-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-muted);
}

.search-results {
    margin-top: 2rem;
}

.search-count {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.breadcrumbs a {
    color: var(--color-text-soft);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--color-highlight);
}

.breadcrumbs span:last-child {
    color: var(--color-text);
}

/* Social Sharing */
.article-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-share strong {
    font-weight: 600;
    color: var(--color-text);
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.share-button:hover {
    background: var(--color-highlight-soft);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    transform: translateY(-2px);
}

.share-button--facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877f2;
    color: #1877f2;
}

.share-button--twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-button--whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    color: #25d366;
}

.share-button--linkedin:hover {
    background: rgba(0, 119, 181, 0.1);
    border-color: #0077b5;
    color: #0077b5;
}

.share-button--email:hover {
    background: rgba(104, 255, 157, 0.1);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

.share-button--copy:hover {
    background: rgba(104, 255, 157, 0.1);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner__content {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__text strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.cookie-banner__text p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.cookie-banner__text a {
    color: var(--color-highlight);
}

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
}

.button-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--color-highlight-soft);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-setting {
    margin-bottom: 1.5rem;
}

.cookie-setting label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-setting input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-setting strong {
    color: var(--color-text);
}

.cookie-setting p {
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Footer Meta */
.site-footer__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta-right {
    display: flex;
    gap: 1rem;
}

.rss-link {
    display: flex;
    align-items: center;
    color: var(--color-muted);
    transition: color 0.2s;
}

.rss-link:hover {
    color: var(--color-highlight);
}

/* Filter Bar Updates */
.filter-bar select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 1rem;
    min-width: 200px;
}

/* Error Pages */
.error-page {
    padding: 6rem 0 8rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    color: var(--color-highlight);
    opacity: 0.8;
    animation: errorPulse 2s ease-in-out infinite;
}

.error-icon--500 {
    color: var(--color-warm);
}

.error-icon--403 {
    color: #ff637d;
}

@keyframes errorPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.error-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-description {
    font-size: 1.2rem;
    color: var(--color-text-soft);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.error-actions .button-primary,
.error-actions .button-secondary,
.error-actions .button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.error-actions .button-primary {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    color: #04130a;
    border: none;
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.3);
}

.error-actions .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(104, 255, 157, 0.4);
}

.error-actions .button-secondary {
    background: rgba(104, 255, 157, 0.1);
    color: var(--color-highlight);
    border: 2px solid rgba(104, 255, 157, 0.3);
}

.error-actions .button-secondary:hover {
    background: rgba(104, 255, 157, 0.2);
    border-color: rgba(104, 255, 157, 0.5);
}

.error-actions .button-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.error-actions .button-outline:hover {
    background: rgba(104, 255, 157, 0.1);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

.error-info {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--color-border);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-info p {
    margin: 0 0 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.error-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.error-info li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-soft);
}

.error-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 700;
}

.error-suggestions {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-border);
}

.error-suggestions h2 {
    font-size: 2rem;
    margin: 0 0 2rem;
    text-align: center;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.suggestion-section {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.suggestion-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    color: var(--color-highlight);
}

.suggestion-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.suggestion-section li {
    padding: 0.75rem;
    background: rgba(8, 24, 15, 0.6);
    border-radius: 10px;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.suggestion-section li:hover {
    border-color: var(--color-highlight);
    transform: translateX(4px);
}

.suggestion-section a {
    color: var(--color-text);
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.suggestion-section a:hover {
    color: var(--color-highlight);
}

.error-search {
    text-align: center;
    margin-top: 3rem;
}

.error-search h3 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    color: var(--color-text);
}

.search-form-inline {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-form-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.search-form-inline input:focus {
    outline: none;
    border-color: var(--color-highlight);
    box-shadow: 0 0 0 4px rgba(104, 255, 157, 0.1);
}

.search-form-inline button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    border: none;
    border-radius: 12px;
    color: #04130a;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(104, 255, 157, 0.3);
}

.search-form-inline button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(104, 255, 157, 0.4);
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 2.5rem;
    }
    
    .error-icon {
        width: 100px;
        height: 100px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .button-primary,
    .error-actions .button-secondary,
    .error-actions .button-outline {
        width: 100%;
        justify-content: center;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form-inline {
        flex-direction: column;
    }
    
    .search-form-inline button {
        width: 100%;
        justify-content: center;
    }
    
    .site-search {
        width: 100%;
        margin-top: 1rem;
    }

    .search-form {
        width: 100%;
    }

    .search-form input[type="search"] {
        flex: 1;
        min-width: 0;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions button {
        flex: 1;
    }

    .article-share {
        flex-direction: column;
        align-items: stretch;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }

    .site-footer__meta {
        flex-direction: column;
        text-align: center;
    }
}

/* Newsletter */
.newsletter-signup {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0;
    margin-top: 3rem;
}

.newsletter-signup .container {
    text-align: center;
}

.newsletter-signup h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.newsletter-signup p {
    margin: 0 0 1.5rem;
    color: var(--color-text-soft);
}

.newsletter-signup form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-signup input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
}

.newsletter-signup button {
    padding: 0.75rem 2rem;
    background: var(--color-highlight);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#newsletter-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

#newsletter-message.success {
    background: rgba(104, 255, 157, 0.1);
    color: var(--color-highlight);
    border: 1px solid var(--color-highlight);
}

#newsletter-message.error {
    background: rgba(255, 71, 71, 0.1);
    color: #ff4747;
    border: 1px solid #ff4747;
}

/* Comments */
.article-comments {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.article-comments h2 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.comments-list {
    margin-bottom: 3rem;
}

.comment {
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.comment:hover {
    border-color: var(--color-highlight-soft);
}

.comment-depth-1 {
    margin-left: 2rem;
    background: rgba(8, 24, 15, 0.6);
}

.comment-depth-2 {
    margin-left: 4rem;
    background: rgba(8, 24, 15, 0.4);
}

.comment-depth-3 {
    margin-left: 6rem;
    background: rgba(8, 24, 15, 0.3);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comment-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.comment-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.comment-like-btn,
.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text-soft);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-like-btn:hover,
.comment-reply-btn:hover {
    background: var(--color-highlight-soft);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

.comment-like-btn.liked {
    background: var(--color-highlight-soft);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
}

.comment-like-btn.liked svg {
    fill: currentColor;
}

.comment-like-btn:disabled,
.comment-reply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.likes-count {
    font-weight: 600;
    min-width: 1.5rem;
    text-align: center;
}

.comment-replies {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.comment-author strong {
    color: var(--color-text);
}

.comment-author time {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.comment-content {
    color: var(--color-text-soft);
    line-height: 1.6;
}

.comment-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
}

.comment-form h3 {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: inherit;
    font-size: 1rem;
}

.comment-form textarea {
    resize: vertical;
    margin-bottom: 1rem;
}

.comment-form button {
    padding: 0.75rem 2rem;
    background: var(--color-highlight);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

#comment-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

#comment-message.success {
    background: rgba(104, 255, 157, 0.1);
    color: var(--color-highlight);
    border: 1px solid var(--color-highlight);
}

#comment-message.error {
    background: rgba(255, 71, 71, 0.1);
    color: #ff4747;
    border: 1px solid #ff4747;
}

/* Honeypot Fields - Sollten immer unsichtbar sein */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.honeypot-field input,
.honeypot-field label {
    display: none !important;
}

@media (max-width: 768px) {
    .newsletter-signup form {
        flex-direction: column;
    }

    .newsletter-signup input,
    .newsletter-signup button {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .comment-author {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Instagram Feed */
.instagram-feed {
    padding: 4.5rem 0;
    background: var(--color-surface);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.instagram-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.instagram-card__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-card__image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.instagram-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-card:hover .instagram-card__image img {
    transform: scale(1.05);
}

.instagram-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    pointer-events: none;
}

.instagram-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.instagram-card:hover .instagram-card__overlay {
    opacity: 1;
}

.instagram-card__overlay p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .instagram-card__overlay {
        opacity: 1;
        padding: 1rem;
    }

    .instagram-card__overlay p {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }

    /* Videos Page Clean Mobile */
    .videos-header {
        flex-direction: column;
    }

    .videos-header h1 {
        font-size: 2rem;
    }

    .videos-header p {
        font-size: 1rem;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .videos-grid-clean {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .load-more-btn-clean {
        width: 100%;
        min-width: auto;
    }
}

/* ============================================================================
   NEWSLETTER VERIFY PAGE
   ============================================================================ */

.newsletter-verify-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.newsletter-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.newsletter-success,
.newsletter-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-success svg {
    color: var(--color-highlight);
    stroke-width: 2.5;
}

.newsletter-error svg {
    color: #ff637d;
    stroke-width: 2.5;
}

.newsletter-success h2,
.newsletter-error h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.newsletter-success p,
.newsletter-error p {
    margin: 0;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.newsletter-success p:last-of-type,
.newsletter-error p:last-of-type {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .newsletter-success h2,
    .newsletter-error h2 {
        font-size: 1.5rem;
    }
}

/* Tag Cloud */
.tag-cloud {
    margin: 2.5rem 0 3rem;
    padding: 2rem;
    background: rgba(8, 24, 15, 0.88);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.tag-cloud h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.tag-cloud-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(5, 14, 9, 0.9);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.4;
}

.tag-cloud-item:hover {
    background: var(--color-highlight-soft);
    border-color: var(--color-highlight);
    color: var(--color-highlight);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 255, 157, 0.2);
}

.tag-cloud-item.is-active {
    background: linear-gradient(135deg, var(--color-highlight), var(--color-warm));
    border-color: var(--color-highlight);
    color: #062515;
    font-weight: 600;
}

.tag-count {
    font-size: 0.75em;
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(4, 19, 10, 0.95) 0%, rgba(8, 24, 15, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/public/assets/images/cannabis-side.png') center/cover no-repeat;
    opacity: 0.05;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero__lead {
    font-size: 1.375rem;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.about-mission {
    padding: 5rem 0;
    background: var(--color-bg);
}

.about-mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mission__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-mission__content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    margin-bottom: 1.25rem;
}

.about-mission__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-card {
    background: rgba(8, 24, 15, 0.92);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    max-width: 400px;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: var(--shadow-glow);
}

.mission-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-highlight-soft);
    border-radius: 20px;
    color: var(--color-highlight);
}

.mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.mission-card p {
    color: var(--color-text-soft);
    line-height: 1.7;
}

.about-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(8, 24, 15, 0.5) 0%, rgba(4, 19, 10, 0.8) 100%);
}

.about-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(8, 24, 15, 0.92);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(104, 255, 157, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-highlight);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-highlight-soft);
    border-radius: 16px;
    color: var(--color-highlight);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--color-text-soft);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.about-team {
    padding: 5rem 0;
    background: var(--color-bg);
}

.about-team__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-team__text {
    margin-top: 2rem;
}

.about-team__text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    margin-bottom: 1.5rem;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(8, 24, 15, 0.95) 0%, rgba(4, 19, 10, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/public/assets/images/cannabis-side.png') center/cover no-repeat;
    opacity: 0.05;
    mix-blend-mode: screen;
    pointer-events: none;
}

.about-cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta__content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.about-cta__content p {
    font-size: 1.25rem;
    color: var(--color-text-soft);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-cta__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 0 3rem;
    }
    
    .about-hero__lead {
        font-size: 1.125rem;
    }
    
    .about-mission {
        padding: 3rem 0;
    }
    
    .about-mission__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-mission__content h2 {
        font-size: 2rem;
    }
    
    .about-features {
        padding: 3rem 0;
    }
    
    .about-features__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-team {
        padding: 3rem 0;
    }
    
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-cta__content h2 {
        font-size: 2rem;
    }
    
    .about-cta__content p {
        font-size: 1.125rem;
    }
    
    .about-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-cta__buttons .button-primary,
    .about-cta__buttons .button-outline {
        width: 100%;
    }
}

.tag-cloud-item.is-active .tag-count {
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

@media (max-width: 768px) {
    .tag-cloud {
        padding: 1.5rem;
    }
    
    .tag-cloud-items {
        gap: 0.5rem;
    }
    
    .tag-cloud-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9em;
    }
}

/* Video Embeds */
.video-embed {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: rgba(8, 24, 15, 0.5);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.article-content .video-embed {
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .video-embed {
        margin: 1.5rem 0;
        border-radius: 8px;
    }
    
    .video-embed iframe {
        border-radius: 8px;
    }
}

/* Verbesserte Bild-Darstellung in Artikeln */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.article-content figure {
    margin: 2rem 0;
    text-align: center;
}

.article-content figure img {
    margin: 0;
}

.article-content figure figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    font-style: italic;
}

