/* =========================================
   UPDATES SECTION - POLIERTE PROFI-VERSION
   ========================================= */

.updates-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* Subtiler Grain-Texture Hintergrund für cineastischen Look */
.updates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at center, rgba(255, 77, 77, 0.02) 0%, transparent 70%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.updates-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* =========================================
   LINKE SPALTE - EINHEITLICHES DESIGN
   ========================================= */

.updates-left-column {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Kompakter: 20px → 16px */
}

/* Upcoming Header - Reduziert und elegant */
.upcoming-header {
    background: linear-gradient(
        to right,
        rgba(255, 77, 77, 0.12) 0%,
        rgba(255, 77, 77, 0.06) 50%,
        transparent 100%
    );
    border-left: 3px solid rgba(255, 77, 77, 0.6);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Entferne komplexe Animationen für cleanen Look */
.upcoming-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 77, 77, 0.8);
}

.upcoming-header h4 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Icon als SVG statt Emoji für Konsistenz */
.upcoming-header h4::before {
    content: '♪';
    font-size: 1.4em;
    color: rgba(255, 77, 77, 0.9);
    font-weight: 300;
}

/* News Liste */
.updates-list {
    display: grid;
    gap: 14px; /* Kompakter: 20px → 14px */
    margin-bottom: 0;
}

/* =========================================
   CARDS - EINHEITLICHES DESIGN SYSTEM
   ========================================= */

.update-item {
    /* Einheitlicher Hintergrund mit subtiler Tiefe */
    background: linear-gradient(135deg, 
        rgba(30, 30, 35, 0.95), 
        rgba(25, 25, 30, 0.98)
    );
    border-radius: 12px;
    padding: 24px 28px; /* Kompakter: 28px → 24px vertikal */
    transition: all 0.15s ease; /* SCHNELLE Micro-Animation */
    position: relative;
    overflow: hidden;
    
    /* Mehr Shading-Effekte - mehrschichtige Schatten */
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.20),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    
    /* Subtiler Border statt Glow */
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Subtiler Accent oben mit dezenter Animation */
.update-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 77, 77, 0.4) 50%,
        transparent
    );
    opacity: 0.7;
    animation: subtleGlowPulse 4s ease-in-out infinite;
}

@keyframes subtleGlowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

/* ZURÜCK: Cooler horizontaler Hover-Effekt */
.update-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover mit subtiler 3D-Tiefe - SCHNELLERE ANIMATION + mehr Shading */
.update-item:hover {
    transform: translateY(-3px); /* Leichteres Anheben */
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        0 4px 14px rgba(0, 0, 0, 0.25),
        0 12px 36px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 77, 77, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 77, 77, 0.15);
}

/* Animiere die Linie beim Hover */
.update-item:hover::after {
    width: 100%;
}

/* =========================================
   TYPOGRAFIE-HIERARCHIE - VERBESSERT
   ========================================= */

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px; /* Kompakter: 16px → 14px */
    gap: 24px;
    position: relative;
    z-index: 1;
}

.update-title-group {
    flex: 1;
}

/* Titel - Deutlich größer und dominanter mit REDUZIERTEM GLOW + BEWEGUNG */
.update-title {
    font-size: 1.75rem;
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    /* Reduzierter Glow-Effekt */
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 140, 140, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.4);
    animation: songTitleFloat 6s ease-in-out infinite;
}

/* Sanfte schwebende Bewegung statt pulsierendem Glow */
@keyframes songTitleFloat {
    0%, 100% { 
        transform: translateY(0px);
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 140, 140, 0.2),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    50% { 
        transform: translateY(-3px);
        text-shadow: 
            0 0 18px rgba(255, 255, 255, 0.4),
            0 0 35px rgba(255, 140, 140, 0.25),
            0 3px 6px rgba(0, 0, 0, 0.3);
    }
}

/* Datum/Badge - Einheitlicher Stil */
.update-date {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 77, 77, 0.20);
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 77, 77, 0.3);
    /* Subtiler Glow */
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.15);
}

/* Beschreibungstext - Erhöhter Kontrast */
.update-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 16px; /* Kompakter: 18px → 16px */
    position: relative;
    z-index: 1;
    /* Subtiler Glow für bessere Lesbarkeit */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* =========================================
   KEYWORDS/TAGS - EINHEITLICHER STIL
   ========================================= */

.update-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px; /* Kompakter: 18px → 16px */
    padding-top: 14px; /* Kompakter: 16px → 14px */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

/* Subtiler Accent statt dominanter Linie */
.update-keywords::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(255, 77, 77, 0.4);
}

/* Tags - Einheitlicher, flacher Stil mit MICRO-ANIMATION */
.keyword-tag {
    background: rgba(255, 77, 77, 0.12);
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 77, 77, 0.2);
    letter-spacing: 0.02em;
    transition: all 0.15s ease; /* SCHNELLE Micro-Animation */
    cursor: default;
}

.keyword-tag:hover {
    background: rgba(255, 77, 77, 0.20); /* Leicht aufhellen */
    border-color: rgba(255, 77, 77, 0.35);
    transform: translateY(-1px); /* Minimales Lift */
    box-shadow: 0 2px 8px rgba(255, 77, 77, 0.15); /* Subtiler Glow */
}

/* Entferne komplexe Pseudo-Elemente */
.keyword-tag::before {
    display: none;
}

/* =========================================
   BUTTON - EINHEITLICHER STIL
   ========================================= */

.update-subscribe {
    display: flex;
    justify-content: flex-end;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.15s ease; /* SCHNELLE Micro-Animation */
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 14px rgba(255, 77, 77, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

/* ZURÜCK: Gradient-Highlight oben */
.subscribe-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 20px 20px 0 0;
}

.subscribe-button:hover {
    transform: translateY(-2px) scale(1.02); /* Minimaler Puls-Effekt */
    box-shadow: 
        0 6px 20px rgba(255, 77, 77, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.subscribe-button:active {
    transform: translateY(0) scale(0.98); /* Minimal kleiner beim Klick */
    transition: all 0.1s ease;
    box-shadow: 
        0 2px 8px rgba(255, 77, 77, 0.4),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.subscribe-button i {
    font-size: 1em;
    animation: bellRingSubtle 3s ease-in-out infinite;
}

/* Subtilere Bell-Animation */
@keyframes bellRingSubtle {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
}

/* =========================================
   PROJEKT-IDEEN SECTION - POLIERT
   ========================================= */

.project-ideas-section {
    background: linear-gradient(135deg, 
        rgba(80, 140, 200, 0.08), 
        rgba(60, 120, 180, 0.05)
    );
    border-radius: 12px;
    padding: 28px 30px 40px 30px;
    border: 1px solid rgba(80, 140, 200, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    margin-top: 0;
    transition: all 0.15s ease; /* MICRO-ANIMATION */
}

.project-ideas-section:hover {
    transform: translateY(-2px); /* Leichtes Anheben */
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.25),
        0 12px 32px rgba(80, 140, 200, 0.1);
}

/* ZURÜCK: Cooler rotierender Hintergrund-Effekt */
.project-ideas-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(80, 140, 200, 0.12), transparent);
    animation: rotateGlowIdeas 20s linear infinite;
}

@keyframes rotateGlowIdeas {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.project-ideas-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

/* ZURÜCK: Cooler Puls-Effekt für Icon */
.project-ideas-icon {
    width: 44px;
    height: 44px;
    background: rgba(80, 140, 200, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(80, 140, 200, 0.3);
    box-shadow: 0 0 12px rgba(80, 140, 200, 0.1);
}

.project-ideas-section h3 {
    font-size: 1.6rem;
    color: #85c9ff; /* Helleres, strahlendes Blau */
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    /* Starker strahlender Glow-Effekt */
    text-shadow: 
        0 0 25px rgba(133, 201, 255, 0.8),
        0 0 50px rgba(100, 180, 255, 0.5),
        0 0 80px rgba(80, 160, 230, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    animation: ideaTitleGlow 3s ease-in-out infinite;
}

@keyframes ideaTitleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 25px rgba(133, 201, 255, 0.8),
            0 0 50px rgba(100, 180, 255, 0.5),
            0 0 80px rgba(80, 160, 230, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
    50% { 
        text-shadow: 
            0 0 35px rgba(133, 201, 255, 1),
            0 0 70px rgba(100, 180, 255, 0.7),
            0 0 110px rgba(80, 160, 230, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

.project-ideas-content {
    position: relative;
    z-index: 1;
}

.idea-item {
    background: rgba(20, 20, 25, 0.5);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 16px;
    border-left: 2px solid rgba(80, 140, 200, 0.4);
    transition: all 0.15s ease; /* SCHNELLE Micro-Animation */
    backdrop-filter: blur(10px);
}

.idea-item:last-child {
    margin-bottom: 0;
}

.idea-item:hover {
    background: rgba(25, 25, 30, 0.7);
    transform: translateX(4px) translateY(-1px); /* X + Y Bewegung */
    border-left-width: 3px;
    box-shadow: 0 3px 12px rgba(80, 140, 200, 0.15); /* Subtiler Glow */
}

.idea-item h4 {
    font-size: 1.1rem;
    color: rgba(80, 140, 200, 0.95);
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.idea-item h4::before {
    content: '💡';
    font-size: 1.1em;
    filter: grayscale(0.2);
    transition: transform 0.3s ease;
}

.idea-item:hover h4::before {
    transform: translateX(3px);
}

.idea-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
    font-size: 0.92rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* =========================================
   RECHTE SPALTE - POLIERT
   ========================================= */

.updates-right-column {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.updates-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    transition: all 0.15s ease;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Moderner "Breathing" Parallax-Effekt */
.updates-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        rgba(255, 77, 77, 0.05),
        rgba(255, 140, 140, 0.08),
        rgba(255, 77, 77, 0.05)
    );
    background-size: 200% 200%;
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
    animation: gradientBreathing 8s ease-in-out infinite;
    opacity: 0;
}

/* Dezentes "Atmen" des Gradients */
@keyframes gradientBreathing {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 0.6;
    }
}

/* Subtiles Shimmer-Overlay beim Hover */
.updates-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    background-size: 200% 100%;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 2;
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { 
        background-position: -100% 0;
    }
    100% { 
        background-position: 200% 0;
    }
}

.updates-image:hover::after {
    opacity: 1;
}

.updates-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.15s ease;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    animation: imageFloat 5s ease-in-out infinite;
}

/* Sanfte schwebende Bewegung des Bildes */
@keyframes imageFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-4px) scale(1.01);
    }
}

.updates-image:hover {
    transform: translateY(-5px); /* Leichteres Anheben */
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.2),
        0 12px 32px rgba(0, 0, 0, 0.35);
}

.updates-image:hover img {
    transform: scale(1.05); /* Weniger aggressive Skalierung */
}

/* Projekt-Showcase - Poliert mit MICRO-ANIMATION */
.project-showcase {
    background: linear-gradient(135deg, 
        rgba(30, 30, 35, 0.95), 
        rgba(25, 25, 30, 0.98)
    );
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: all 0.15s ease; /* SCHNELLE Micro-Animation */
}

/* ZURÜCK: Cooler rotierender Glow im Showcase */
.project-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1), transparent 70%);
    animation: rotateGlowProject 15s linear infinite;
}

@keyframes rotateGlowProject {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.project-showcase:hover {
    border-color: rgba(255, 77, 77, 0.4);
    transform: translateY(-4px) scale(1.01); /* Leichter Puls */
    box-shadow: 
        0 12px 40px rgba(255, 77, 77, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.25);
}

.project-showcase h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #ff6b6b, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.project-showcase p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.project-showcase p strong {
    color: rgba(255, 77, 77, 0.95);
    font-weight: 600;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    .updates-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .updates-right-column {
        position: relative;
        top: 0;
    }
    
    .updates-image,
    .project-showcase {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .updates-section {
        padding: 80px 20px;
    }
    
    .updates-container {
        display: flex;
        flex-direction: column;
    }
    
    .updates-left-column {
        order: 1;
        gap: 16px;
    }
    
    .updates-right-column {
        order: 2;
        gap: 16px;
    }
    
    .updates-image,
    .project-showcase {
        margin-left: auto;
        margin-right: auto;
    }
    
    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .update-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .update-item {
        padding: 24px 22px;
    }
    
    .upcoming-header {
        padding: 14px 20px;
    }
    
    .upcoming-header h4 {
        font-size: 1.2rem;
    }
    
    .project-showcase {
        padding: 24px;
    }
    
    .project-showcase h3 {
        font-size: 1.4rem;
    }
    
    .subscribe-button {
        width: 100%;
        justify-content: center;
    }
    
    .update-subscribe {
        justify-content: stretch;
    }
    
    .project-ideas-section {
        padding: 24px 22px 32px 22px;
    }
    
    .project-ideas-section h3 {
        font-size: 1.35rem;
    }
    
    .idea-item {
        padding: 16px 18px;
        margin-bottom: 14px;
    }
    
    .update-keywords {
        gap: 8px;
        padding-top: 14px;
        margin-bottom: 16px;
    }
    
    .updates-list {
        gap: 16px;
    }
    
    .update-description {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .update-item {
        padding: 20px 18px;
    }
    
    .update-keywords {
        gap: 6px;
        padding-top: 12px;
    }
    
    .keyword-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .update-description {
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    
    .upcoming-header {
        padding: 12px 16px;
    }
    
    .project-ideas-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .project-ideas-section h3 {
        font-size: 1.25rem;
    }
    
    .idea-item h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    
    .idea-item p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
}