:root {
            --tsv-rot: #ab0921;
            --tsv-rot-hover: #8a0719;
            --dunkelgrau: #3f3b3b;
            --hellgrau: #5b585f;
            --hintergrund: #f8f9fa;
            --weiss: #ffffff;
            --schatten: 0 4px 6px rgba(0, 0, 0, 0.1);
            --schatten-hover: 0 8px 12px rgba(0, 0, 0, 0.15);
        }

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

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            line-height: 1.6;
            color: var(--dunkelgrau);
            background-color: var(--hintergrund);
        }

        /* OPTION 2: Minimal Clean Hero Section */
        .hero {
            background-image: url('/wp-content/uploads/2025/07/tsv-gelaende-gray-1-scaled.jpg');
            background-size: cover;
            background-position: center;
            color: var(--weiss);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(171, 9, 33, 0.2) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-logo {
            width: 280px;
            height: auto;
            margin-bottom: 40px;
            filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
        }

        h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
            font-weight: 300;
            letter-spacing: -2px;
        }

        .subtitle {
            font-size: 1.6rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .date-card {
            background: rgba(255, 255, 255, 0.95);
            color: var(--tsv-rot);
            padding: 30px 50px;
            border-radius: 20px;
            font-size: 1.8rem;
            font-weight: 700;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-buttons .cta-button {
            padding: 18px 35px;
            font-size: 1.1rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        /* Tab Navigation */
        .tab-container {
            max-width: 1200px;
            margin: -40px auto 0;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .tab-nav {
            display: flex;
            background: var(--weiss);
            gap: 0;
            padding: 8px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .tab-button {
            flex: 1;
            padding: 25px;
            border: none;
            background: transparent;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            color: var(--dunkelgrau);
            border-radius: 8px;
        }

        .tab-button:hover {
            background: var(--hintergrund);
        }

        .tab-button.active {
            background: var(--tsv-rot);
            color: var(--weiss);
            transform: none;
        }

        .tab-button .day {
            display: block;
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }

        .tab-content.active {
            display: block;
        }

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

        /* Day Sections */
        .day-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 20px;
        }

        .day-card {
            background: var(--weiss);
            border-radius: 20px;
            box-shadow: var(--schatten);
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 0;
        }

        .day-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--schatten-hover);
        }

        .day-header {
            padding: 30px;
            background: var(--tsv-rot);
            color: var(--weiss) !important;
        }

        .day-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--weiss) !important;
        }

        .day-header .theme {
            font-style: italic;
            opacity: 0.9;
            font-size: 1.1rem;
            color: var(--weiss) !important;
        }

        .day-content {
            padding: 30px;
        }

        .event-item {
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            background: var(--hintergrund);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .event-item:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }

        .event-time {
            font-weight: bold;
            color: var(--tsv-rot);
            font-size: 1.2rem;
            min-width: 100px;
        }

        .event-details {
            flex: 1;
            margin-left: 20px;
        }

        .event-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dunkelgrau);
            margin-bottom: 5px;
        }

        .event-description {
            color: var(--hellgrau);
            font-size: 0.95rem;
        }

        .event-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            margin-left: 20px;
        }

        /* Info Boxes */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .info-box {
            background: var(--weiss);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--schatten);
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--schatten-hover);
        }

        .info-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .info-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dunkelgrau);
        }

        /* CTA Buttons */
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--tsv-rot);
            color: var(--weiss);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--schatten);
            margin: 10px;
            border: 2px solid var(--tsv-rot);
        }

        .cta-button:hover {
            background: var(--tsv-rot-hover);
            transform: translateY(-2px);
            box-shadow: var(--schatten-hover);
        }

        .cta-button.secondary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--tsv-rot);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cta-button.secondary:hover {
            background: var(--tsv-rot);
            color: var(--weiss);
            border: 2px solid var(--tsv-rot);
        }

        /* Sponsors Section */
        .sponsors {
            background: var(--weiss);
            padding: 60px 20px;
            text-align: center;
            margin-top: 60px;
        }

        .sponsors h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dunkelgrau);
        }

        .sponsor-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1000px;
            margin: 0 auto;
        }

        .sponsor-item {
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .sponsor-item:hover {
            opacity: 1;
        }

        .sponsor-item img {
            max-height: 60px;
            width: auto;
        }

        /* Share Buttons */
        .share-section {
            text-align: center;
            padding: 40px 20px;
            background: var(--hintergrund);
        }

        .share-button {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            margin: 5px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: var(--schatten);
        }

        .share-button.whatsapp {
            background: var(--weiss);
            color: #25D366;
            border: 2px solid #25D366;
        }

        .share-button.whatsapp:hover {
            background: #25D366;
            color: var(--weiss);
        }

        .share-button.facebook {
            background: var(--weiss);
            color: #1877f2;
            border: 2px solid #1877f2;
        }

        .share-button.facebook:hover {
            background: #1877f2;
            color: var(--weiss);
        }

        .share-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--schatten-hover);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 600px;
                padding: 60px 20px;
            }

            .hero-logo {
                width: 200px;
                margin-bottom: 30px;
            }

            h1 {
                font-size: 2.5rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .date-card {
                font-size: 1.4rem;
                padding: 20px 30px;
                margin-bottom: 40px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .tab-button {
                padding: 20px 15px;
                font-size: 0.95rem;
            }

            .tab-button .day {
                font-size: 0.8rem;
            }

            .event-item {
                flex-direction: column;
                text-align: center;
            }

            .event-time {
                margin-bottom: 10px;
            }

            .event-details {
                margin-left: 0;
            }

            .event-image {
                margin: 15px 0 0 0;
            }

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