<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hide showcase by default */
.guest-only {
    display: none !important;
}

/* Show showcase only for non-authenticated users without shared map */
body:not(.authenticated):not(.has-shared-map) .guest-only {
    display: block !important;
}

/* Hide showcase container when mapshared parameter is present */
body.has-shared-map #showcase-container {
    display: none !important;
}

#showcase-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #4299e1, #63b3ed);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.15);
}

.showcase-header h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.showcase-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-carousel {
    position: relative;
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 400px;
}

.showcase-examples {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
}

.showcase-example {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    min-height: 350px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(66, 153, 225, 0.1);
}

.showcase-example.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.example-preview {
    flex: 0 0 60%;
    height: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.example-info {
    flex: 1;
    padding: 1.5rem;
}

.example-info h3 {
    font-size: 1.8rem;
    color: #2b6cb0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.example-info p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.showcase-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-prev, .nav-next {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c3e50;
    pointer-events: auto;
    transition: transform 0.2s;
}

.nav-prev:hover, .nav-next:hover {
    transform: scale(1.1);
}

.showcase-cta {
    text-align: center;
}

/* РЎС‚РёР»Рё РґР»СЏ РєРЅРѕРїРєРё РїРѕ ID */
#showcaseGoogleAuth {
    background: #27ae60 !important;
    color: white !important;
    border: none !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.3rem !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 300px !important;
}

#showcaseGoogleAuth:hover {
    background: #219a52 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.4) !important;
}

.cta-benefits {
    margin-top: 1rem;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-header {
        padding: 1.5rem;
    }
    
    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .showcase-header p {
        font-size: 1.1rem;
    }

    .showcase-example {
        padding: 1.5rem;
        flex-direction: column;
    }

    .example-info h3 {
        font-size: 1.5rem;
    }

    .example-info p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
} </pre></body></html>