.bp-78b706fb-wrapper {
    font-family: 'Poppins', 'Helvetica Neue', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.bp-78b706fb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card base */
.bp-78b706fb-card {
    border: 1px solid #afafaf;
    border-radius: 20px;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-78b706fb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Browser Header Bar */
.bp-78b706fb-bar {
    height: 44px;
    background-color: #ffffff;
    border-bottom: 1px solid #afafaf;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.bp-78b706fb-dots {
    display: flex;
    gap: 8px;
}

.bp-78b706fb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.bp-78b706fb-dot.is-red { background-color: #ff5f56; }
.bp-78b706fb-dot.is-yellow { background-color: #ffbd2e; }
.bp-78b706fb-dot.is-green { background-color: #27c93f; }

/* Canvas Area */
.bp-78b706fb-canvas {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 15px;
    border-radius: 12px;
}

/* Fanned Screenshots Layout */
.bp-78b706fb-fanned-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-78b706fb-screenshot {
    position: absolute;
    width: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    background: #0d0d0d;
    transition: transform 0.3s ease;
}

.bp-78b706fb-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Absolute offsets for fanned layout style */
.bp-78b706fb-screenshot.is-left {
    transform: translateX(-45px) rotate(-12deg) scale(0.85);
    z-index: 1;
    opacity: 0.85;
}

.bp-78b706fb-screenshot.is-right {
    transform: translateX(45px) rotate(12deg) scale(0.85);
    z-index: 1;
    opacity: 0.85;
}

.bp-78b706fb-screenshot.is-center {
    transform: translateZ(0) scale(1);
    z-index: 3;
}

.bp-78b706fb-card:hover .bp-78b706fb-screenshot.is-left {
    transform: translateX(-65px) rotate(-16deg) scale(0.85);
}

.bp-78b706fb-card:hover .bp-78b706fb-screenshot.is-right {
    transform: translateX(65px) rotate(16deg) scale(0.85);
}

.bp-78b706fb-card:hover .bp-78b706fb-screenshot.is-center {
    transform: scale(1.03);
}

/* Bottom info panel */
.bp-78b706fb-info {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
}

.bp-78b706fb-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bp-78b706fb-item-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0d0d0d;
}

.bp-78b706fb-item-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #0d0d0d;
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1.5px solid #0d0d0d;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.bp-78b706fb-item-link:hover {
    opacity: 0.7;
}

.bp-78b706fb-arrow {
    font-size: 13px;
}

.bp-78b706fb-item-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5e5e5e;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .bp-78b706fb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .bp-78b706fb-grid {
        grid-template-columns: 1fr;
    }
    .bp-78b706fb-canvas {
        height: 320px;
    }
    .bp-78b706fb-screenshot {
        width: 130px;
    }
}
