/* Mobile Section */
#mobile {
    background: linear-gradient(135deg, #f8f9fd 0%, #e9ecf1 100%);
}

#mobile .hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#mobile .hero-text {
    flex: 1.2;
    max-width: 600px;
}

#mobile .hero-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

#mobile .hero-text p:last-of-type {
    font-size: 0.95rem;
    margin-bottom: 0;
}

#mobile .instruction-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    transition: all 0.3s ease;
}

#mobile .instruction-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-decoration: none;
}

#mobile .platform-switch {
    justify-content: flex-start;
    margin: 2.5rem 0 1.5rem 0;
}

#mobile .platform {
    padding: 12px 28px;
    font-size: 17px;
}

#mobile .download-row {
    justify-content: flex-start;
    margin-top: 2rem;
    gap: 1.2rem;
    flex-wrap: wrap;
}

#mobile .btn-download {
    padding: 14px 28px;
    font-size: 16px;
}

#mobile .device-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mobile .device {
    width: 100%;
    max-width: 500px;
}

#mobile .device img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mobile .device img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

#mobile .device figcaption {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Responsive Design für Mobile Section */
@media (max-width: 1024px) {
    #mobile .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    #mobile .hero-text {
        max-width: 100%;
        text-align: left;
    }

    #mobile .platform-switch {
        justify-content: flex-start;
    }

    #mobile .download-row {
        justify-content: flex-start;
    }

    #mobile .device {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    /* Stack hero content and center text for phones */
    #mobile .hero-content {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }

    #mobile .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    #mobile .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    #mobile .platform-switch {
        justify-content: center;
        margin: 1.5rem 0;
    }

    #mobile .download-row {
        justify-content: center;
        gap: 0.8rem;
    }

    #mobile .btn-download {
        padding: 12px 18px;
        font-size: 15px;
    }

    #mobile .device {
        max-width: 360px;
    }

    #mobile .device img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    #mobile .hero-content {
        gap: 1rem;
    }

    #mobile .hero-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    #mobile .btn-download {
        width: 100%;
        box-sizing: border-box;
    }

    #mobile .device {
        max-width: 300px;
    }

    #mobile .device figcaption {
        font-size: 0.9rem;
    }
}
