:root {
    --primary-gold: #f0b429;
    --primary-gold-light: #ffc300;
    --primary-gold-dark: #d4a012;
    --dark-blue: #1d3557;
    --dark-blue-light: #3d5a80;
    --darker-bg: #152238;
    --darkest-bg: #0f1a2b;
    --card-bg: #1d3557;
    --card-border: #3d5a80;
    --white: #ffffff;
    --gray-light: #e5e7eb;
    --gray: #9ca3af;
    --youtube-red: #FF0000;
    --instagram-pink: #E4405F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--darkest-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at 10% 0%, rgba(240, 180, 41, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(61, 90, 128, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--darkest-bg) 0%, var(--darker-bg) 100%);
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-lg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 26, 43, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 180, 41, 0.2);
}

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

.logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

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

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.nav-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--white);
}

.nav-social a:hover {
    transform: translateY(-2px);
}

.nav-social a.youtube:hover {
    background: var(--youtube-red);
    border-color: var(--youtube-red);
}

.nav-social a.instagram:hover {
    background: var(--instagram-pink);
    border-color: var(--instagram-pink);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-gold);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--darkest-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 180, 41, 0.3);
}

.btn-primary svg {
    fill: var(--darkest-bg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--card-border);
    color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-secondary:hover svg {
    fill: var(--primary-gold);
}

.btn-secondary svg {
    fill: var(--white);
    transition: fill 0.3s ease;
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--dark-blue), var(--darker-bg));
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--card-border);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Sections */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
}

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

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(240, 180, 41, 0.15);
    border: 1px solid rgba(240, 180, 41, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary-gold);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(29, 53, 87, 0.3) 50%, transparent 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-card {
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

.about-profile {
    text-align: center;
    margin-bottom: 2rem;
}

.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.about-handle {
    color: var(--primary-gold);
    font-weight: 600;
}

.about-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(240, 180, 41, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(240, 180, 41, 0.2);
}

.about-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.about-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.2rem;
}

.about-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

/* Gold Social Buttons im About-Bereich und Footer */
.about-social-link,
.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--darkest-bg);
}

.about-social-link:hover,
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 180, 41, 0.5);
    background: var(--primary-gold-light);
    border-color: var(--primary-gold-light);
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.tag {
    padding: 0.6rem 1.2rem;
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Videos Section */
.videos {
    background: var(--darker-bg);
}

.videos-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 25px 60px rgba(240, 180, 41, 0.15);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    background: var(--darkest-bg);
}

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

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

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(240, 180, 41, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid var(--darkest-bg);
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    margin-left: 5px;
}

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

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.8rem;
}

/* Video Error State */
.video-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    border-radius: 20px;
}

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

.video-error h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.video-error p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Stats Error State */
.stat-error {
    color: var(--gray);
    font-weight: 700;
    cursor: help;
}

/* Instagram Section - WICHTIG: .instagram-section statt .instagram */
.instagram-section {
    background: linear-gradient(180deg, var(--darker-bg), var(--darkest-bg));
}

.instagram-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.instagram-stat {
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    min-width: 150px;
}

.instagram-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.instagram-stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.instagram-cta {
    text-align: center;
}

/* Impressum Section */
.impressum {
    background: var(--darkest-bg);
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    padding: 3rem;
    border-radius: 24px;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.impressum-item {
    padding: 1.5rem;
    background: var(--darker-bg);
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.impressum-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.impressum-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.impressum-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: opacity 0.3s;
}

.impressum-item a:hover {
    opacity: 0.8;
}

.impressum-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(240, 180, 41, 0.1);
    border-left: 4px solid var(--primary-gold);
    border-radius: 0 16px 16px 0;
}

.impressum-notice h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.impressum-notice p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    padding: 3rem 4rem;
    background: var(--darkest-bg);
    border-top: 1px solid var(--card-border);
}

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

.footer-logo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 40px;
    border-radius: 6px;
}

.footer-social {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-text {
    flex: 1;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: right;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Refresh Button */
.refresh-btn {
    background: var(--dark-blue);
    border: 1px solid var(--card-border);
    color: var(--gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.refresh-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

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

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

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        max-width: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-card {
        position: static;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-social {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 43, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(240, 180, 41, 0.2);
    }

    .nav-links {
        top: 70px;
        z-index: 999;
    }

    .nav-social {
        top: auto;
        bottom: 0;
        position: fixed;
        transform: translateY(150%);
        flex-direction: row;
        padding: 1.5rem;
        border-top: 1px solid rgba(240, 180, 41, 0.2);
        border-bottom: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-social.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .impressum-content {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-social,
    .footer-text {
        flex: none;
        text-align: center;
    }
}