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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

header {
    padding: 2rem 0;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    padding: 1rem;
    text-align: center;
}

.logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission {
    text-align: center;
    margin: 4rem 0;
}

.mission h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.products {
    margin: 4rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.product-item img {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.product-item h3 {
    font-size: 1.2rem;
    color: #333;
}

.cta {
    text-align: center;
    margin: 4rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .mission h1 {
        font-size: 2rem;
    }

    .mission p {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.country-panel {
    padding: 30px;
    text-align: left;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background-color: #fff;
    max-width: 1000px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.country-search {
    margin: 0 0 30px 0;
}

.country-search input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.country-search input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.country-panel h3 {
    margin: 30px 0 20px 0;
    color: #333;
    font-size: 1.2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.country-panel h3:first-child {
    margin-top: 0;
}

.country-panel ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    columns: 3;
    column-gap: 40px;
}

.country-panel ul li {
    padding: 10px 15px;
    break-inside: avoid;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.country-panel ul li a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.country-panel ul li:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.country-panel ul li a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .country-panel ul {
        columns: 2;
    }
}

@media (max-width: 480px) {
    .country-panel ul {
        columns: 1;
    }
    
    .country-panel {
        padding: 20px;
    }
}

.disclaimer {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.disclaimer p {
    margin: 0;
}

.disclaimer strong {
    color: #333;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.legal-content h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #007bff;
}

.legal-content h2 {
    color: #444;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-top: 1rem;
}

.legal-content h3 {
    color: #555;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-content h4 {
    color: #666;
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

.legal-content p, 
.legal-content address {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: #666;
    line-height: 1.6;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-content h2 {
        font-size: 1.35rem;
    }

    .legal-content h3 {
        font-size: 1.15rem;
    }

    .legal-content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1rem;
        margin: 0.5rem;
    }

    .legal-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.back-link {
    display: inline-block;
    margin: 2rem 0;
    color: #0073e6;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

.shop-versions {
    padding: 2rem 1rem;
    background-color: #f8f9fa;
}

.shop-versions h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.shop-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    height: 100%;
    justify-content: space-between;
}

.shop-item:hover {
    transform: translateY(-3px);
}

.shop-item img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    background-color: #fff;
    margin-bottom: 1rem;
}

.shop-item h3 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.shop-item p {
    color: #666;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.2;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 2.4em;
}

.shop-button {
    display: block;
    text-align: center;
    padding: 8px 0;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    min-height: 36px;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.shop-button:hover {
    background-color: #0056b3;
}

@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .shop-item img {
        width: 120px;
        height: 80px;
    }
    
    .shop-item h3 {
        font-size: 0.9rem;
    }
    
    .shop-item p {
        font-size: 0.75rem;
    }
    
    .shop-button {
        font-size: 0.8rem;
        padding: 6px 0;
        min-height: 32px;
        width: 85%;
    }
}

.product-showcase {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 1rem;
    position: relative;
}

.product-showcase a {
    display: block;
    transition: opacity 0.3s ease;
}

.product-showcase a:hover {
    opacity: 0.95;
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 8px 8px 0 0;
    padding: 2rem;
}

.product-showcase-overlay h2 {
    color: #333;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .product-showcase-overlay {
        height: 35%;
    }
    .product-showcase-overlay h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        margin: 2rem auto;
    }
    
    .product-showcase-overlay {
        height: 40%;
        padding: 1.5rem;
    }
    
    .product-showcase-overlay h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .product-showcase-overlay {
        height: 45%;
        padding: 1rem;
    }
    
    .product-showcase-overlay h2 {
        font-size: 1.5rem;
    }
}

.available-countries {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

.available-countries h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.available-countries p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.popular-regions {
    columns: 2 !important;
    margin-bottom: 30px !important;
}

.popular-regions li {
    background-color: #f8f9fa;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .available-countries h2 {
        font-size: 1.75rem;
    }
    
    .available-countries p {
        font-size: 1rem;
    }
    
    .popular-regions {
        columns: 1 !important;
    }
}

.video-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover img {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* Verhindert Interaktionen mit dem Video */
}

@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.video-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-consent h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.video-consent p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.consent-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accept-button {
    background-color: #007bff;
    color: white;
}

.accept-button:hover {
    background-color: #0056b3;
}

.decline-button {
    background-color: #e9ecef;
    color: #333;
}

.decline-button:hover {
    background-color: #dee2e6;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    /* Header & Navigation */
    header {
        padding: 1rem 0;
    }

    .logo img {
        max-width: 150px;
    }

    /* Mission Section */
    .mission {
        margin: 2rem 0;
    }

    .mission h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .mission h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .mission p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }

    .product-item img {
        max-width: 150px;
    }

    /* CTA Button */
    .cta {
        margin: 2rem 0;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 300px;
    }

    /* Shop Versions */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .shop-item {
        margin-bottom: 1rem;
    }

    /* Legal Content */
    .legal-content {
        padding: 1rem;
    }

    .legal-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

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

    .legal-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Country Panel */
    .country-panel {
        padding: 1rem;
        margin: 1rem;
    }

    .country-search input {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 1rem;
        font-size: 0.8rem;
    }

    footer p {
        padding: 0 1rem;
    }

    /* Video Section */
    .video-container {
        margin: 1rem 0;
    }

    .video-placeholder {
        max-width: 100%;
        height: auto;
    }

    .play-button {
        transform: scale(0.8);
    }
}

/* Kleine Mobilgeräte */
@media (max-width: 480px) {
    main {
        padding: 0 1rem;
    }

    .mission h1 {
        font-size: 1.5rem;
    }

    .mission h2 {
        font-size: 1.2rem;
    }

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

    .country-panel ul {
        columns: 1;
    }

    .disclaimer {
        margin: 1rem;
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* Landscape Mode */
@media (max-height: 480px) and (orientation: landscape) {
    .mission {
        margin: 1rem 0;
    }

    .mission h1 {
        font-size: 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
} 