/* Additional styles for real artifact previews */

.real-preview {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.preview-header {
    padding: 20px;
    border-bottom: 1px solid #E5E5E5;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #333;
    background: #F9F9F9;
}

.preview-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Воронка preview */
.funnel-preview {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.funnel-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px;
}

.funnel-section-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.funnel-section-content {
    font-family: var(--font-sans);
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
}

.funnel-cta {
    background: linear-gradient(135deg, #FF6B35 0%, #FF3300 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
}

/* Table preview */
.table-preview {
    width: 100%;
    border-collapse: collapse;
}

.table-preview th,
.table-preview td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
    font-family: var(--font-sans);
    font-size: 13px;
}

.table-preview th {
    background: #F3F4F6;
    font-weight: 700;
    color: #374151;
}

.table-preview td {
    color: #6B7280;
}

.table-preview tr:hover {
    background: #F9FAFB;
}

/* HTML app preview */
.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #FFFFFF;
}

.app-preview-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.app-preview-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    text-align: center;
    opacity: 0.9;
}

.app-preview-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.app-preview-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}