/* Application detail page — extracted from application.html inline <style>. */

.demo-container {
    margin: 2rem 0;
}

.demo-container h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.interactive-demo {
    margin-top: 1.5rem;
    text-align: center;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FF4E50, #FC913A);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 145, 58, 0.2);
    max-width: 400px;
    margin: 0 auto;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 145, 58, 0.3);
    background: linear-gradient(135deg, #FF6B6D, #FFA357);
}

.demo-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.demo-text {
    text-align: left;
    flex-grow: 1;
}

.demo-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.demo-description {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.demo-arrow {
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.demo-button:hover .demo-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .demo-button {
        padding: 0.8rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .demo-icon {
        margin: 0 0 0.5rem 0;
    }

    .demo-text {
        text-align: center;
        margin: 0.5rem 0;
    }

    .demo-arrow {
        margin: 0.5rem 0 0 0;
    }
}

.app-extended-description {
    margin: 2rem 0;
}

.extended-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-section, .tech-section {
    margin-bottom: 1.5rem;
}

.feature-section h4, .tech-section h4 {
    color: #e53e3e;
    margin-bottom: 0.75rem;
}

.feature-section ul, .tech-section ul {
    padding-left: 1.5rem;
}

.feature-section li, .tech-section li {
    margin-bottom: 0.5rem;
}
