* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f5f5f7;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Verbessertes Announcement-Banner */
.announcement-banner {
    background: linear-gradient(90deg, #b40000, #b40000);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 500;
    position: relative;
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.announcement-banner strong {
    font-weight: 700;
}

.notification-bar {
    display: none; /* Hide the original notification bar */
}

/* Verbesserte Header-Sektion */
header {
    background-color: rgba(255, 255, 255, 0); /* leichtes Weiß statt reines Schwarz */
    color: #f5f5f7;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

header:hover {
    background-color: rgba(15, 15, 15, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Verbesserte Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #f5f5f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 5px;
    letter-spacing: 0.5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav a:hover::after {
    width: 100%;
}

/* Verbesserte Hero-Sektion */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a0a0a"/><path d="M0 0L100 100" stroke="%23ff3a3a" stroke-width="0.5" stroke-opacity="0.1"/><path d="M100 0L0 100" stroke="%23ff3a3a" stroke-width="0.5" stroke-opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 78, 78, 0.3) 0%, rgba(10, 10, 10, 1) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-right: 20px;
    animation: fadeIn 1s ease-in-out;
}

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

/* Horizontale Hauptüberschrift */
h1 {
    display: flex;
    flex-wrap: wrap;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 50px;
    font-weight: 700;
    background: linear-gradient(0deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    letter-spacing: -1.5px;
    text-shadow: 0 5px 50px rgba(255, 169, 169, 0.377);
    font-family: 'Montserrat', sans-serif;
}

h1 span {
    margin-right: 20px; /* Abstand zwischen den Wörtern */
}

h1 span:last-child {
    margin-right: 0; /* Kein Abstand nach dem letzten Wort */
}

/* Animierter Farbverlauf bei Hover */
h1:hover {
    animation: textShine 3s infinite alternate;
    background-size: 200% auto;
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.8rem;
    }
    
    h1 span {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3rem;
    }
    
    h1 span {
        margin-right: 10px;
    }
}

.subtitle {
    margin-bottom: 60px;
    margin-top: 30px;
    position: relative;
}

.subtitle-line {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.subtitle-line.second {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 200;
    font-size: 2.2rem;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    border-radius: 3px;
}

/* Verbesserter CTA-Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 58, 58, 0.5);
    letter-spacing: 0.5px;
    text-transform: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 58, 58, 0.7);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.cta-button:hover::after {
    left: 100%;
}

/* Verbesserte Titel */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff, #ff3a3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    border-radius: 3px;
}

/* Verbesserte Produktsektion */
.products-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(255, 58, 58, 0.05) 0%, rgba(10, 10, 10, 1) 60%);
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Verbesserte Produktkarten */
.product-card {
    background: linear-gradient(145deg, #151515, #191919);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 58, 58, 0.2);
    border: 1px solid rgba(255, 58, 58, 0.1);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 58, 58, 0.1) 0%, rgba(10, 10, 10, 0) 60%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    height: 350px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.product-card:hover .product-image img {
    transform: scale(1.1) translateY(-5px);
}

.product-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #ff5a5a;
}

.product-description {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.product-card:hover .product-description {
    color: #ddd;
}

.product-price {
    font-size: 1.4rem;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-price {
    transform: scale(1.05);
}

.buy-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #ff3a3a;
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.buy-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    transition: all 0.4s ease;
    z-index: -1;
}

.buy-button:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 58, 58, 0.3);
}

.buy-button:hover::before {
    width: 100%;
}

.made-in-germany {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.product-card:hover .made-in-germany {
    color: #ccc;
}

/* Verbesserter Footer */
footer {
    background-color: #0a0a0a;
    color: #86868b;
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 58, 58, 0.05) 0%, rgba(10, 10, 10, 1) 70%);
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff3a3a;
}

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

.copyright {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* Shine effect for product cards */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: all 0.75s ease;
}

.product-card:hover::before {
    left: 125%;
}

/* Badge für neue Produkte */
.badge-new {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #ff3a3a, #ff8c00);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 58, 58, 0.3);
}

/* Verbesserte Media Queries */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    h1 {
        font-size: 6rem;
    }
    
    .subtitle-line {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    h1 {
        font-size: 5rem;
    }

    .subtitle-line {
        font-size: 1.8rem;
    }

    .subtitle-line.second {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 3.5rem;
    }
    
    .subtitle-line {
        font-size: 1.5rem;
    }
    
    .subtitle-line.second {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .product-image {
        height: 250px;
    }
}