:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(20, 20, 25, 0.7);
    --accent-red: #ff0000;
    --accent-purple: #9C00FF;
    --accent-blue: #0066ff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border: 1px solid;
}

.btn-youtube {
    color: var(--text-primary);
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--accent-red);
}

.btn-youtube:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.btn-twitch {
    color: var(--text-primary);
    background: rgba(156, 0, 255, 0.1);
    border-color: var(--accent-purple);
}

.btn-twitch:hover {
    background: var(--accent-purple);
    transform: translateY(-2px);
}

.btn-discord {
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--accent-blue);
}

.btn-discord:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--accent-red);
}

.cta-button:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16/9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Pages */
.content-page {
    max-width: 1200px;
    margin: 120px auto 0;
    padding: 4rem 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

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

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Live Container */
.live-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    height: 600px;
}

.twitch-embed,
.live-chat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 2rem;
}

.legal-page a {
    color: var(--accent-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.legal-page a:hover {
    border-bottom-color: var(--accent-red);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 4rem;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 8rem 2rem;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.error-page p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Live Stream Layout */
.live-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 1.3fr);
    gap: 2rem;
    align-items: flex-start;
}

.live-main {
    min-width: 0;
}

.live-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Live Cards */
.live-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 16px 40px var(--shadow-color);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    padding: 1.5rem;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.live-header h2 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.live-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}

.live-status-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff2d55;
    box-shadow: 0 0 8px rgba(255, 45, 85, 0.9);
}

/* Player & Chat */
.live-player {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.live-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-chat-card {
    padding: 1rem 1rem 0.75rem;
}

.live-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.live-chat-header h3 {
    font-size: 1rem;
}

.live-chat-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(145, 70, 255, 0.16);
    border: 1px solid rgba(145, 70, 255, 0.5);
}

.live-chat-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000;
    height: 420px;
}

.live-chat-embed iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.live-actions {
    display: flex;
    justify-content: center;
}

.live-twitch-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
}

/* Glassmorph Feinheiten für Live */
[data-theme="glassmorphism"] .live-card {
    background: rgba(10, 10, 20, 0.75);
}

/* Responsive */
@media (max-width: 1024px) {
    .live-wrapper {
        grid-template-columns: 1fr;
    }

    .live-sidebar {
        flex-direction: column;
    }

    .live-chat-embed {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .live-chat-embed {
        height: 320px;
    }
}


/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.video-container {
    animation: fadeInUp 0.8s ease-out;
}

.video-container {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .nav-links,
    .social-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    
    .live-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .twitch-embed {
        height: 400px;
    }
    
    .live-chat {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* Lazy Load Placeholder */
.video-thumbnail img.lazy-load {
    filter: blur(10px);
    opacity: 0.5;
}

.video-thumbnail img.lazy-loaded {
    filter: blur(0);
    opacity: 1;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.video-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.video-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.video-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.loading-state,
.error-state {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.error-state p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Responsive Video Grid */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

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

.thumbnail-image {
    transition: opacity 0.3s ease;
}

.video-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: black;
    animation: fadeIn 0.3s ease;
}

.video-preview-container iframe {
    pointer-events: none;
}

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

.play-overlay {
    transition: opacity 0.3s ease;
}

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

.video-thumbnail:hover .play-overlay {
    transition-delay: 1s;
}

@media (max-width: 768px) {
    .video-preview-container {
        display: none !important;
    }
}
/* Video Player Modal */
.video-player-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-player-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-player-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-player-container {
    position: relative;
    width: 90%;
    max-width: 1400px;
    max-height: 90vh;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.3s ease;
}

.video-player-modal.active .video-player-container {
    transform: scale(1);
    opacity: 1;
}

.video-player-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-player-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: black;
}

.video-player-wrapper iframe,
.video-player-wrapper #video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player-info {
    padding: 2rem;
    background: var(--bg-secondary);
}

.video-player-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.video-player-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.video-player-yt-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.video-player-yt-link:hover {
    background: #cc0000;
    transform: translateX(5px);
}

/* Video Thumbnail jetzt clickable */
.video-thumbnail {
    cursor: pointer;
}

.video-title span {
    transition: color 0.2s;
}

.video-title span:hover {
    color: var(--accent-red);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .video-player-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .video-player-info {
        padding: 1.5rem;
    }
    
    .video-player-info h2 {
        font-size: 1.2rem;
    }
    
    .video-player-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Animation beim Öffnen */
@keyframes modalOpen {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
/* Video Player Info mit Actions */
.video-player-info {
    padding: 2rem;
    background: var(--bg-secondary);
}

.video-player-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.video-player-meta {
    flex: 1;
    min-width: 250px;
}

.video-player-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.video-player-info #video-player-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.video-player-info #video-player-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

/* Action Buttons */
.video-player-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.video-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.video-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.video-action-btn svg {
    flex-shrink: 0;
}

/* Like Button */
.video-action-btn:nth-child(1):hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* Subscribe Button */
.video-subscribe-btn {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.video-subscribe-btn:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px) scale(1.05);
}

/* YouTube Button */
.video-yt-btn:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--accent-red);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .video-player-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-player-actions {
        width: 100%;
    }
    
    .video-action-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
    
    .video-action-btn span {
        display: none;
    }
    
    /* Icons only auf Mobile */
    .video-action-btn {
        padding: 0.65rem;
    }
    
    .video-action-btn svg {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .video-player-info {
        padding: 1.5rem;
    }
    
    .video-player-info h2 {
        font-size: 1.2rem;
    }
}

/* Custom Video Controls */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 3rem 1.5rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.video-player-wrapper:hover .custom-video-controls {
    opacity: 1;
}

/* Progress Bar */
.controls-progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.progress-bar-buffered {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.1s linear;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-red);
    transition: width 0.1s linear;
}

.controls-progress-bar:hover {
    height: 7px;
}

.controls-progress-bar:hover .progress-bar-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Controls Bottom */
.controls-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* Time Display */
.time-display {
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

/* Mobile - Controls vereinfachen */
@media (max-width: 768px) {
    .custom-video-controls {
        padding: 2rem 1rem 0.75rem;
    }
    
    .volume-control {
        display: none;
    }
    
    .time-display {
        font-size: 0.8rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

.cookie-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-banner-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--accent-red);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.cookie-link:hover {
    border-bottom-color: var(--accent-red);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
}

.cookie-btn-accept:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.cookie-btn-necessary {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

/* Blocked Content Placeholder */
.content-blocked {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.content-blocked h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-blocked p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.content-blocked button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.content-blocked button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Cookie Settings Link im Footer */
.cookie-settings-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.cookie-settings-link:hover {
    color: var(--text-primary);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease-out;
}

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

.cookie-modal-closing {
    animation: fadeOut 0.3s ease-out;
}

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

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.cookie-modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.cookie-modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cookie-modal-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cookie-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.cookie-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.2s;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-option-header {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.cookie-option p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cookie-modal-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid;
    width: 100%;
}

.cookie-modal-btn-primary {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: white;
}

.cookie-modal-btn-primary:hover {
    background: #cc0000;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.cookie-modal-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.cookie-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cookie-modal-btn-tertiary {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.cookie-modal-btn-tertiary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.cookie-modal-link {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.cookie-modal-link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

/* Notification */
.cookie-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.cookie-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Blocked Content Placeholder */
.content-blocked {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.content-blocked h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-blocked p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.content-blocked button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.content-blocked button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Cookie Settings Link im Footer */
.cookie-settings-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
}

.cookie-settings-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .cookie-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .cookie-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .cookie-modal-icon {
        font-size: 3rem;
    }
    
    .cookie-notification {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .cookie-modal-content {
        padding: 1.5rem 1rem;
    }
    
    .cookie-modal-btn {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }
}
/* Cookie Reminder Banner (klein am Bottom) */
.cookie-reminder-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 9999;
    transition: bottom 0.3s ease-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-reminder-banner.show {
    bottom: 0;
}

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

.cookie-reminder-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-reminder-btn {
    padding: 0.6rem 1.2rem;
    background: var(--accent-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-reminder-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-reminder-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .cookie-reminder-btn {
        width: 100%;
    }
}


/* Hero Video Wrapper */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

#hero-youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Custom Controls */
.hero-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 3rem 1.5rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.hero-video-wrapper:hover .hero-controls {
    opacity: 1;
}

/* Mobile - Controls immer sichtbar */
@media (max-width: 768px) {
    .hero-controls {
        opacity: 1;
        padding: 2rem 1rem 0.75rem;
    }
}

/* Fullscreen Styling */
.hero-video-wrapper:fullscreen {
    background: black;
}

.hero-video-wrapper:fullscreen .hero-controls {
    opacity: 1;
}

.hero-video-wrapper:fullscreen #hero-youtube-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
}

/* Footer Credits als eigene Section */
.footer-credits-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-left: 1px solid var(--border-color);
    padding-left: 2rem;
}

.footer-credits-section .credits-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.credits-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.credits-container:hover .credits-logo {
    border-color: var(--accent-red);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.credits-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.credits-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credits-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.credits-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.credits-links a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.credits-links a:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Responsive - Auf Mobile 4 Spalten → 1 Spalte */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-credits-section {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-credits-section {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .credits-logo {
        width: 50px;
        height: 50px;
    }
    
    .credits-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .credits-links a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
