 /* Base Reset Classes */
        .header-body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            color: #333;
            overflow-x: hidden;
        }
        
        .header-link {
            text-decoration: none;
            color: inherit;
        }
        
        .header-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .header-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            color: inherit;
        }

        /* Top Gradient Bar */
        .top-gradient-bar {
            height: 8px;
            background: linear-gradient(to right, #ff6b6b, #ffa500, #ff6b6b, #8a2be2, #4169e1);
            width: 100%;
        }

        /* Main Header Container */
        .main-header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 100;
        }

        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
        }
        
        .logo-section img {
            height: 35px;
            width: auto;
        }

        /* Navigation Links (Desktop) */
        .nav-links-list-desktop {
            display: flex;
            gap: 30px;
            font-size: 16px;
            font-weight: 500;
            color: #555;
        }
        
        .nav-links-list-desktop li .header-link:hover {
            color: #007bff;
        }

        /* Action Items Wrapper (Desktop) */
        .action-items-wrapper-desktop {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Offer Button */
        .offer-button-style {
            background-color: #007bff;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: bold;
            font-size: 15px;
            transition: background-color 0.3s ease;
        }
        
        .offer-button-style:hover {
            background-color: #0056b3;
        }
        
        .offer-button-style svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Payback Button */
        .payback-button-container-style {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: #777;
            font-weight: 600;
        }
        
        .payback-button-style {
            background-color: #000080;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 5px;
        }
        
        .payback-button-style svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: #ffffff;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .notification-badge-style {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: #ff4d4d;
            color: #ffffff;
            font-size: 10px;
            font-weight: bold;
            border-radius: 50%;
            padding: 3px 6px;
            min-width: 12px;
            text-align: center;
            line-height: 1;
            border: 2px solid #ffffff;
        }

        /* Icon Buttons (Search, My Sky) */
        .icon-text-group-style {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 15px;
            color: #555;
            font-weight: 500;
            cursor: pointer;
        }
        
        .icon-text-group-style svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .icon-text-group-style:hover {
            color: #007bff;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle-button {
            display: none;
            font-size: 28px;
            color: #333;
            cursor: pointer;
            z-index: 101;
        }
        
        .mobile-menu-toggle-button svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Mobile Navigation Sidebar */
        .mobile-nav-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 75%;
            max-width: 320px;
            height: 100vh;
            background-color: #000080;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
            transition: left 0.3s ease-in-out;
            z-index: 200;
            display: flex;
            flex-direction: column;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .mobile-nav-sidebar.is-active {
            left: 0;
        }
        
        .mobile-nav-sidebar .close-sidebar-button {
            position: absolute;
            top: 20px;
            right: 20px;
            color: #ffffff;
            font-size: 30px;
            padding: 5px;
        }
        
        .mobile-nav-sidebar .close-sidebar-button svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .mobile-nav-sidebar .nav-links-list-mobile {
            list-style: none;
            padding: 0;
            margin-top: 60px;
            flex-grow: 1;
        }
        
        .mobile-nav-sidebar .nav-links-list-mobile li {
            margin-bottom: 15px;
        }
        
        .mobile-nav-sidebar .nav-links-list-mobile li .header-link {
            display: block;
            padding: 10px 0;
            color: #ffffff;
            font-size: 18px;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        
        .mobile-nav-sidebar .nav-links-list-mobile li .header-link:hover {
            color: #add8e6;
        }
        
        .mobile-nav-sidebar .mobile-action-items-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mobile-nav-sidebar .mobile-action-items-section .offer-button-style,
        .mobile-nav-sidebar .mobile-action-items-section .icon-text-group-style {
            width: 100%;
            justify-content: center;
            padding: 12px 0;
            font-size: 16px;
            color: #ffffff;
        }
        
        .mobile-nav-sidebar .mobile-action-items-section .payback-button-container-style {
            width: 100%;
            align-items: center;
            margin-top: 10px;
            color: #ffffff;
        }

        /* Overlay for when sidebar is open */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 150;
            transition: opacity 0.3s ease-in-out;
            opacity: 0;
        }
        
        .sidebar-overlay.is-active {
            display: block;
            opacity: 1;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .nav-links-list-desktop {
                gap: 20px;
                font-size: 15px;
            }
            
            .action-items-wrapper-desktop {
                gap: 15px;
            }
            
            .offer-button-style {
                padding: 8px 15px;
                font-size: 14px;
            }
            
            .payback-button-style {
                width: 40px;
                height: 40px;
            }
            
            .payback-button-style svg {
                width: 20px;
                height: 20px;
            }
            
            .icon-text-group-style {
                font-size: 14px;
            }
            
            .icon-text-group-style svg {
                width: 18px;
                height: 18px;
            }
        }

        @media (max-width: 768px) {
            .main-header-container {
                padding: 10px 15px;
            }
            
            .nav-links-list-desktop,
            .action-items-wrapper-desktop {
                display: none;
            }
            
            .mobile-menu-toggle-button {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .logo-section img {
                height: 30px;
            }
            
            .mobile-menu-toggle-button svg {
                width: 24px;
                height: 24px;
            }
        }











        /* =========================================================== */






        /* Basic Reset & Body Styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Banner Section Styling */
.v0-banner-section-container {
  position: relative;
  width: 100%;
  height: 80vh; /* Full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: flex-end; /* Align content to the bottom */
}

.v0-banner-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire area */
  z-index: -1; /* Puts the video behind other content */
}

.v0-banner-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes items to top and bottom */
  align-items: flex-end; /* Aligns items to the right */
  padding: 1rem; /* Padding around the edges */
  box-sizing: border-box; /* Include padding in element's total width and height */
  z-index: 1; /* Ensures overlay content is above the video */
}

/* Chat Button Styling */
.v0-chat-button-style {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 9999px; /* Fully rounded */
  background: linear-gradient(to right, #4a00e0, #8e2de2); /* Gradient from image */
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  margin-top: 1rem; /* Space from top edge */
  margin-right: 1rem; /* Space from right edge */
}

.v0-chat-button-style:hover {
  transform: scale(1.05);
}

.v0-chat-button-style:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.5); /* Focus ring */
}

.v0-chat-icon {
  font-size: 1.2rem; /* Adjust icon size */
}

/* Scroll to Top Button Styling */
.v0-scroll-to-top-button-style {
  display: none; /* Hidden by default, shown by JS */
  position: fixed; /* Fixed position relative to viewport */
  bottom: 2rem; /* Distance from bottom */
  right: 2rem; /* Distance from right */
  padding: 0.75rem;
  border: none;
  border-radius: 50%; /* Circular button */
  background-color: rgba(51, 51, 51, 0.8); /* Dark grey with transparency */
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 1000; /* Ensure it's on top of other content */
}

.v0-scroll-to-top-button-style:hover {
  background-color: rgba(68, 68, 68, 0.9);
}

.v0-scroll-to-top-button-style:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.5);
}

/* Placeholder Content Styling */
.v0-main-content-placeholder {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.v0-long-content-filler {
  height: 1000px; /* Make this div tall to enable scrolling */
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.5rem;
  margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .v0-chat-button-style {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }

  .v0-chat-icon {
    font-size: 1rem;
  }

  .v0-scroll-to-top-button-style {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .v0-banner-overlay-content {
    padding: 0.5rem;
  }

  .v0-chat-button-style {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .v0-chat-icon {
    font-size: 0.9rem;
  }

  .v0-scroll-to-top-button-style {
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem;
    font-size: 1rem;
  }
}







/* =================================================================================== */





        /* Section Container */
        .v0-entertainment-section {
            max-width: 1200px;
            padding: 2rem 1rem;
            text-align: center;
        }

        /* Main Heading */
        .v0-entertainment-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            /* Gradient text color */
            background: linear-gradient(to right, #ff6b00, #e20074); /* Orange to pink/purple */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent; /* Fallback for browsers that don't support background-clip */
        }

        /* Subheading/Description */
        .v0-entertainment-subheading {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Buttons */
        .v0-entertainment-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: #007bff; /* Blue color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .v0-entertainment-button:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }

        /* Image Carousel Container */
        .v0-image-carousel-container {
            position: relative;
            width: 100%;
            max-width: 900px; /* Adjust max-width as needed */
            margin: 3rem auto;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden; /* Ensures image corners are rounded */
        }

        .v0-carousel-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        /* Carousel Navigation Arrows */
        .v0-carousel-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 0.8rem 0.5rem;
            cursor: pointer;
            font-size: 2rem;
            line-height: 1;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            z-index: 10; /* Ensure arrows are above image */
        }

        .v0-carousel-nav-arrow:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .v0-carousel-nav-arrow.v0-arrow-left {
            left: 10px;
        }

        .v0-carousel-nav-arrow.v0-arrow-right {
            right: 10px;
        }

        /* F1 Logo */
        .v0-f1-logo {
            position: absolute;
            bottom: 15px;
            left: 15px;
            width: 80px; /* Adjust size as needed */
            height: auto;
            z-index: 5;
        }

        /* Image Description */
        .v0-image-description {
            font-size: 0.95rem;
            color: #666;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .v0-entertainment-heading {
                font-size: 2rem;
            }

            .v0-entertainment-subheading {
                font-size: 1rem;
            }

            .v0-entertainment-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            .v0-carousel-nav-arrow {
                font-size: 1.5rem;
                padding: 0.6rem 0.4rem;
            }

            .v0-f1-logo {
                width: 60px;
                bottom: 10px;
                left: 10px;
            }

            .v0-image-description {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .v0-entertainment-heading {
                font-size: 1.8rem;
            }

            .v0-entertainment-subheading {
                font-size: 0.9rem;
            }

            .v0-entertainment-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .v0-carousel-nav-arrow {
                font-size: 1.2rem;
                padding: 0.5rem 0.3rem;
            }

            .v0-f1-logo {
                width: 50px;
                bottom: 8px;
                left: 8px;
            }

            .v0-image-description {
                font-size: 0.85rem;
            }
        }



        /* ============================================================== */



         /* Common Section Styling */
        .v0-section-container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 2rem 1rem;
            text-align: center;
        }

        /* Common Heading Styles */
        .v0-section-heading {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .v0-section-subheading {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Common Button Style */
        .v0-common-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: #007bff; /* Blue color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1.5rem;
        }

        .v0-common-button:hover {
            background-color: #0056b3;
        }

        /* --- Section 1: Alles einfach auf Sky --- */
        .v0-easy-sky-section .v0-section-heading {
            margin-bottom: 3rem; /* More space below heading */
        }

        .v0-feature-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 2rem;
            display: flex;
            justify-content: space-around;
            gap: 1.5rem;
            flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        }

        .v0-feature-item {
            flex: 1;
            min-width: 250px; /* Minimum width for each item */
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1rem;
        }

        .v0-feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
        }

        .v0-feature-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .v0-feature-description {
            font-size: 0.95rem;
            color: #666;
        }

        /* --- Section 2: Alles was du brauchst Banner --- */
        .v0-needs-banner-section {
            position: relative;
            width: 100%;
            height: 300px; /* Fixed height for the banner */
            background-image: url('img/new1.avif'); /* Use the provided image as background */
            background-size: cover; /* Cover the entire area */
            background-position: center; /* Center the background image */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: left; /* Align text to left within its container */
            overflow: hidden; /* Hide overflow from background image */
            margin-top: 4rem; /* Space from previous section */
        }

        .v0-needs-banner-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1000px; /* Max width for content inside banner */
            width: 100%;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        .v0-needs-banner-text {
            font-size: 3.5rem;
            font-weight: 900; /* Extra bold */
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            flex-shrink: 0; /* Prevent text from shrinking */
        }

        .v0-needs-banner-logos {
            display: flex;
            gap: 1rem;
            flex-shrink: 0; /* Prevent logos from shrinking */
        }

        .v0-needs-banner-logo {
            height: 80px; /* Adjust logo size */
            width: auto;
        }

        /* --- Section 3: Größter Live-Sport --- */
        .v0-live-sport-section .v0-section-subheading {
            margin-bottom: 3rem;
        }

        .v0-sport-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Responsive grid */
            gap: 1.5rem;
            justify-items: center;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .v0-sport-logo-item {
            width: 100%;
            max-width: 120px;
            height: 60px; /* Fixed height for logos */
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Ensure logo fits */
        }

        .v0-sport-logo-item img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .v0-sport-info-text {
            font-size: 0.95rem;
            color: #666;
            margin-top: 2rem;
        }

        /* --- Section 4: Die ganze Welt des Entertainments --- */
        .v0-entertainment-world-section .v0-section-subheading {
            margin-bottom: 3rem;
        }

        .v0-carousel-wrapper {
            position: relative;
            max-width: 1000px; /* Max width for carousel */
            margin: 0 auto;
        }

        .v0-entertainment-carousel {
            display: flex;
            overflow-x: scroll; /* Enable horizontal scrolling */
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
            gap: 1rem;
            padding-bottom: 1rem; /* Space for scrollbar */
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
        }

        .v0-entertainment-carousel::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari, Opera */
        }

        .v0-carousel-item {
            flex: 0 0 auto; /* Prevent items from shrinking */
            width: 180px; /* Fixed width for each poster */
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: left;
        }

        .v0-carousel-item img {
            width: 100%;
            height: 250px; /* Fixed height for poster image */
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }

        .v0-carousel-item-info {
            padding: 0.75rem;
        }

        .v0-carousel-item-title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 0.25rem;
            color: #333;
        }

        .v0-carousel-item-platform {
            font-size: 0.85rem;
            color: #777;
        }

        .v0-carousel-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            padding: 0.5rem 0.75rem;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            z-index: 10;
        }

        .v0-carousel-nav-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .v0-carousel-nav-button.v0-carousel-prev {
            left: -20px; /* Position outside the carousel */
        }

        .v0-carousel-nav-button.v0-carousel-next {
            right: -20px; /* Position outside the carousel */
        }

        .v0-entertainment-info-text {
            font-size: 0.95rem;
            color: #666;
            margin-top: 2rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .v0-needs-banner-text {
                font-size: 3rem;
            }
            .v0-needs-banner-logo {
                height: 70px;
            }
            .v0-carousel-nav-button.v0-carousel-prev {
                left: 5px; /* Move inside on smaller screens */
            }
            .v0-carousel-nav-button.v0-carousel-next {
                right: 5px; /* Move inside on smaller screens */
            }
        }

        @media (max-width: 768px) {
            .v0-section-heading {
                font-size: 1.8rem;
            }
            .v0-section-subheading {
                font-size: 1rem;
            }
            .v0-feature-card {
                flex-direction: column; /* Stack items vertically */
                align-items: center;
            }
            .v0-feature-item {
                min-width: unset;
                width: 100%;
            }
            .v0-needs-banner-section {
                height: 250px;
            }
            .v0-needs-banner-content {
                flex-direction: column; /* Stack text and logos vertically */
                text-align: center;
                gap: 1rem;
            }
            .v0-needs-banner-text {
                font-size: 2.5rem;
            }
            .v0-needs-banner-logo {
                height: 60px;
            }
            .v0-sport-logos-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 1rem;
            }
            .v0-sport-logo-item {
                max-width: 100px;
                height: 50px;
            }
            .v0-carousel-item {
                width: 150px;
            }
            .v0-carousel-item img {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .v0-section-container {
                margin: 2rem auto;
                padding: 1rem 0.5rem;
            }
            .v0-section-heading {
                font-size: 1.5rem;
            }
            .v0-section-subheading {
                font-size: 0.9rem;
            }
            .v0-common-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .v0-needs-banner-section {
                height: 200px;
            }
            .v0-needs-banner-text {
                font-size: 2rem;
            }
            .v0-needs-banner-logo {
                height: 50px;
            }
            .v0-sport-logos-grid {
                grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            }
            .v0-sport-logo-item {
                max-width: 80px;
                height: 40px;
            }
            .v0-carousel-item {
                width: 120px;
            }
            .v0-carousel-item img {
                height: 160px;
            }
            .v0-carousel-nav-button {
                font-size: 1.2rem;
                padding: 0.3rem 0.5rem;
            }
        }





        
        /* Common Section Container */
        .v0-section-container {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 2rem 1rem;
            text-align: center;
        }

        /* Common Heading Styles */
        .v0-section-heading {
            font-size: 2.2rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .v0-section-subheading {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Common Button Style */
        .v0-common-button {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: #007bff; /* Blue color */
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1.5rem;
        }

        .v0-common-button:hover {
            background-color: #0056b3;
        }

        /* --- Section 1: Weitere Infos (FAQ) --- */
        .v0-faq-section .v0-section-heading {
            margin-bottom: 3rem;
        }

        .v0-faq-list {
            border-radius: 8px;
            margin: 0 auto;
            text-align: left;
        }

        .v0-faq-item {
            border-bottom: 1px solid #eee;
        }

        .v0-faq-item:last-child {
            border-bottom: none; /* No border for the last item */
        }

        .v0-faq-item summary {
            padding: 1.2rem 1.5rem;
            font-size: 1.05rem;
            font-weight: bold;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none; /* Remove default focus outline */
        }

        .v0-faq-item summary::-webkit-details-marker {
            display: none; /* Hide default arrow for Chrome/Safari */
        }

        .v0-faq-item summary::after {
            content: '❯'; /* Custom arrow icon */
            font-size: 1.2rem;
            color: #007bff;
            transition: transform 0.2s ease;
        }

        .v0-faq-item[open] summary::after {
            transform: rotate(90deg); /* Rotate arrow when open */
        }

        .v0-faq-item-content {
            padding: 0.5rem 1.5rem 1.5rem;
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
        }

        /* --- Section 2: Sky Stream. Einfach fernsehen. --- */
        .v0-sky-stream-section {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
            align-items: center;
            justify-content: center;
            gap: 3rem;
            text-align: left;
            margin-top: 4rem;
        }

        .v0-sky-stream-text-content {
            flex: 1;
            min-width: 300px; /* Minimum width for text block */
            max-width: 550px;
        }

        .v0-sky-stream-heading {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .v0-sky-stream-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .v0-sky-stream-info-text {
            font-size: 0.95rem;
            color: #666;
            margin-top: 1rem;
        }

        .v0-sky-stream-image-container {
            flex: 1;
            min-width: 300px; /* Minimum width for image block */
            max-width: 500px;
            text-align: center;
        }

        .v0-sky-stream-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
        }

        /* --- Section 3: Alles von Sky inkl. Paramount+ & Pricing --- */
        .v0-sky-paramount-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
        }

        .v0-content-cards-container {
            display: flex;
            gap: 1rem;
            overflow-x: auto; /* Enable horizontal scrolling for cards */
            padding-bottom: 1rem; /* Space for scrollbar */
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
            flex-shrink: 0; /* Prevent shrinking */
        }

        .v0-content-cards-container::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome, Safari, Opera */
        }

        .v0-content-card {
            flex: 0 0 auto; /* Prevent shrinking, allow fixed width */
            border-radius: 8px;
            overflow: hidden;
            position: relative; /* For overlay */
        }

        .v0-content-card img {
            width: 100%;
            height: 350px; /* Fixed height for image */
            object-fit: cover;
            display: block;
        }

        .v0-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 0.75rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); /* Gradient overlay */
            color: white;
            font-weight: bold;
            font-size: 1rem;
            text-align: center;
        }

        .v0-pricing-info-container {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            text-align: left;
            border-radius: 8px;
            padding: 2rem;
        }

        .v0-pricing-heading {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .v0-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e20074; /* Pink/purple color from image */
            margin-bottom: 0.5rem;
        }

        .v0-price-disclaimer {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 1.5rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .v0-sky-stream-section,
            .v0-sky-paramount-section {
                flex-direction: column; /* Stack content vertically */
                text-align: center;
            }
            .v0-sky-stream-text-content,
            .v0-sky-stream-image-container,
            .v0-pricing-info-container {
                max-width: 90%; /* Adjust max-width for smaller screens */
            }
            .v0-content-cards-container {
                justify-content: flex-start; /* Align cards to start when stacked */
                width: 90%; /* Take more width */
            }
        }

        @media (max-width: 768px) {
            .v0-section-heading {
                font-size: 1.8rem;
            }
            .v0-section-subheading {
                font-size: 1rem;
            }
            .v0-faq-item summary {
                font-size: 1rem;
                padding: 1rem 1.2rem;
            }
            .v0-faq-item-content {
                font-size: 0.9rem;
                padding: 0.5rem 1.2rem 1.2rem;
            }
            .v0-sky-stream-heading {
                font-size: 2rem;
            }
            .v0-sky-stream-description {
                font-size: 1rem;
            }
            .v0-content-card {
                width: 100%;
            }
            .v0-content-card img {
                height: 200px;
            }
            .v0-pricing-heading {
                font-size: 1.5rem;
            }
            .v0-price {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .v0-section-container {
                margin: 2rem auto;
                padding: 1rem 0.5rem;
            }
            .v0-section-heading {
                font-size: 1.5rem;
            }
            .v0-section-subheading {
                font-size: 0.9rem;
            }
            .v0-faq-item summary {
                font-size: 0.95rem;
                padding: 0.8rem 1rem;
            }
            .v0-faq-item-content {
                font-size: 0.85rem;
                padding: 0.4rem 1rem 1rem;
            }
            .v0-sky-stream-heading {
                font-size: 1.8rem;
            }
            .v0-sky-stream-description {
                font-size: 0.9rem;
            }
            .v0-content-card {
                width: 100%;
            }
            .v0-content-card img {
                height: 160px;
            }
            .v0-pricing-heading {
                font-size: 1.3rem;
            }
            .v0-price {
                font-size: 1.8rem;
            }
            .v0-price-disclaimer {
                font-size: 0.75rem;
            }
        }











        /* Footer Container */
        .v0-footer-container {
            background-color: white;
            padding: 3rem 1rem;
            border-top: 1px solid #eee;
            color: #333;
        }

        /* Main Footer Grid */
        .v0-footer-main-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive columns */
            gap: 2rem;
            text-align: left;
        }

        /* Footer Column */
        .v0-footer-column {
            padding: 0.5rem 0;
        }

        .v0-footer-column h3 {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .v0-footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .v0-footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .v0-footer-column ul li a {
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .v0-footer-column ul li a:hover {
            color: #007bff; /* Blue on hover */
        }

        /* External Link Icon */
        .v0-footer-column ul li a.v0-external-link::after {
            content: ' ↗'; /* Unicode for up-right arrow */
            font-size: 0.8em;
            vertical-align: super;
            margin-left: 0.2em;
        }

        /* Bottom Footer Section */
        .v0-footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid #eee;
            display: flex;
            flex-wrap: wrap; /* Allow wrapping */
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem; /* Space between elements */
        }

        .v0-footer-legal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .v0-footer-legal-links li a {
            color: #666;
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s ease;
        }

        .v0-footer-legal-links li a:hover {
            color: #007bff;
        }

        .v0-footer-logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap; /* Allow wrapping for logos */
        }

        .v0-footer-sky-logo {
            height: 30px; /* Adjust size as needed */
            width: auto;
        }

        .v0-footer-copyright-text {
            font-size: 0.75rem;
            color: #777;
            max-width: 300px; /* Limit width for text */
        }

        .v0-footer-payback-logo {
            height: 40px; /* Adjust size as needed */
            width: auto;
            margin-left: auto; /* Push to the right */
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .v0-footer-main-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* More columns on smaller screens */
                gap: 1.5rem;
            }
            .v0-footer-column h3 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }
            .v0-footer-column ul li a {
                font-size: 0.9rem;
            }
            .v0-footer-bottom {
                flex-direction: column; /* Stack items vertically */
                align-items: flex-start; /* Align to left */
                gap: 1rem;
            }
            .v0-footer-legal-links {
                flex-direction: column; /* Stack legal links */
                gap: 0.5rem;
            }
            .v0-footer-payback-logo {
                margin-left: 0; /* Remove auto margin when stacked */
            }
        }

        @media (max-width: 480px) {
            .v0-footer-container {
                padding: 2rem 0.5rem;
            }
            .v0-footer-main-grid {
                grid-template-columns: 1fr; /* Single column on very small screens */
                gap: 1rem;
            }
            .v0-footer-column {
                text-align: center; /* Center text in single column */
            }
            .v0-footer-column h3 {
                font-size: 0.95rem;
            }
            .v0-footer-column ul li a {
                font-size: 0.85rem;
            }
            .v0-footer-legal-links {
                align-items: center; /* Center legal links when stacked */
            }
            .v0-footer-logo-section {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            .v0-footer-copyright-text {
                text-align: center;
            }
        }

   