/* --- LANDING PAGE LAYOUT --- */
#sec-landing {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    justify-content: center;
    padding: 0 12vw;
}

.lp-label {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(0, 255, 60, 0.35);
    margin-bottom: 24px;
}

.lp-name {
    font-size: clamp(36px, 6vw, 72px);
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 60, 0.5);
    line-height: 1;
    margin-bottom: 20px;
}

.lp-cur {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background: #00ff41;
    margin-left: 6px;
    animation: blink 1.1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.lp-tagline, .lp-desc {
    font-size: clamp(12px, 1.4vw, 15px);
    color: rgba(240, 237, 232, 0.5);
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0; 
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-tagline.show, .lp-desc.show {
    opacity: 1;
    transform: translateY(0);
}

/* Der Start-Button - Jetzt absolut im Vordergrund */
#start-btn {
    position: relative;
    z-index: 1000; /* Zwingt den Button über alles andere */
    font-family: 'Courier New', monospace;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid rgba(0, 255, 60, 0.4);
    color: #00ff41;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

#start-btn.show {
    opacity: 1;
    transform: translateY(0);
}

#start-btn:hover {
    background: rgba(0, 255, 60, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 60, 0.2);
}