@import '_content/OptionsPlayWidgets.Core/OptionsPlayWidgets.Core.bundle.scp.css';

/* /Components/UnauthenticatedLanding.razor.rz.scp.css */
/* Unauthenticated Landing Page Styles */

.landing-page[b-ysldala97l] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.landing-container[b-ysldala97l] {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
}

.hero-content[b-ysldala97l] {
    color: white;
}

.logo[b-ysldala97l] {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.logo img[b-ysldala97l] {
    max-width: 300px;
    height: auto;
}

h1[b-ysldala97l] {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.subtitle[b-ysldala97l] {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.features[b-ysldala97l] {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.features li[b-ysldala97l] {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.features li[b-ysldala97l]::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-button[b-ysldala97l] {
    display: inline-block;
    padding: 16px 48px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.cta-button:hover[b-ysldala97l] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.preview-section[b-ysldala97l] {
    position: relative;
}

.preview-card[b-ysldala97l] {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.preview-header[b-ysldala97l] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.preview-title[b-ysldala97l] {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.preview-dots[b-ysldala97l] {
    display: flex;
    gap: 6px;
}

.dot[b-ysldala97l] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
}

.preview-content[b-ysldala97l] {
    display: grid;
    gap: 16px;
}

.widget-mockup[b-ysldala97l] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    padding: 20px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.widget-mockup-header[b-ysldala97l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-mockup-title[b-ysldala97l] {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.widget-mockup-icon[b-ysldala97l] {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.widget-mockup-bars[b-ysldala97l] {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 50px;
}

.bar[b-ysldala97l] {
    flex: 1;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 4px 4px 0 0;
}

.bar:nth-child(1)[b-ysldala97l] { height: 60%; }
.bar:nth-child(2)[b-ysldala97l] { height: 85%; }
.bar:nth-child(3)[b-ysldala97l] { height: 45%; }
.bar:nth-child(4)[b-ysldala97l] { height: 95%; }
.bar:nth-child(5)[b-ysldala97l] { height: 70%; }

.blur-overlay[b-ysldala97l] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-icon[b-ysldala97l] {
    font-size: 48px;
    opacity: 0.3;
}

@media (max-width: 968px) {
    .landing-container[b-ysldala97l] {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .logo[b-ysldala97l] {
        justify-content: center;
    }

    h1[b-ysldala97l] {
        font-size: 36px;
    }

    .features[b-ysldala97l] {
        display: inline-block;
        text-align: left;
    }

    .preview-section[b-ysldala97l] {
        max-width: 500px;
        margin: 0 auto;
    }
}
