:root {
    --color-primary: #FFCB00;
    --color-primary-hover: #FF9800;
    --color-accent: #4B0073;
    --color-accent-hover: #AA3BE6;
    --color-text: #0C0E19;
    --color-white: #ffffff;
    --font-primary: 'Encode Sans', sans-serif;
    --container-padding: 40px;
    --content-max-width: 1400px;
    --base-font-size: 18px; /* Decreased from 20px */
    --heading-font-size: 2.5em; /* New variable for heading font size */
    --paragraph-font-size: 1rem; /* New variable for paragraph font size */
    --line-height: 1.8; /* Increased line height */
}

/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.ipr-container {
    display: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

/* Full-width wrapper for sections that should span entire width */
.full-width {
    width: 100%;
    position: relative;
    background: #0C0E19
    
}

body, html {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    font-size: var(--base-font-size);
    line-height: var(--line-height);
    background: var(--color-white);
    color: var(--color-text);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--color-text);
}

/* Remove or comment out the old header styles */

/* Updated Navigation Styles */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#mainNav > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

#mainNav.scrolled {
    background: rgba(75, 0, 115, 0.95); /* Using accent color with opacity */
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-logo {
    height: 55px; /* Increased by 10% from 50px */
    width: auto;
    transition: all 0.3s ease;
}

#mainNav.scrolled .nav-logo {
    height: 38.5px; /* Increased by 10% from 35px */
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Updated Hero Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;

    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: var(--heading-font-size);
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero h2 {
    font-size: 2em; /* Adjusted for modern look */
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.hero p {
    font-size: var(--paragraph-font-size);
    margin: 0 0 40px 0;
    max-width: 600px;
    line-height: var(--line-height);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em; /* Adjusted for modern look */
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em; /* Adjusted for modern look */
    }
    
    .hero h2 {
        font-size: 1.5em; /* Adjusted for modern look */
    }
    
    .hero p {
        font-size: 0.9em; /* Adjusted for modern look */
    }
    
    .hero-content {
        padding: 30px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero h2 {
        font-size: 1.5em;
    }
    
    .hero p {
        font-size: 1em;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1.1em;
    }
}

.hero-content {
    z-index: 3;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 300px; /* Adjust as needed */
    z-index: 4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header img {
    max-width: 150px;
}

nav {
    display: flex;
    justify-content: center;
    background: #444;
}

nav a {
    color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

nav a:hover {
    background: none;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-user {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
   
    border-radius: 10px;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.6em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero h2 {
    font-size: 2.4em;
    margin: 20px 0 40px 0;
}

.hero p {
    font-size: 1.3em;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--color-accent-hover);
}

.pricing {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
    width: 100vw;
    max-width: 100%;
    margin: 0;
}

.pricing .card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    width: 300px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    flex: 0 1 350px; /* Fixed width for cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Center all content horizontally */
    min-height: 600px;
    width: 100%;
    max-width: 350px;
    margin: 15px;
    padding: 30px;
}

.pricing .card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.pricing .card.premium {
    transform: scale(1.05);
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(75, 0, 115, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
}

.card h3 {
    color: var(--color-accent);
    font-size: 1.8em;
    margin: 0;
    font-weight: 600;
}

.card .price {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--color-text);
}

.card .price span {
    font-size: 16px;
    font-weight: 400;
}

.card .description {
    color: #666;
    margin-bottom: 25px;
    min-height: 48px;
    width: 100%;
    text-align: left;
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    padding-left: 20px;
    width: 100%;
}

.card ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    padding: 8px 0;
}

.card ul li i {
    color: var(--color-accent);
}

.package-button {
    display: block;
    width: calc(100% - 40px); /* Subtract padding to match content width */
    padding: 12px;
    background: var(--color-accent);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 500;
    margin: 20px auto; /* Center button with margin */
    padding: 15px 20px;
}

.package-button:hover {
    background: var(--color-accent-hover);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 20px;
    width: 100%;
    max-width: 100%;
    padding: 50px 20px;
    margin: 0;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card i {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card:hover {
    border-color: var(--color-primary);
}

/* Updated Contact Form Styles */
.contact-form {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    border-radius: 10px; /* Added for modern look */
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--color-accent),
        var(--color-accent-hover)
    );
    opacity: 0.9;
    z-index: 1;
}

.contact-form .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form h2 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 2.2em; /* Adjusted for modern look */
    text-align: center;
    position: relative;
}

.contact-form > .container > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.2em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: var(--color-text);
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
    padding: 0 35px 0 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 0, 115, 0.1);
}

/* Custom Radio Buttons */
.radio-group {
    margin: 25px 0;
}

.radio-group p {
    margin-bottom: 15px;
    font-weight: 500;
}

.radio-group label {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group input[type="radio"]:checked + label {
    background: rgba(75, 0, 115, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Custom Checkboxes */
.checkbox-group {
    margin: 25px 0;
}

.checkbox-group p {
    margin-bottom: 15px;
    font-weight: 500;
}

.social-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    padding: 0 15px;
}

.social-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-checkbox-grid input[type="checkbox"] {
    display: none;
}

.social-checkbox-grid input[type="checkbox"]:checked + label {
    background: rgba(75, 0, 115, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.social-checkbox-grid i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Submit Button */
.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-form button[type="submit"]:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Message Field */
textarea[name="message"] {
    min-height: 150px;
    resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .social-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .contact-form form {
        padding: 20px;
    }
}

/* Hide honeypot field */
.honey {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.video-overlay {
    background: none;
}

.stats {
    background: linear-gradient(
        135deg,
        rgba(75, 0, 115, 0.6),
        rgba(255, 203, 0, 0.6)
    );
    padding: 80px 20px;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for 4 items */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.stat-item i {
    font-size: 48px; /* Increased from 36px */
    color: var(--color-accent);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 2.5em;
    margin: 10px 0;
    color: var(--color-text);
}

.stat-item p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

/* Add emphasis styles for the special stat */
.stat-item.emphasis {
    transform: scale(1.1);
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(75, 0, 115, 0.2);
}

.stat-item.emphasis i,
.stat-item.emphasis h3 {
    color: var(--color-white);
}

.stat-item.emphasis p {
    color: rgba(255, 255, 255, 0.9);
}

/* Add hover effect */
.stat-item.emphasis:hover {
    transform: scale(1.15);
}

/* Adjust responsive behavior */
@media (max-width: 768px) {
    .stat-item.emphasis {
        transform: scale(1.05);
    }
    
    .stat-item.emphasis:hover {
        transform: scale(1.1);
    }
}

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

@media (max-width: 600px) {
    .stats .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stat-item {
        min-width: unset;
        width: 100%;
    }
}

.radio-group, .checkbox-group {
    margin: 15px 0;
}

.radio-group label, .checkbox-group label {
    display: block;
    margin: 10px 0;
}

footer {
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 40px 0;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer > div {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

footer a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

footer address {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.6;
}

footer p {
    margin: 0;
    padding: 0;
}

footer p a {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .pricing .card {
        width: 100%;
        max-width: 350px;
    }
}

.legal-content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 40px 20px;
    text-align: left; /* Explizit linksbündig */
}

.legal-content h1 {
    color: #333;
    margin-bottom: 30px;
    text-align: left; /* Überschrift auch linksbündig */
}

.legal-content h2 {
    color: #444;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: #555;
    margin-top: 25px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Updated References Slideshow */
.references {
    padding: 100px 0;
    width: 100%;
    background: #f8f9fa;
    overflow: hidden;
    border-radius: 10px; /* Added for modern look */
}

.references h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em; /* Adjusted for modern look */
}

.reference-slideshow {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.slides {
    position: relative;
    height: 600px; /* Increased height */
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    color: white;
    font-size: 36px;
    font-weight: 300;
    text-decoration: none;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.prev:hover, .next:hover {
    color: var(--color-primary);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Modern Reference Cards */
.references {
    padding: 100px 0;
    background: #f8f9fa;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reference-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px; /* Added padding for modern look */
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.reference-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.reference-card:hover .reference-image img {
    transform: scale(1.05);
}

.reference-content {
    padding: 25px;
}

.reference-content h3 {
    color: var(--color-text);
    font-size: 1.5em;
    margin: 0 0 10px 0;
}

.reference-type {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9em;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reference-description {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.reference-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.reference-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reference-stats i {
    color: var(--color-accent);
    font-size: 1.2em;
}

.reference-stats span {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reference-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .reference-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* To Top Button */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.to-top.visible {
    opacity: 1;
    visibility: visible;
}

.to-top:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
}

.to-top i {
    font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slides {
        height: 400px;
    }
    
    .prev, .next {
        padding: 15px;
        font-size: 24px;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .to-top i {
        font-size: 20px;
    }
}

/* Partners Slideshow */
.partners {
    padding: 50px 0;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    
    box-shadow: none;
}

.partners h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-text);
}

.partner-slideshow {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    
}

.partner-track {
    display: flex;
    animation: scroll 30s linear infinite;
   
    padding: 20px 0;
}

.partner-track img {
    height: 100px;
    margin: 0 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-track img:hover {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    :root {
        --container-padding: 30px;
    }
    
    h1 { font-size: 4.2em; }
    h2 { font-size: 2.8em; }
    h3 { font-size: 1.8em; }
    p { font-size: 1.1em; }

    .pricing-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing .card {
        flex: 0 1 320px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --base-font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .slides {
        height: 300px;
    }
    
    .partner-track img {
        height: 60px;
        margin: 0 15px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 3.2em; }
    h2 { font-size: 2.4em; }
    h3 { font-size: 1.6em; }
    
    .stats {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

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

/* Smooth section transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 80px 0;
    width: 100%;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 80px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent; /* Reset default background */
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section > div {
    width: 100%;

}

section:nth-of-type(3n) {
    background-color: #FFE8D6; /* Helles Orange */
}

section:nth-of-type(3n+1) {
    background-color: #E8E6FF; /* Helles Flieder */
}

section:nth-of-type(3n+2) {
    background-color: #f8f9fa; /* Bestehendes Hellgrau */
}

/* Responsive Navigation */
@media (max-width: 768px) {
    #mainNav {
        padding: 15px 0;
    }
    
    #mainNav > .container {
        padding: 0 15px;
    }
    
    #mainNav.scrolled {
        padding: 10px 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(51, 51, 51, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
}

/* Form Focus States */
.contact-form form input:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 5px rgba(75, 0, 115, 0.3);
}

/* Checkbox and Radio Customization */
input[type="checkbox"]:checked,
input[type="radio"]:checked {
    accent-color: var(--color-accent);
}

/* Social Checkbox Grid */
.social-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.social-checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-checkbox-grid label:hover {
    border-color: var(--color-accent);
    background: rgba(75, 0, 115, 0.05);
}

.social-checkbox-grid i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.social-checkbox-grid input[type="checkbox"] {
    margin: 0;
}

/* Font Awesome Icon Colors */
.fa-tiktok { color: #000000; }
.fa-youtube { color: #FF0000; }
.fa-instagram { color: #E4405F; }
.fa-facebook { color: #1877F2; }
.fa-twitch { color: #9146FF; }
.fa-pinterest { color: #E60023; }
.fa-linkedin { color: #0077B5; }
.fa-x-twitter { color: #000000; }

/* Update pricing section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Updated Services Section */
.services {
    background: #f8f9fa;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-color: var(--color-accent);
}

.service-card i {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--color-text);
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

.services-footer {
    font-size: 1.2em;
    color: var(--color-text);
    margin-bottom: 25px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    section, 
    .container,
    .hero,
    .pricing,
    .contact-form,
    .stats,
    .partners,
    footer {
        width: 100vw;
        max-width: 100%;
        padding: 40px 15px;
        margin: 0;
        box-sizing: border-box;
    }
}

/* Fix for potential horizontal scrollbar */
html {
    overflow-x: hidden;
}

/* Updated Pricing Section */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* This ensures buttons align at bottom */
    min-height: 600px; /* Fixed height for consistent layout */
    width: 100%;
    max-width: 350px;
    margin: 15px;
    padding: 30px;
    text-align: center;
}

.card-content {
    flex-grow: 1; /* Takes up available space */
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure content takes full width */
    align-items: center; /* Center content horizontally */
}

.card ul {
    flex-grow: 1; /* Makes the list take available space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 20px 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.package-button {
    margin-top: auto; /* Pushes button to bottom */
    width: 100%;
    width: calc(100% - 40px); /* Subtract padding to match content width */
    margin: 20px auto; /* Center button with margin */
    display: block;
    text-align: center;
    padding: 15px 20px;
}

/* Stats section update */
.stats {
    background: linear-gradient(
        135deg,
        rgba(75, 0, 115, 0.6),
        rgba(255, 203, 0, 0.6)
    );
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive adjustments for stats */
@media (max-width: 1200px) {
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        padding: 0 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .stats .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .stat-item {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }
}

/* Updated Partner Slider */
.partner-slideshow {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    
}

.partner-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
}

.partner-track img {
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing .card {
        width: 100%;
        max-width: 400px;
        min-height: auto; /* Allow natural height on mobile */
    }

    .stats {
        grid-template-columns: repeat(3, 1fr); /* Maintain 3 columns */
    }
}

@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}

/* Responsive adjustments for mobile views */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 20px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .pricing .card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .service-card {
        padding: 20px;
    }

    .contact-form form {
        padding: 20px;
    }

    .stats .container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .references .reference-slideshow {
        padding: 0 15px;
    }

    .partners .partner-slideshow {
        padding: 0 15px;
    }

    footer {
        padding: 20px 15px;
    }

    .legal-content {
        padding: 20px 15px;
    }
}

/* Additional adjustments for very small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        padding: 10px 20px;
    }

    .pricing .card {
        padding: 20px;
    }

    .service-card {
        padding: 15px;
    }

    .contact-form form {
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 2em;
    }

    .stat-item p {
        font-size: 1em;
    }
}

/* Video Examples Section */
.examples {
    background: transparent;
    padding: 100px 0;
  
    color: var(--color-white);
}

.examples h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text); /* Dunkle Farbe statt weiß */
    position: relative;
}



.examples h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--color-primary);
}

.examples .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert den Container-Inhalt */
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px; /* Etwas schmaler für bessere Proportionen */
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center; /* Zentriert die Grid-Items */
}

.video-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    aspect-ratio: 9/16;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 15px;
    background: #000;
}

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

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, 
        rgba(75, 0, 115, 0.95),
        rgba(75, 0, 115, 0.7) 60%,
        transparent
    );
    color: white;
    pointer-events: none;
    z-index: 2;
}

.video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: var(--color-primary);
}

.video-info p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
    color: var(--color-white);
    font-size: 1em;
    opacity: 1;
}

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

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 300px; /* Single column width auf Mobile */
    }
    
    .video-card.clean {
        max-width: 100%; /* Volle verfügbare Breite auf Mobile */
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .video-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .video-grid {
        gap: 40px;
    }
    
    .video-card.clean {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .video-card.clean .static-info {
        padding: 10px 0;
    }
}

/* Links Page Specific Styles */
.links-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.profile-section h1 {
    color: var(--color-accent);
}

.bio {
    color: var(--color-text);
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--color-text);
}

.btn {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn a {
    color: var(--color-text);
}

.btn:hover {
    background: #f0f0f0;
    border-color: var(--color-accent);
}

/* Keep accent sections with white text */
.affiliate {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
}

.affiliate h2 {
    color: white;
}

.affiliate .btn {
    background: rgba(255,255,255,0.1);
}

.affiliate .btn a {
    color: white;
}

.featured-section {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
}

.featured-section h2,
.featured-section p {
    color: white;
}

/* Copy all remaining styles from links.css and update colors for dark theme */
/* ...rest of links.css content with updated colors... */

.card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn a {
    color: var(--color-white);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.profile-pic {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.profile-section h1 {
    font-size: 2.2em;
    color: var(--color-accent);
    margin: 15px 0;
}

.bio {
    color: #666;
    margin: 15px 0;
    font-size: 1.2em;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.social-button {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1.1em;
    font-weight: 500;
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-button i {
    font-size: 1.5em;
    margin-right: 20px;
    width: 24px;
    text-align: center;
}

.follower-count {
    margin-left: auto;
    font-weight: 600;
    color: var(--color-accent);
    background: rgba(75, 0, 115, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* Social Platform Colors */
.tiktok:hover { color: #000000; }
.youtube:hover { color: #FF0000; }
.twitch:hover { color: #9146FF; }
.discord:hover { color: #5865F2; }

/* Card Styles for Links Page */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card h2 {
    color: var(--color-text);
    margin-bottom: 25px;
    font-size: 1.8em;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn a {
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hardware-grid,
.affiliate-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}

/* Amazon Section Styles */
.amazon-section {
    margin-bottom: 40px;
}

.amazon-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.amazon-button {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #232F3E, #37475A);
    border-radius: 10px;
    text-decoration: none;
    color: white !important;
    transition: transform 0.3s ease;
    position: relative;
    font-size: 1.1em;
    font-weight: 500;
}

.amazon-button:hover {
    transform: translateY(-2px);
}

.amazon-button i {
    color: #FF9900;
    font-size: 24px;
    margin-right: 15px;
}

.amazon-button .tag {
    position: absolute;
    right: 15px;
    background: #FF9900;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #232F3E;
}

/* Link Group Styles */
.link-group h3 {
    color: var(--color-accent);
    margin: 25px 0 15px;
    font-size: 1.3em;
}

/* Affiliate Section */
.affiliate {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
}

.affiliate h2 {
    color: white;
}

.affiliate .btn {
    background: rgba(255,255,255,0.1);
}

.affiliate .btn a {
    color: white;
}

.affiliate .btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}

/* Update the card styles for pricing section */
.pricing .card {
    background: white;
    color: var(--color-text);
}

.pricing .card h2,
.pricing .card h3,
.pricing .card p,
.pricing .card li {
    color: var(--color-text);
}

.pricing .card .description {
    color: #666;
}

.pricing .card ul li {
    color: var(--color-text);
}

/* Update the card styles for standard cards */
.card {
    background: white;
    color: var(--color-text);
}

.card h2,
.card h3 {
    color: var(--color-text);
}

/* Keep the affiliate section with white text */
.affiliate {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: white;
}

.affiliate h2,
.affiliate h3,
.affiliate p,
.affiliate li,
.affiliate .btn a {
    color: white;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(75, 0, 115, 0.9),  /* var(--color-accent) mit Transparenz */
        rgba(255, 203, 0, 0.9)  /* var(--color-primary) mit Transparenz */
    );
    z-index: 2;
}

/* Update navigation styles for mobile */
@media (max-width: 768px) {
    #mainNav > .container {
        justify-content: center; /* Center logo in mobile view */
        padding: 0 20px;
        box-sizing: border-box;
    }

    .nav-logo {
        margin: 0 auto; /* Center logo */
    }

    /* Ensure all sections have proper padding */
    section,
    .container,
    .hero,
    .pricing,
    .contact-form,
    .stats,
    .partners,
    .examples,
    .references,
    footer {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Fix grid layouts for mobile */
    .services-grid,
    .pricing-container,
    .reference-grid,
    .video-grid {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    /* Fix card layouts */
    .card,
    .service-card,
    .reference-card,
    .video-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    /* Fix pricing cards specific styling */
    .pricing .card {
        max-width: 100%;
        margin: 15px 0;
    }

    /* Ensure forms don't overflow */
    .contact-form form {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 15px;
    }
}

/* ...existing code... */

.video-card.clean {
    position: relative;
    background: transparent;
    border-radius: 15px;
    overflow: visible;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px; /* Fixe maximale Breite für die Videos */
    margin: 0 auto; /* Zentriert jede Karte */
}

.video-card.clean:hover {
    transform: translateY(-5px);
}

.video-card.clean .video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 15px;
    overflow: hidden;
    background: transparent;
}

.video-card.clean iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}

.video-card.clean .static-info {
    padding: 15px 0;
    text-align: center;
    color: var(--color-text); /* Dunkle Schriftfarbe statt weiß */
}

.video-card.clean .static-info h3 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
    color: var(--color-accent); /* Akzentfarbe für die Überschrift */
}

.video-card.clean .static-info p {
    margin: 0;
    font-size: 1em;
    color: var(--color-text); /* Dunkle Schriftfarbe für Views */
}

/* ...existing code... */

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-categories {
    margin: 20px 0;
    text-align: left;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cookie-category h4 {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-toggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.category-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.category-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

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

input:checked + .category-slider {
    background-color: var(--color-accent);
}

input:checked + .category-slider:before {
    transform: translateX(26px);
}

/* Video Placeholder Styles */
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 15px;
    text-align: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.consent-notice {
    text-align: center;
    font-size: 0.9em;
    color: var(--color-text);
    padding: 0 15px;
    line-height: 1.4;
}

.cookie-consent.visible {
    display: block !important;
}

/* ...existing code... */

/* ...existing code... */

.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    overflow-y: auto;
}

.cookie-consent.visible {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    background: white;
    max-width: 800px;
    margin: 20px;
    padding: 30px;
    border-radius: 15px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-details {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.9em;
}

.cookie-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-all {
    background: var(--color-accent);
    color: white;
}

.accept-necessary {
    background: #f8f9fa;
    color: var(--color-text);
}

.save-preferences {
    background: var(--color-accent);
    color: white;
    opacity: 0.9;
}

.cookie-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

/* ...existing code... */

/* ...existing code... */

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 15px;
    overflow: hidden;
    background: #f0f0f0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-button {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
}

.view-on-tiktok {
    color: white;
    font-size: 0.9em;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}



.video-link {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.video-link:hover .play-button {
    transform: scale(1.1);
}

/* ...existing code... */

/* Legal Pages Styles */
.legal-content {
    padding-top: 120px; /* Abstand für die fixierte Navbar */
    padding-bottom: 60px;
    min-height: calc(100vh - 200px); /* Mindesthöhe abzüglich Footer */
    text-align: left; /* Explizit linksbündig */
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left; /* Explizit linksbündig */
}

.legal-content h1 {
    color: var(--color-accent);
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: left; /* Überschrift auch linksbündig */
}

.legal-content h2 {
    color: var(--color-text);
    font-size: 1.8em;
    margin: 40px 0 20px;
}

.legal-content h3 {
    color: var(--color-accent);
    font-size: 1.4em;
    margin: 30px 0 15px;
}

.legal-content p,
.legal-content address {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Zurück-Link Styling */
.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link i {
    font-size: 0.9em;
}

/* Navigation auf Legal Pages */
#mainNav.scrolled {
    background: var(--color-accent);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .legal-content {
        padding-top: 100px;
    }

    .legal-content h1 {
        font-size: 2em;
    }

    .legal-content h2 {
        font-size: 1.5em;
    }

    .legal-content h3 {
        font-size: 1.2em;
    }
}

/* ...existing code... */

/* Stream Academy Section Styles */
.stream-academy {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.academy-hero {
    width: 100%;
    height: 400px;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

.academy-hero:hover img {
    transform: scale(1.05);
}

.academy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.academy-intro {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.academy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-card ul li {
    padding: 8px 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid #eee;
}

.feature-card ul li:last-child {
    border-bottom: none;
}

.academy-packages {
    margin-top: 60px;
    text-align: center;
}

.package-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.featured {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.package-card h4 {
    color: var(--color-text);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 2.5em;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 25px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.package-card ul li {
    padding: 10px 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-card ul li i {
    color: var(--color-accent);
}

.academy-cta {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.academy-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .academy-hero {
        height: 300px;
    }

    .academy-intro {
        font-size: 1.1em;
        padding: 0 20px;
    }

    .package-card {
        max-width: 100%;
        margin: 0 20px;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* ...existing code... */

/* ...existing code... */

.social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.social-nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.2s ease;
}

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

.social-nav-link.tiktok:hover { color: #00f2ea; }
.social-nav-link.youtube:hover { color: #ff0000; }
.social-nav-link.twitch:hover { color: #9146ff; }
.social-nav-link.discord:hover { color: #5865f2; }

@media (max-width: 768px) {
    .social-bar {
        padding: 5px 0;
    }
    .social-nav-link {
        font-size: 16px;
    }
}

/* ...existing code... */

.social-media-bar {
    background: linear-gradient(to right, #0C0E19, #1A1C2E);
    padding: 8px 0;
}

.social-media-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #FFCB00;
    transform: translateY(-2px);
}

/* Platform-specific hover colors */
.social-icons a:hover .fa-tiktok { color: #ff0050; }
.social-icons a:hover .fa-youtube { color: #FF0000; }
.social-icons a:hover .fa-twitch { color: #9146FF; }
.social-icons a:hover .fa-discord { color: #5865F2; }

/* Adjust main navigation to account for social bar */
#mainNav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .social-media-bar {
        padding: 5px 0;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 16px;
    }
}
