 /* Custom Clean CSS Styles */
    :root {
        /* ZUERST dunkle Farben */
        --brand-dark: #050508;
        --brand-surface: #0f111a;
        /* DANN andere Neonfarben */
        --neon-purple: #bc13fe;
        --neon-pink: #ff00f7;
        --neon-yellow: #f7ff00;
        --neon-green: #39ff14;
        /* ZULETZT cyan */
        --neon-cyan: #00f7ff;
    }

    body {
        background-color: #050508;
        color: #e2e8f0;
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-display {
        font-family: 'Exo 2', sans-serif;
    }/* Scrollbar */

    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0f111a;
    }

    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--neon-cyan);
    }/* Glassmorphism Classes */

    .glass-panel {
        background: rgba(20, 20, 30, 0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .glass-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        transition: all 0.4s ease;
    }

    .glass-card:hover {
        border-color: rgba(0, 247, 255, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 40px -10px rgba(0, 247, 255, 0.15);
    }/* Text Effects */

    .text-glow {
        text-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
    }

    .gradient-text {
        background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }/* Service Image Hover */

    .service-img-wrap {
        overflow: hidden;
    }

    .service-img-wrap img {
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .group:hover .service-img-wrap img {
        transform: scale(1.1);
    }

    .header-slider {
        position: absolute;
        inset: 0;
        z-index: 0;
        4s
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/bild-9.webp');
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.8s ease-in-out;
    }

    .slide.active {
        opacity: 1;
        transition: all 5s
    }

/* Animations */

    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Custom Input */

    .input-clean {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .input-clean:focus {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--neon-cyan);
        outline: none;
        box-shadow: 0 0 0 1px rgba(0, 247, 255, 0.2);
    }/* Nav Active State */

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--neon-cyan);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }/* Slider Styling für Cookie Toggles */

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: #00f7ff;
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }/* Breadcrumb */

    .breadcrumb {
        font-size: 0.875rem;
        color: #94a3b8;
    }

    .breadcrumb a:hover {
        color: #00f7ff;
    }/* Partner Section Styling */

    .partner-item-minimal {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .partner-item-minimal:hover {
        transform: translateY(-5px);
    }

    .partner-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .partner-icon svg {
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .partner-item-minimal:hover .partner-icon svg {
        color: var(--neon-green);
    }

    .partner-name-minimal {
        font-family: 'Exo 2', sans-serif;
        font-weight: 700;
        font-size: 0.875rem;
        text-align: center;
        color: #ffffff;
    }/* Timeline Styling */

    .timeline-item {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1.5rem;
        /* Reduziert von 3rem */
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
    }

    .timeline-dot {
        position: absolute;
        left: -6px;
        top: 0;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #00f7ff;
        box-shadow: 0 0 10px #00f7ff;
    }/* Philosophy Grid */

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

    .philosophy-card {
        background: rgba(30, 30, 40, 0.6);
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

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

    .philosophy-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #00f7ff, #0066ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: #000;
        font-size: 1.5rem;
    }

/* Testimonial Styling */



            /* Gig Cards with shimmering ice-blue to violet glass effect */
            .gig-card-pop {
              background: linear-gradient(145deg, 
                rgba(0, 247, 255, 0.2) 0%, 
                rgba(188, 19, 254, 0.25) 50%,
                rgba(255, 0, 247, 0.15) 100%);
              backdrop-filter: blur(12px);
              border-radius: 16px;
              padding: 1.75rem;
              border: 1px solid rgba(255, 255, 255, 0.15);
              transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
              box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(0, 247, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.05);
              position: relative;
              overflow: hidden;
            }

            .gig-card-pop::before {
              content: '';
              position: absolute;
              top: -50%;
              left: -50%;
              width: 200%;
              height: 200%;
              background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 255, 255, 0.1) 50%,
                transparent 70%
              );
              transform: rotate(30deg);
              transition: transform 0.8s ease;
              z-index: 0;
            }

            .gig-card-pop:hover::before {
              transform: rotate(30deg) translate(20%, 20%);
            }

            .gig-card-pop > * {
              position: relative;
              z-index: 1;
            }

            .gig-card-pop:hover {
              transform: translateY(-8px) scale(1.02);
              box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(188, 19, 254, 0.3),
                0 0 60px rgba(0, 247, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
              border-color: rgba(255, 255, 255, 0.3);
            }

            .gig-card-pop .date-box {
              background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), rgba(188, 19, 254, 0.2));
              border-radius: 12px;
              padding: 0.75rem;
              min-width: 70px;
              text-align: center;
              border: 1px solid rgba(255, 255, 255, 0.1);
              box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            .gig-card-pop .event-title {
              background: linear-gradient(90deg, #ffffff, #00f7ff);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent;
              background-clip: text;
              text-shadow: 0 2px 10px rgba(0, 247, 255, 0.3);
              font-weight: 800;
              letter-spacing: -0.5px;
            }

            .gig-card-pop .status-badge {
              background: linear-gradient(90deg, #00f7ff, #bc13fe);
              color: #000;
              font-weight: 800;
              font-size: 0.7rem;
              padding: 0.25rem 0.75rem;
              border-radius: 20px;
              text-transform: uppercase;
              letter-spacing: 1px;
              box-shadow: 0 4px 15px rgba(0, 247, 255, 0.3);
            }

            .gig-card-pop .highlight-badge {
              background: linear-gradient(90deg, #f7ff00, #39ff14);
              color: #000;
              font-weight: 800;
              font-size: 0.7rem;
              padding: 0.25rem 0.75rem;
              border-radius: 20px;
              text-transform: uppercase;
              letter-spacing: 1px;
              box-shadow: 0 4px 15px rgba(247, 255, 0, 0.4);
              animation: pulse-glow 2s infinite;
            }

            @keyframes pulse-glow {
              0%, 100% {
                box-shadow: 0 4px 15px rgba(247, 255, 0, 0.4);
              }
              50% {
                box-shadow: 0 4px 20px rgba(247, 255, 0, 0.7), 0 0 30px rgba(247, 255, 0, 0.3);
              }
            }

            /* Header height increase */
            .header-increased {
              padding-top: 1.5rem;
              padding-bottom: 1.5rem;
            }

            /* Logo size increase */
            .logo-large {
              width: 5rem;
              height: 5rem;
            }
        		
            /* Gig Section mit Hintergrund */
            .gigs {
              position: relative;
              padding: 4rem 2rem;
              z-index: 1;
            }
            
            .gigs::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              background-image: url('images/header-bg.jpg');
              background-size: cover;
              background-position: center;
              background-attachment: scroll;
              z-index: -1;
              opacity: 0.7;
            }
            
            .gig-item {
              background: rgba(10, 10, 10, 0.8);
              padding: 1.5rem;
              margin: 1.5rem 0;
              border-radius: 8px;
              border-left: 4px solid var(--neon-turquoise);
              transition: var(--transition);
            }
            
            .gig-item:hover {
              transform: translateX(10px);
              background: rgba(20, 20, 20, 0.9);
            }
            
            .gig-item h3 {
              color: var(--neon-turquoise);
              margin-bottom: 0.5rem;
            }
            
            /* Allgemeine Stile */
            .cta-button {
              display: inline-block;
              background-color: var(--neon-turquoise);
              color: var(--dark-bg);
              padding: 0.8rem 1.5rem;
              border-radius: 4px;
              text-decoration: none;
              font-weight: 600;
              transition: var(--transition);
            }
            
            .cta-button:hover {
              background-color: var(--neon-pink);
              transform: translateY(-3px);
            }
            
 
            }
        /* Testimonial Container als Flexbox */
        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .testimonial-card {
            flex: 1 1 calc(50% - 30px); /* Zwei Karten pro Reihe mit Abstand */
            min-width: 300px; /* Mindestbreite */
        }

        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-card {
                flex: 1 1 100%; /* Volle Breite auf Mobile */
            }
        }
            /* Animation for cards */
            @keyframes fadeIn {
              from { opacity: 0; transform: translateY(20px); }
              to { opacity: 1; transform: translateY(0); }
            }

            .testimonial-content {
              animation: fadeIn 0.6s ease-out;
            }

            .testimonial-content:nth-child(2) {
              animation-delay: 0.2s;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
              .testimonial-grid {
                flex-direction: column;
                align-items: center;
              }
              
              .testimonial-card {
                min-width: 100%;
                padding: 1.5rem;
              }
              
              .testimonial-text {
                font-size: 1.0rem;
              }
              
              /* Mobile Gig Cards - Höhe reduzieren */
              .gig-card-pop {
                padding: 1.25rem;
              }
              
              .gig-card-pop .date-box {
                min-width: 60px;
                padding: 0.5rem;
              }
              
              .gig-card-pop .event-title {
                font-size: 1.1rem;
              }
              
              /* Philosophy Grid für Mobile */
              .philosophy-grid {
                grid-template-columns: 1fr;
              }
            }

            @media (max-width: 480px) {
              .testimonial-text {
                font-size: 1rem;
              }
              
              .section-title {
                font-size: 1.6rem;
              }
              
              .testimonial-card {
                padding: 1.5rem;
              }
              
              /* Mobile Gig Cards - weitere Optimierungen */
              .gig-card-pop {
                padding: 1rem;
              }
              
              .gig-card-pop .date-box {
                min-width: 55px;
              }
              
              .gig-card-pop .event-title {
                font-size: 1rem;
              }
            }

        	  /* Neonpurple Glow für Audio Player */
        .audio-playing-glow {
          border-color: #9900ff !important;
          box-shadow: 
            0 0 30px rgba(110, 18, 212, 0.7),
            0 0 60px rgba(110, 18, 212, 0.4),
            0 0 100px rgba(110, 18, 212, 0.2),
            inset 0 0 20px rgba(110, 18, 212, 0.3) !important;
          animation: pulse-orange 2s infinite;
        }

        @keyframes pulse-orange {
          0%, 100% {
            box-shadow: 
              0 0 30px rgba(110, 18, 212, 0.7),
              0 0 60px rgba(110, 18, 212, 0.4),
              0 0 100px rgba(110, 18, 212, 0.2),
              inset 0 0 20px rgba(110, 18, 212, 0.3);
          }
          50% {
            box-shadow: 
              0 0 40px rgba(110, 18, 212, 0.9),
              0 0 80px rgba(110, 18, 212, 0.6),
              0 0 120px rgba(110, 18, 212, 0.3),
              inset 0 0 30px rgba(110, 18, 212, 0.4);
          }
        }

        /* Audio Player Icon Pulsieren */
        .glow-panel.playing .fa-play,
        .glow-panel.playing .fa-pause {
          animation: icon-pulse 1.5s infinite alternate;
          color: var(--neon-purple) !important;
        }

        @keyframes icon-pulse {
          0% {
            text-shadow: 0 0 5px rgba(188, 19, 254, 0.5);
            transform: scale(1);
          }
          100% {
            text-shadow: 0 0 20px rgba(188, 19, 254, 0.8);
            transform: scale(1.1);
          }
        }



        /* Responsive Anpassungen für den Video-Fächer */
        @media (max-width: 768px) {
          .video-fan-container {
            height: auto !important;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
          }
          
          .video-fan-item {
            position: relative !important;
            transform: none !important;
            width: 100% !important;
            left: 0 !important;
            top: 0 !important;
            z-index: 1 !important;
          }
        }
        	  
            /* Additional decorative elements */
            .testimonial-content::before {
              content: '';
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              height: 4px;
              background: linear-gradient(to right, var(--neon-pink), var(--neon-turquoise));
              border-radius: 4px 4px 0 0;
              opacity: 0.7;
            }

            .social-proof {
              margin-top: 3rem;
              text-align: center;
            }

            .social-proof p {
              font-size: 1.2rem;
              color: var(--neon-turquoise);
              margin-bottom: 1rem;
            }

            .rating-badge {
              display: inline-flex;
              align-items: center;
              background: rgba(0, 0, 0, 0.4);
              padding: 10px 20px;
              border-radius: 30px;
              border: 1px solid rgba(0, 247, 255, 0.3);
            }

            .rating-badge .stars {
              margin-right: 10px;
              margin-bottom: 0;
            }

            .rating-badge span {
              font-weight: bold;
              color: var(--neon-turquoise);
            }
          
            /* Testimonial Grid nebeneinander mit Glas-Effekt */
            .testimonial-container {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              gap: 30px;
              max-width: 1100px;
              margin: 0 auto;
            }

          
            /* Responsive Design für Testimonials */
            @media (max-width: 768px) {
              .testimonial-container {
                grid-template-columns: 1fr;
                gap: 20px;
              }
            }
            
            /* === TESTIMONIALS === */
            @media (max-width: 767px) {
              .testimonial-section {
                padding: 2rem 5%;
                margin-top: 1rem;
              }

              .testimonial-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                max-height: none;
              }

              .testimonial-content {
                padding: 1.5rem;
              }

              .testimonial-text {
                font-size: 1rem !important;
                line-height: 1.5;
              }

              .quote-icon {
                font-size: 2rem;
              }

              .social-proof {
                margin-top: 2rem;
              }
            }
            
            /* Shimmer Effekt */
            .testimonial-content::after {
              content: '';
              position: absolute;
              top: 0;
              left: -100%;
              width: 100%;
              height: 100%;
              background: linear-gradient(
                  90deg,
                  transparent,
                  rgba(255, 255, 255, 0.1),
                  transparent
              );
              transition: left 0.5s;
            }

            .testimonial-content:hover::after {
              left: 100%;
            }
            
            /* Testimonial Grid nebeneinander mit Glas-Effekt */
            .testimonial-container {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              gap: 30px;
              max-width: 1100px;
              margin: 0 auto;
            }

     

            /* News Section Image Styles */
            .news-image-container {
              display: flex;
              flex-direction: column;
              gap: 1rem;
              margin-top: 1rem;
            }
            
            @media (min-width: 768px) {
              .news-image-container {
                flex-direction: row;
              }
              
              .news-image {
                width: 50%;
                height: 4cm;
                object-fit: cover;
                border-radius: 0.5rem;
              }
            }

            /* Partner Section - Angepasst */
            .partners-section-minimal {
              padding: 2.5rem 5%;
              background: rgba(10, 10, 10, 0.9);
              text-align: center;
              border-top: 1px solid rgba(255, 255, 255, 0.05);
              border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .partners-title-minimal {
              font-size: 2rem; /* Vergrößert für Desktop */
              margin-bottom: 2.5rem;
              color: #ffffff;
              text-transform: uppercase;
              letter-spacing: 3px;
              font-weight: 300;
            }

            @media (max-width: 768px) {
              .partners-title-minimal {
                font-size: 1.5rem; /* Kleiner für Mobile */
              }
            }

            .partners-grid-minimal {
              display: flex;
              overflow-x: auto;
              gap: 2rem;
              padding: 1rem 0;
              scrollbar-width: thin;
              scrollbar-color: var(--neon-cyan) transparent;
            }

            .partners-grid-minimal::-webkit-scrollbar {
              height: 8px;
            }

            .partners-grid-minimal::-webkit-scrollbar-track {
              background: rgba(255, 255, 255, 0.1);
              border-radius: 4px;
            }

            .partners-grid-minimal::-webkit-scrollbar-thumb {
              background: var(--neon-cyan);
              border-radius: 4px;
            }

            .partner-item-minimal {
              display: flex;
              flex-direction: column;
              align-items: center;
              gap: 10px;
              flex: 0 0 auto;
              min-width: 120px;
              transition: all 0.3s ease;
              padding: 15px 10px;
              border-radius: 8px;
            }

            .partner-item-minimal:hover {
              background: rgba(255, 255, 255, 0.08);
              transform: translateY(-5px);
            }

            .partner-icon {
              width: 70px;
              height: 70px;
              display: flex;
              align-items: center;
              justify-content: center;
              color: #ffffff;
              transition: all 0.3s ease;
            }

            .partner-item-minimal:hover .partner-icon {
              color: var(--neon-green);
              transform: scale(1.2);
            }

            .partner-name-minimal {
              font-size: 0.85rem;
              color: #ffffff;
              text-align: center;
              font-weight: 300;
              letter-spacing: 1px;
            }
            
        
           
            
            /* reCAPTCHA Anpassungen */
            .g-recaptcha {
              transform: scale(0.9);
              transform-origin: 0 0;
            }
            
            @media (max-width: 768px) {
              .g-recaptcha {
                transform: scale(0.85);
              }
            }
            
            /* Navigation Reihenfolge für Desktop */
            @media (min-width: 768px) {
              .nav-desktop {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 0.5rem;
              }
              
              .nav-desktop a {
                width: auto;
                text-align: right;
                padding: 0.5rem 0;
              }
            }

            /* Navigation ohne Textumbrüche für Tablet/Mobile */
            @media (max-width: 1024px) {
              .nav-link {
                white-space: nowrap;
              }
            }
        	  
        	  /* Partner Section Mobile - 3er Gruppen */
        @media (max-width: 768px) {
          .partners-grid-minimal {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            overflow-x: visible;
            padding: 0;
          }
          
          .partner-item-minimal {
            min-width: auto;
            width: 100%;
            padding: 1rem 0.5rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
          }
          
          .partner-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 8px;
          }
          
          .partner-name-minimal {
            font-size: 0.75rem;
            line-height: 1.2;
          }
          
          /* Jede 3. Box hat rechts keinen Margin */
          .partners-grid-minimal .partner-item-minimal:nth-child(3n) {
            margin-right: 0;
          }
        }

        /* Noch kleinere Bildschirme */
        @media (max-width: 480px) {
          .partners-grid-minimal {
            gap: 1rem;
            grid-template-columns: repeat(3, 1fr);
          }
          
          .partner-icon {
            width: 45px;
            height: 45px;
          }
          
          .partner-name-minimal {
            font-size: 0.7rem;
          }
        }

        /* Sehr kleine Bildschirme */
        @media (max-width: 360px) {
          .partners-grid-minimal {
            gap: 0.75rem;
            grid-template-columns: repeat(3, 1fr);
          }
          
          .partner-icon {
            width: 40px;
            height: 40px;
          }
          
          .partner-name-minimal {
            font-size: 0.65rem;
            letter-spacing: 0.5px;
          }
        }
        	  
        body::before {
          content: '';
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          height: 100vh;
          background-color: #050508;
          z-index: 9999;
          opacity: 0;
          pointer-events: none;
        }

/* Header ganz nach oben ohne Abstand */
header {
    min-height: 100vh;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Navigation anpassen für kompakte Header */
#navbar {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Logo kleiner machen für kompakteren Header */
.logo-large {
    width: 3.5rem !important;
    height: 3.5rem !important;
}

/* Header-Text mehr nach oben verschieben */
.relative.z-20 {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* Scroll Indicator nach unten verschieben */
.absolute.bottom-10 {
    bottom: 2rem !important;
}
        /* Alternative: Dunkles Favicon als Base64 für schnelles Laden */
        .link-finder-fix {
          background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSIjMDUwNTA4Ii8+PHRleHQgeD0iMTAwIiB5PSIxMDAiIGZvbnQtZmFtaWx5PSJIZWx2ZXRpY2EiIGZvbnQtc2l6ZT0iMjQiIGZpbGw9IiMwMGY3ZmYiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGR5PSIuM2VtIj5LTSBESjwvdGV4dD48L3N2Zz4=');
          display: none;
        }
        	