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

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    -ms-touch-action: manipulation;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 2rem;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
}

.top-bar.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-bar-logo {
    height: 79px;
    width: auto;
    max-width: 330px;
    object-fit: contain;
}

.main-content-wrapper {
    min-height: 100vh;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    padding: 0;
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 2rem;
}

.logo {
    width: 100%;
    max-width: 400px;
    max-height: 180px;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-arrow {
    color: #86868b;
    width: 32px;
    height: 32px;
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    color: #1d1d1f;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 2rem;
    min-height: 100vh;
    box-sizing: border-box;
    transform: translateY(-10vh);
    position: relative;
    z-index: 1;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/CleanShot 2025-12-22 at 14.34.02.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}


/* Announcement Section */
.announcement-section {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.announcement-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.announcement-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.announcement-date {
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
    margin-bottom: 0;
    line-height: 1.4;
}

.announcement-intro {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: #888;
    letter-spacing: 0.05em;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Countdown Section */
.countdown-section {
    margin: 2.5rem 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(60px, 15vw, 120px);
    flex: 0 1 auto;
}

.countdown-number {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.countdown-item:hover .countdown-number {
    transform: scale(1.05);
}

.countdown-label {
    font-size: clamp(0.75rem, 2vw, 1.125rem);
    font-weight: 400;
    color: #86868b;
    letter-spacing: 0.01em;
    text-transform: none;
    text-align: center;
    white-space: nowrap;
}

.countdown-separator {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 300;
    color: #d2d2d7;
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
    line-height: 1;
    flex-shrink: 0;
}

/* Date Section */
.date-section {
    margin: 2.5rem 0 0.75rem 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.date-text {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    padding: 0;
    border: none;
    display: inline-block;
}

/* Company Info */
.company-info {
    margin-top: 2rem;
    animation: fadeInUp 1.6s ease-out;
}

.company-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: #666;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
    animation: fadeInUp 1.8s ease-out;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.instagram-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.instagram-button:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-button:hover::before {
    left: 0;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.instagram-button:hover .instagram-icon {
    transform: scale(1.1);
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.coming-soon-container {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: none;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    width: 100%;
    max-width: 700px;
}

.coming-soon-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    line-height: 1;
}

.coming-soon-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    text-transform: none;
    line-height: 1.1;
}

.coming-soon-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: #86868b;
    margin-bottom: 5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    flex-wrap: nowrap;
    margin-bottom: 3.5rem;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    box-sizing: border-box;
}

.coming-soon-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.coming-soon-countdown-number {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.coming-soon-countdown-label {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    font-weight: 400;
    color: #86868b;
    text-transform: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.coming-soon-countdown-separator {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #d2d2d7;
    margin: 0 clamp(0.25rem, 1vw, 0.5rem);
    line-height: 1;
    flex: 0 0 auto;
}

.coming-soon-date {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
    margin-top: 0;
    padding-top: 3rem;
    border-top: none;
    position: relative;
}


/* Info Section */
.info-section {
    background: #fff;
    padding: 6rem 2rem;
    margin-top: 4rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.info-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-text {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Blog Section */
.blog-section {
    background: #f5f5f7;
    padding: 8rem 2rem;
    margin-top: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    z-index: 1;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.blog-section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 5rem;
    text-transform: none;
    line-height: 1.1;
}

.blog-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 40px;
    margin: 0 -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    width: 100%;
}

@media (min-width: 900px) {
    .blog-carousel-wrapper {
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .blog-carousel {
        padding-left: 0;
        padding-right: 0;
        overflow-x: auto;
    }
}

@media (min-width: 1200px) {
    .blog-carousel-wrapper {
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .blog-carousel {
        padding-left: 0;
        padding-right: 0;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .blog-carousel-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .blog-carousel {
        padding: 0 1.5rem 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .blog-card {
        width: calc(100vw - 4rem);
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}

.blog-carousel::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background: #ffffff;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    width: 360px;
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: center;
    box-shadow: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.blog-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f5f5f7;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.blog-card-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blog-card-date {
    font-size: 0.875rem;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.blog-card-preview {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.blog-card-button {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: #0071e3;
    border: none;
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start;
    margin-top: auto;
}

.blog-card-button:hover {
    background: #0077ed;
    transform: scale(1.05);
}

.blog-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.7rem;
    width: 100%;
}

/* Blog Navigation Buttons - Complete Rewrite */
.blog-nav-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d2d2d7;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.blog-nav-button svg {
    width: 24px;
    height: 24px;
    color: #1d1d1f;
    pointer-events: none;
}

.blog-nav-button svg path {
    stroke: #1d1d1f;
    stroke-width: 2;
    fill: none;
}

/* Normal hover state */
@media (hover: hover) {
    .blog-nav-button:not(:disabled):not([disabled]):hover {
        background: #1d1d1f;
        border-color: #1d1d1f;
        transform: scale(1.1);
    }
    
    .blog-nav-button:not(:disabled):not([disabled]):hover svg {
        color: #ffffff;
    }
    
    .blog-nav-button:not(:disabled):not([disabled]):hover svg path {
        stroke: #ffffff;
    }
}

/* Active state */
.blog-nav-button:not(:disabled):not([disabled]):active {
    background: #1d1d1f;
    border-color: #1d1d1f;
    transform: scale(0.95);
}

.blog-nav-button:not(:disabled):not([disabled]):active svg {
    color: #ffffff;
}

.blog-nav-button:not(:disabled):not([disabled]):active svg path {
    stroke: #ffffff;
}

/* Disabled state - MUST come after hover/active */
.blog-nav-button:disabled,
.blog-nav-button[disabled] {
    background: #f5f5f7 !important;
    border-color: #d2d2d7 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.blog-nav-button:disabled svg,
.blog-nav-button[disabled] svg {
    color: #86868b !important;
}

.blog-nav-button:disabled svg path,
.blog-nav-button[disabled] svg path {
    stroke: #86868b !important;
}

/* Disabled hover - override any hover styles */
@media (hover: hover) {
    .blog-nav-button:disabled:hover,
    .blog-nav-button[disabled]:hover {
        background: #f5f5f7 !important;
        border-color: #d2d2d7 !important;
        transform: none !important;
    }
    
    .blog-nav-button:disabled:hover svg,
    .blog-nav-button[disabled]:hover svg {
        color: #86868b !important;
    }
    
    .blog-nav-button:disabled:hover svg path,
    .blog-nav-button[disabled]:hover svg path {
        stroke: #86868b !important;
    }
}

/* Disabled active - override any active styles */
.blog-nav-button:disabled:active,
.blog-nav-button[disabled]:active {
    background: #f5f5f7 !important;
    border-color: #d2d2d7 !important;
    transform: none !important;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 8rem 2rem;
    border-top: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.contact-section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    text-transform: none;
    line-height: 1.1;
}

.contact-description {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    color: #86868b;
    margin-bottom: 4rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: #0071e3;
    border: none;
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
    text-align: center;
}

.instagram-contact {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-button:hover {
    opacity: 0.85;
}

.email-contact:hover {
    background: #0077ed;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: auto;
    background: #f5f5f7;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.legal-disclaimer {
    padding: 2rem 0;
    background: transparent;
    border-top: none;
    border-bottom: none;
    margin: 0 0 1rem 0;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin: 0;
}

.footer p {
    font-size: 0.875rem;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

.impressum-link {
    font-size: 0.875rem;
    color: #0071e3;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.impressum-link:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* Blog Post Pages */
.blog-post-main {
    background: #ffffff;
    padding: 10rem 2rem 0 2rem;
    min-height: 60vh;
    margin-top: 0;
}

.blog-post-main .footer {
    padding: 2rem 2rem;
    margin: 0 calc(-50vw + 50%) 0 calc(-50vw + 50%);
    max-width: 100vw;
    background: #f5f5f7;
    width: 100vw;
    box-sizing: border-box;
}

.blog-post-main .footer .legal-disclaimer {
    padding: 0;
    margin: 0 0 1rem 0;
}

.blog-post-main .footer p {
    margin: 0 0 0.5rem 0;
}

.blog-post {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: #0071e3;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0077ed;
}

.back-link-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background: #0071e3;
    border: none;
    border-radius: 22px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 2rem;
    margin-bottom: 4rem;
    cursor: pointer;
}

.back-link-bottom:hover {
    background: #0077ed;
    transform: scale(1.05);
    text-decoration: none !important;
    color: #ffffff !important;
}

.back-link-bottom:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.blog-post-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
    background: #f5f5f7;
    border-radius: 18px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    text-transform: none;
    line-height: 1.1;
}

.blog-post-date {
    font-size: 1.0625rem;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d2d2d7;
}

.blog-post-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: #1d1d1f;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.blog-post-text p {
    margin-bottom: 2rem;
}

.blog-post-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: none;
    line-height: 1.2;
}

.blog-post-text a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-text a:hover {
    color: #666;
}

/* Impressum Page */
.impressum-main {
    background: #fff;
    padding: 6rem 2rem 4rem 2rem;
    min-height: 60vh;
    margin-top: 0;
}

.impressum-main .footer,
.container .footer {
    padding: 3rem 2rem;
    margin: 0 calc(-50vw + 50%) 0 calc(-50vw + 50%);
    max-width: 100vw;
    background: #f5f5f7;
    width: 100vw;
    box-sizing: border-box;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
}

.impressum-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-bottom: 3rem;
    text-transform: none;
    text-align: center;
    line-height: 1.1;
}

.impressum-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #1d1d1f;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.impressum-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: none;
    line-height: 1.2;
}

.impressum-text p {
    margin-bottom: 1.5rem;
}

.impressum-text a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.impressum-text a:hover {
    color: #666;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop optimizations */
@media (min-width: 1024px) {
    .container {
        max-width: 1400px;
    }
    
    .main-content {
        padding: 4rem 3rem;
        transform: translateY(-8vh);
    }
    
    .announcement-title {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .announcement-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .announcement-date {
        font-size: 1.125rem;
    }
    
    .countdown-section {
        margin: 2.5rem 0;
    }
    
    .countdown-number {
        font-size: 4rem;
    }
    
    .countdown-label {
        font-size: 0.9375rem;
    }
    
    .countdown-separator {
        font-size: 3rem;
    }
    
    .date-section {
        margin: 1.5rem 0 0.5rem 0;
    }
    
    .date-text {
        font-size: 1.5rem;
    }
    
    .logo-container {
        margin: 2rem auto 2rem;
        max-width: 500px;
    }
    
    .logo {
        max-width: 500px;
        max-height: 220px;
    }
    
    .blog-section {
        padding: 12rem 3rem;
    }
    
    .blog-section-title {
        font-size: 3.5rem;
        margin-bottom: 4rem;
    }
    
    .blog-card {
        width: 420px;
        min-width: 420px;
        max-width: 420px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-title {
        font-size: 1.75rem;
    }
    
    .blog-card-preview {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-section {
        padding: 12rem 3rem;
    }
    
    .contact-section-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-description {
        font-size: 1.5rem;
        margin-bottom: 5rem;
    }
    
    .contact-button {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }
    
    .blog-post-main {
        padding: 12rem 3rem 0 3rem;
    }
    
    .blog-post-title {
        font-size: 3.5rem;
    }
    
    .blog-post-text {
        font-size: 1.25rem;
    }
    
    .blog-post-text h2 {
        font-size: 2.5rem;
    }
    
    .impressum-main {
        padding: 8rem 3rem 5rem 3rem;
    }
    
    .impressum-title {
        font-size: 3.5rem;
    }
    
    .impressum-text {
        font-size: 1.25rem;
    }
    
    .impressum-text h2 {
        font-size: 2.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .main-content {
        padding: 2rem 1.5rem;
        min-height: 100vh;
        transform: translateY(-10vh);
    }

    .announcement-section {
        margin-bottom: 1.5rem;
    }

    .announcement-title {
        font-size: clamp(2rem, 6vw, 4rem);
        margin-bottom: 0.75rem;
    }

    .announcement-subtitle {
        font-size: clamp(1.125rem, 2.2vw, 1.75rem);
        margin-bottom: 0.5rem;
    }

    .announcement-date {
        font-size: clamp(0.9375rem, 1.8vw, 1.25rem);
    }

    .countdown-section {
        margin: 1.25rem 0;
    }

    .countdown-container {
        gap: 0.75rem;
    }

    .countdown-separator {
        margin: 0 0.15rem;
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .countdown-item {
        min-width: clamp(50px, 12vw, 80px);
    }

    .countdown-number {
        font-size: clamp(2rem, 7vw, 4rem);
    }

    .countdown-label {
        font-size: clamp(0.65rem, 1.5vw, 0.875rem);
    }

    .date-section {
        margin: 1.25rem 0 0 0;
    }

    .date-text {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .logo-container {
        margin: 2rem auto 2rem;
        max-width: 300px;
    }
    
    .logo {
        max-width: 350px;
        max-height: 150px;
    }
    
    .scroll-arrow {
        width: 28px;
        height: 28px;
    }
    
    .top-bar {
        padding: 0.75rem 1.5rem;
    }
    
    .blog-post-main {
        padding: 8rem 1.5rem 0 1.5rem;
    }
    
    .top-bar-logo {
        height: 66px;
        max-width: 264px;
    }

    .blog-section {
        padding: 4rem 1.5rem;
    }

    .blog-section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 3rem;
    }

    .blog-card {
        width: 290px;
    }

    .blog-card-image {
        height: 120px;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .blog-card-preview {
        font-size: clamp(0.875rem, 1.3vw, 1rem);
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .coming-soon-box {
        padding: 4rem 2.5rem;
    }

    .coming-soon-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .coming-soon-countdown {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .coming-soon-countdown-separator {
        margin: 0 0.2rem;
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .coming-soon-countdown-item {
        min-width: 0;
    }

    .coming-soon-countdown-number {
        font-size: clamp(1.75rem, 4vw, 2.75rem);
    }

    .coming-soon-countdown-label {
        font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 1rem;
        min-height: 100vh;
        transform: translateY(-10vh);
    }

    .announcement-section {
        margin-bottom: 2rem;
    }

    .announcement-title {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }

    .announcement-subtitle {
        font-size: clamp(1rem, 2vw, 1.5rem);
    }

    .announcement-date {
        font-size: clamp(0.875rem, 1.6vw, 1.125rem);
    }

    .countdown-section {
        margin: 2rem 0;
    }

    .countdown-separator {
        font-size: clamp(1.25rem, 3vw, 2rem);
        margin: 0 0.1rem;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: clamp(45px, 10vw, 70px);
    }

    .countdown-number {
        font-size: clamp(1.75rem, 6vw, 3rem);
    }

    .countdown-label {
        font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    }

    .date-section {
        margin: 1.5rem 0 0.5rem 0;
    }

    .date-text {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    }

    .logo-container {
        margin: 2rem auto 2rem;
        max-width: 280px;
    }
    
    .logo {
        max-width: 300px;
        max-height: 130px;
    }
    
    .scroll-arrow {
        width: 24px;
        height: 24px;
    }

    .date-text {
        padding: 0.75rem 1.5rem;
    }

    .instagram-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }

    .instagram-icon {
        width: 18px;
        height: 18px;
    }

    .blog-section {
        padding: 4rem 1.5rem;
    }

    .info-section {
        padding: 4rem 1.5rem;
    }

    .info-card {
        padding: 3rem 2rem;
    }

    .blog-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

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

    .contact-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .blog-post-main {
        padding: 7rem 1.5rem 0 1.5rem;
    }
    
    .impressum-main {
        padding: 5rem 1.5rem 3rem 1.5rem;
    }
    
    .blog-post-main .footer {
        margin: 0 calc(-50vw + 50%) 0 calc(-50vw + 50%);
        width: 100vw;
        padding: 2rem 1.5rem;
    }
    
    .impressum-main .footer,
    .container .footer {
        margin: 0 calc(-50vw + 50%) 0 calc(-50vw + 50%);
        width: 100vw;
        padding: 3rem 1.5rem;
    }

    .blog-post-image {
        height: 250px;
        margin-bottom: 2rem;
    }

    .coming-soon-box {
        padding: 3.5rem 2rem;
    }

    .coming-soon-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .coming-soon-countdown {
        gap: 0.5rem;
        flex-wrap: nowrap;
        padding: 0 0.75rem;
    }

    .coming-soon-countdown-separator {
        margin: 0 0.15rem;
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    .coming-soon-countdown-item {
        min-width: 0;
    }

    .coming-soon-countdown-number {
        font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    }

    .coming-soon-countdown-label {
        font-size: clamp(0.55rem, 1vw, 0.7rem);
    }

    .test-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }

    .legal-disclaimer {
        margin: 0 -1.5rem 1rem -1.5rem;
        padding: 1.25rem 1.5rem;
    }
}