/* Main */

    body .feature-list {
      	font-size:20px;
    }

    #newgen-header {
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;

        width: 100vw;
        padding: 25px 0 45px 0;
        text-align: center;

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        margin-bottom: 22px;

        box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.25);
    }

    #newgen-button span {
        display: inline-block;
        padding: 10px 35px 11px 25px;
        font-size: 42px;
        font-weight: bold;
        color: #fff;
      
        border-radius: 20px;
        box-shadow: 0 0 25px 0px rgba(255, 255, 255, 0);
        transition: background-color .3s ease;
    }

    #newgen-button span:hover {
        box-shadow: 0 0px 20px rgba(255, 255, 255, 1);
        transition: box-shadow .3s ease;
    }

    .feature-list h2 {
        color: #303030;
        margin-bottom: 25px;
    }

    .screenshots h2 {
        display: none;
    }

    div.screenshots {
        position: relative;
        top: 90px;
    }

    .feature img {
        width: 64px;
    }

    .feature {
        display: flex;
        gap: 18px;
        margin-bottom: 28px;
        align-items: flex-start;
    }

    .feature-title {
        font-size: 20px;
        font-weight: bold;
    }

    .feature-title span.badge {
        background: linear-gradient(to bottom,
                #ad0319 0%,
                #dc071d 45%,
                #E44226 100%);
        font-size: 20px;
        font-weight: bold;
        padding: 7px 7px 6px 8px;
        border-radius: 4px;
    }

    #newgen-header h1 {
        margin: 0;
        font-size: 52px;
        color: #fff;
    }

    #newgen-button {
        margin-top: 35px;
    }

    #newgen-button a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        text-align: center;
    }

    #badge {
        display: inline-block;
        transform: translate(-43px, -36px);
        padding: 15px;
        font-size: 20px;
        font-weight: bold;
        line-height: 20px;
        color: #fff;
        background: radial-gradient(circle at 50% 35%,
                #ad0319 0%,
                #dc071d 55%,
                #E44226 100%);
        border-radius: 65px;
    }

    #newgen-30days {
        position: relative;
        top: 15px;
        left: -30px;
        font-size: 20px;
        color: #fff;
    }

    #newgen-30days span:first-child {
        margin-right: 5px;
        padding: 1px 7px 2px;
        font-weight: bold;
        color: #303030;
        background: #fff;
        border-radius: 5px;
    }

    /* Mobile overrides */

    @media (max-width:768px) {

        #newgen-header {
            top: 0;
            padding: 30px 16px;
        }

        #newgen-header h1 {
            font-size: clamp(26px, 7vw, 36px);
            line-height: 1.2;
        }

        #newgen-button {
            margin-top: 30px;
        }

        #newgen-button span {
            font-size: clamp(18px, 5.5vw, 26px);
            padding: 10px 18px;
        }

        #badge {
            transform: translate(-18px, -24px);
            padding: 10px;
            font-size: 14px;
            line-height: 16px;
        }

        #newgen-30days {
            left: 0;
            font-size: 16px;
            line-height: 1.3;
        }
    }

/* Gallery */

.mini-gallery {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gal-viewport {
    overflow: hidden;
    width: 100%;
}

.gal-track {
    display: flex;
    gap: 7px;
    transition: transform .35s ease;
}

.gal-thumb {
    flex: 0 0 calc((100% - 16px)/3);
    max-width: calc((100% - 16px)/3);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gal-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
}

.gal-arrow {
    width: 42px;
    height: 42px;

    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    line-height: 1;
    padding: 0;

    cursor: pointer;

    box-shadow: 0 0px 10px rgba(0, 0, 0, .18);

    flex-shrink: 0;
}


/* Lightbox */

.lb {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, .75);
    z-index: 9999;
}

.lb.active {
    display: flex;
}

.lb-panel {
    margin: auto;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lb-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lb-inner {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}


.lb-inner img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lb-caption {
    color: #fff;
    background: #000;

    /* height + spacing */
    min-height: 54px;
    /* ← increase this if you want taller */
    padding: 0px 18px;

    /* layout */
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    text-align: center;
    line-height: 1.35;
}

.lb-close {
    position: absolute;
    top: -18px;
    right: -18px;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);

    display: grid;
    place-items: center;
    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);

    opacity: .7;
    visibility: visible;
    z-index: 13100;

    transition: opacity 220ms ease;
}

.lb-close {
    opacity: .7;
    transition: opacity 220ms ease;
}

.lb-close:hover {
    opacity: 1;
}

/* Lightbox Navigation */

.lb-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20%;
    cursor: pointer;
    z-index: 2;
}

.lb-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.lb-nav.left {
    left: 0;
}

.lb-nav.left::before {
    background: linear-gradient(to right,
            rgba(0, 0, 0, .6),
            transparent);
}

.lb-nav.right {
    right: 0;
}

.lb-nav.right::before {
    background: linear-gradient(to left,
            rgba(0, 0, 0, .6),
            transparent);
}

.lb-nav:hover::before {
    opacity: 1;
}



.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    border-radius: 50%;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);

    display: grid;
    place-items: center;
    font-size: 20px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);

    opacity: 0;
    /* hidden by default */
    transition: opacity .2s ease;

    pointer-events: none;
    /* nav zone handles clicks */
}

.lb-nav:hover .lb-arrow {
    opacity: 1;
}

.lb-nav.left .lb-arrow {
    left: 12px;
}

.lb-nav.right .lb-arrow {
    right: 12px;
}