/* Demo Page Styles */

.demo-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.demo-screenshot {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-screenshot img.demo-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.screenshot-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem 3rem;
    text-align: center;
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.screenshot-placeholder img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.screenshot-placeholder:hover {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.screenshot-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.screenshot-placeholder span {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

