/* features/signal/css/SignalPreview.css */

.sg-preview-canvas {
    width: 100%;
    height: 100%;
    background-color: #0a0c10;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sg-preview-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 300ms ease, transform 300ms ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
}

.sg-preview-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sg-preview-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
}

.sg-preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 200ms ease;
}

.sg-preview-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.sg-preview-dot.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.sg-preview-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.sg-preview-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sg-preview-buyer-bar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 100;
}

.sg-preview-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.9) 0%, rgba(10, 12, 16, 0) 100%);
    z-index: 100;
}

.sg-preview-cta button {
    border-radius: 30px;
    background: linear-gradient(135deg, var(--lb-accent-green, #10A37F), #0b7a5e);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 32px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 163, 127, 0.3);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.sg-preview-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 163, 127, 0.4);
}

.sg-preview-cover-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.sg-preview-synopsis-body {
    max-width: 560px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: 16px;
}

.sg-preview-script-block {
    font-family: 'Courier Prime', 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e0e0e0;
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
    white-space: pre-wrap;
}
