﻿html {
    font-size: 16px; /* Sets the base font size for rem units to 16px */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'gt_americaregular';
    font-size: 1.833rem;
    line-height: 1.6;
    background: #ffffff;
    color: #1d1d1f;
}

p, li {
    font-family: 'gt_americaregular';
    font-size: 1.375rem;
    color: #003366;
}

h1 {
    font-size: 2rem;
    font-family: 'gt_americaextended_bold';
    color: #003366;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.25;
}

h2 {
    font-family: 'gt_americaextended_regular';
    font-size: 2rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 1rem;
}

.darkBlueBack {
    background: #003366 !important;
    color: #ffffff !important;
    padding: 1rem !important;
    text-align: center;
    width: 100%;
    height: auto;
}

.fullWidth {
    width: 100%;
    height: auto;
    padding: 2rem 0;
}

h3 {
    font-family: 'gt_americaextended_regular';
    font-size: 1.75rem;
    font-weight: 600;
    color: #003366;
    margin-bottom: 1rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 1.5rem;
    padding-left: 0;
    padding-right: 0;
}

.header {
    position: relative;
    padding: 0.5rem 0;
    border-bottom: none;
    background: none;
    z-index: 1;
}

/* Caret added to dropdown links */
.dropdown > a::after {
    content: " ▾";
    font-size: 1em;
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* Flip caret when menu is open (mobile) */
.dropdown.open > a::after {
    content: " ▴";
}



.nav-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/img/Navbar-arcs-full.jpg') no-repeat bottom center;
    z-index: -1;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003366;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 1.25rem !important;
    padding-bottom: 0px;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

.main-nav {
    flex-grow: 1;
    margin-left: 50px;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-left: auto;
    flex-wrap: wrap;
    gap: 1.5rem;
}

    .menu li {
        position: relative;
    }

    .menu a {
        text-decoration: none;
        color: #003366;
        padding: 0.5rem 0.75rem;
        display: block;
        transition: background 0.2s ease;
        font-family: "Roboto", sans-serif;
        font-weight: 600;
        font-size: 1rem;
    }

        .menu a:hover {
            background-color: #e8f0ff;
            border-radius: 4px;
        }

.submenu {
    display: none;
    position: absolute;
    background: #fff;
    top: 100%;
    left: 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    z-index: 1000;
    border-radius: 4px;
}

    .submenu li a {
        padding: 0.5rem 1rem;
        white-space: nowrap;
        color: #003366;
    }

        .submenu li a:hover {
            background-color: #f1f5ff;
        }

.dropdown:hover .submenu {
    display: block;
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 400px;
    background: url('/img/MastHeads/masthead-1.png') no-repeat left center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero2 {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 400px;
    background: url('/img/MastHeads/masthead-2.png') no-repeat left center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero3 {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    height: 400px;
    background: url('/img/MastHeads/masthead-3.png') no-repeat left center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hidden-desktop {
    display: none !important;
}

.hidden-desktop-block {
    display: none !important;
}

.hidden-mobile {
    display: block;
}

.hidden-mobile-flex {
    display: flex;
}



.hero-content {
    width: 100%;
    max-width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: .25rem;
    align-content: center;
}

    .hero-content h1 {
        font-size: 2rem;
        font-family: 'gt_americaextended_bold';
        color: #003366;
        font-weight: 500;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.125rem;
        color: #003366;
        margin-bottom: .4rem;
    }

    .hero-content .btn {
        display: inline-block;
        padding: .5rem 1.25rem !important;
        color: #003366 !important;
        font-family: 'gt_americamedium';
        border-radius: 30px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        margin-top: 0;
        background-color: #52b8e8 !important;
        font-size: .9rem !important;
    }

        .hero-content .btn:hover {
            background-color: #003366 !important;
            color: #ffffff !important;
        }


.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    font-stretch: narrower;
    color: #003366;
}

.hero-text p {
    font-size: 1.125rem;
    margin-top: 0.75rem;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: #52b8e8;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
}

#modalCloseBtn, .lgBtn {
    display: inline-block;
    padding: .5rem 2.5rem !important;
    color: #fff !important;
    font-family: 'gt_americamedium';
    border-radius: 30px !important;
    border: none;
    text-decoration: none !important;
    transition: background-color 0.3s ease;
    margin-top: 0;
    background-color: #3369ff !important;
    font-size: .9rem !important;
    margin-top: 1.5rem;
    font-weight: normal !important;
}

    #modalCloseBtn:hover, .lgBtn:hover {
        background-color: #003366 !important;
        color: #fff !important;
    }

.intro,
.comparison,
.financial-future {
    padding: 2rem 0;
    text-align: center;
}

    .intro p,
    .comparison p,
    .financial-future p {
        font-size: 1.375rem;
        //color: #333;
    }

.info-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.comparison-holder {
    background: #dceffe;
}



.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.info-card {
    display: flex;
    align-items: center; /* ✅ Vertically center icon and text */
    background-color: #e6f3ff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


    .info-card h1 {
        font-size: 2rem;
        font-family: 'Roboto';
        color: #003366;
        font-weight: 500;
        margin-bottom: .5rem;
        line-height: 1.25;
    }

.info-icon {
    margin-right: 2rem;
}



.info-text p {
    font-family: 'gt_americaregular';
    font-size: 1.125rem;
    color: #003366;
    line-height: 1.5;
}


.success-back {
    background: url('/img/videoArcs.png') no-repeat center center;
    /*cover entire width but not height*/
    background-size: auto;
}

.roboto-font {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

/* Utility classes for column width */
.col-2 {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
}

.col-3 {
    flex: 0 0 calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
}

.col-4 {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column; /* Optional: stack items vertically */
    height: 100%; /* Ensure the parent div has a height */
}

.site-footer {
    font-family: "gt_americaregular", Arial, sans-serif;
    font-size: 0.875rem;
    color: #333;
    padding: 2rem 1.5rem;
    background-color: #e9e9e9;
    border-top: 1px solid #ccc;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-links a {
        color: #0033cc;
        text-decoration: none;
        font-weight: 600;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-address p {
    text-align: right;
    font-size: 0.875rem !important;
    color: #555 !important;
}

.footer-meta p {
    text-align: right;
    font-size: 0.8rem !important;
    margin-top: .5rem;
    color: #555 !important;
}

.footer-meta hr {
    margin: 1rem 0;
    border: none;
    border-top: 1px solid #ccc;
}

.footer-legal {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
}

    .footer-legal p {
        margin-bottom: 1rem;
        font-size: .75rem !important;
        color: #555;
    }

    .footer-legal a {
        color: #0033cc;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-legal a:hover {
            text-decoration: underline;
        }


.charts-row {
    display: flex;
    justify-content: center;
    align-items: stretch; /* stretch to match height */
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: nowrap;
}

.chart-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.colL {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: rem !important;
}

.colR {
    margin-right: 1rem;
    margin-left: 1rem;
    font-size: 1.25rem !important;
}

.vs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* fixed width for spacing */
    min-width: 60px;
}

.vs-text {
    font-family: 'gt_americaextended_bold';
    font-size: 1.5rem;
    font-weight: 600;
    color: #003366;
    margin: 0;
}


.chart-img {
    width: 100%;
    max-width: 330px;
}

.table-img {
    width: 100%;
    max-width: 650px;
    margin-top: 1.5rem;
}

}


.chart-img {
    width: 100%;
    max-width: 330px;
}

.table-img {
    width: 100%;
    max-width: 650px;
    margin-top: 1.5rem;
}

.responsive-video-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Center horizontally */
}

.responsive-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
}

    .responsive-video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.mobile-hero-head {
    padding-top: 0px;
    /* align-items: center; */
    text-align: center;
    align-items: center;
    justify-content: center;

}




@media (min-width: 1040px) {
    .hero {
        flex-direction: row;
        text-align: left;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        display: block !important;
    }

    .dropdown:hover .submenu {
        display: block;
    }
}

.plip {
    max-width: 50% !important;
}

@media (max-width: 1039px) {
    .header::before {
        background: url('/img/Navbar-arcs-half.jpg') no-repeat bottom left !important;
    }
    .plip{
        max-width:85% !important;
    }
    .main-nav {
        display: none;
        flex-direction: column;
        background-color: white;
        padding: 1rem;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

        .main-nav.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
        font-size: 2rem;
        cursor: pointer;
    }

    .submenu {
        display: none;
        padding-left: 1rem;
    }

    .dropdown.open > .submenu {
        display: block;
    }

    .dropdown > a::after {
        content: ' ▾';
        float: right;
    }

    .dropdown.open > a::after {
        content: ' ▴';
    }

    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .mobile-gray-back {
        background: #e9e9e9 !important;
    }

    .hero-content {
        text-align: center !important;
        background-color: #e9e9e9 !important;
        max-width: 100%;
        width: 100%;
        padding-top:3rem;
        padding-bottom:3rem;
    }


    .hero, .hero2, .hero3 {
        background-image: none !important;
        width: 100%;
        height: auto;
        max-width: 100%;
        margin-top: 0;
    }

    .hidden-desktop {
        display: flex !important;
    }

    .hidden-desktop-block {
        display: block !important;
    }

    .hidden-mobile {
        display: none !important;
    }
    .hidden-mobile-flex {
        display: none !important;
    }

    .footer-top {
        flex-direction: column;
        text-align: left;
    }

    .footer-address {
        text-align: left;
    }

    .footer-meta {
        text-align: left;
    }

    .responsive-video-wrapper {
        position: relative;
        width: 90%;
        max-width: 700px;
        aspect-ratio: 16 / 9;
    }

    .charts-row {
        flex-direction: column;
    }

    .vs-wrapper {
        padding: 1rem 0;
    }

    .vs-text {
        font-size: 2rem;
    }
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1040px) {
    .columns .col-2:nth-child(2) {
        border-left: 3px solid #003366; /* matches text color */
        padding-left: 2rem; /* space between border and text */
        margin-left: -1.5px; /* centers border between columns */
        line-height: 3rem;
        align-content: center;
    }
}

@media (max-width: 1039px) {
    .columns .col-2:nth-child(1) img{
        width:80%;
        max-width: 650px !important;
        align-content: center;
    }
    .columns .col-2:nth-child(2) {
        border-top: 3px solid #003366; /* matches text color */
        padding-left: 2rem; /* space between border and text */
        padding-top:2rem;
        line-height: 3rem;
        align-content: center;
    }

    .def {
        
        padding-right:2rem !important;
    }
    .contHolder{
        width: auto;
    }
    .hero-content{
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width: 1039px) {
    /* Make the 2nd column a flex container and center its child (.contHolder) */
    .columns .col-2:nth-child(2) {
        display: flex;
        justify-content: center; /* centers the contHolder horizontally */
        align-items: flex-start; /* don't vertically center — keep natural top flow */
        text-align: left !important; /* text itself stays left-aligned */
    }

        /* The inner holder stays left-aligned but is centered as an element */
        .columns .col-2:nth-child(2) .contHolder {
            text-align: left;
            max-width: 650px; /* optional: cap width for nicer measure */
            width: auto; /* size to content */
        }
}

/* Form */
form {
    margin-inline: auto;
    width: 100%;
    margin-top: 2rem;
}

.field {
    margin: 0 auto 12px;
    max-width: 650px;
    text-align: left;
}

/* Keep labels for a11y but visually hide */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.lipcontact-Form {
    margin-top: -4rem;
    margin-bottom: 2rem;
}
.contact-Form {
    margin-bottom: 2rem;
}
input[type="text"],
input[type="email"],
input[type="tel"], textarea {
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
    height: 44px;
    border: 2px solid #8c8c8a !important;
    border-radius: 0px !important;
    background: #fff;
    color: #000;
    padding: 0 12px;
    font-size: .98rem;
    letter-spacing: .2px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.error-text{
    color: red !important;
}

textarea {
    margin-top: 7px;
    height: 70px !important;
}
/* Uppercase placeholders as in the mock */
input::placeholder, textarea::placeholder {
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8c8c8a;
}

input:focus {
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(52,101,255,.15);
}

/* Submit button */
.actions {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

/*button[type="submit"] {
    appearance: none;
    padding: .5rem 1.25rem !important;
    color: #fff !important;
    font-family: 'gt_americamedium';
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 0;
    background-color: #003366 !important;
    font-size: .9rem !important;
}

    button[type="submit"]:hover {
        filter: brightness(1.06);
        background-color: #003366 !important;
        color: #ffffff !important;
    }

    button[type="submit"]:active {
        transform: translateY(1px);
    }*/

.contact-Form .btn, .lipcontact-Form .btn {
    display: inline-block;
    padding: .5rem 2.5rem !important;
    color: #fff !important;
    font-family: 'gt_americamedium';
    border-radius: 30px;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 0;
    background-color: #3369ff !important;
    font-size: .9rem !important;
    margin-top: 1.5rem;
}

    .contact-Form .btn:hover, .lipcontact-Form .btn:hover {
        background-color: #003366 !important;
        color: #fff !important;
    }

/* Tiny touch target tweak on very small screens */
@media (max-width:360px) {
    input[type="text"], input[type="email"], input[type="tel"] {
        height: 48px;
    }
}

.disclaim {
 
    font-size: 0.85rem;
    color: #555;
    margin: 1rem auto 0;
    margin-top:.5rem !important;
    padding-top: 0 !important;
    text-align: left;
    line-height: 1.4;
}
.is-invalid {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important;
}

.error-text {
    margin-top: 6px;
    color: var(--error);
    font-size: .85rem;
    min-height: 1.1em; /* keeps layout stable */
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: Arial, sans-serif;
    margin: 40px 0;
    margin-top: 0px !important;
}

.step {
    flex: 1;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-weight: bold;
}

    .step h2 {
        font-size: 4rem;
        margin-bottom: 10px;
        font-family: 'gt_americaextended_bold';
        font-weight: 400;
    }

    .step p {
        font-size: 1.25rem;
        margin: 0;
        font-weight: bolder;
        line-height: 1.5rem;
    }

.step1 {
    background-color: #002C77; /* dark blue */
    color: #fff !important;
}
    .step1 h2, .step2 h2, .step1 p, .step2 p {
        color: #fff !important;
    }

.step2 {
    background-color: #2C64FF; /* medium blue */
    color: #fff !important;
}

.step3 {
    background-color: #66BFFF; /* light blue */
    color: #002C77; /* darker text */
}

.ces-pillars {
    --bg: #eef6ff; /* light background */
    --primary: #0e3ea8; /* dark blue for badges/headings */
    --text: #0f2137; /* body text */
    --bullet: #0e3ea8; /* bullet color */
    --maxw: 1200px;
    background: var(--bg);
    color: var(--text);
    border-radius: 16px;
    padding: 28px 28px 32px;
}

.ces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ces-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.ces-head {
    display: flex;
    align-items: center ;
    gap: 14px;
}

.ces-badge {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #fff;
    color: #003366;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
}

.ces-title {
    font-weight: 800;
    font-size: 24px;
    padding:0; 
    margin:0;
    color: #003366;
}

.ces-list {
    margin: 0;
    padding-left: 0; /* remove default padding for custom bullets */
    list-style: none;
    display: grid;
    gap: 8px;
}

    .ces-list li {
        position: relative;
        padding-left: 18px;
    }

        .ces-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 8px;
            line-height: 1;
        }


@media (max-width: 1039px) {
    .ces-grid {
        grid-template-columns: 1fr;
    }

    .ces-badge {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .ces-title {
        font-size: 22px;
    }
}

.wwwd {
    align-items: flex-start !important;
    background-color: #eeeeee !important;
}

#desktopHero {
    position: relative;
    background: center / cover no-repeat;
    /* optional default image */
    background-image: url('img/MastHeads/LIP/Life-Income-Plan-masthead-A.jpg');
}

    /* overlay used for the fade-in */
    #desktopHero .hero-fade {
        position: absolute;
        inset: 0;
        background: center / cover no-repeat;
        opacity: 0;
        transition: opacity 800ms ease; /* adjust speed here */
        pointer-events: none;
    }

        #desktopHero .hero-fade.show {
            opacity: 1;
        }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    #desktopHero .hero-fade {
        transition: none;
    }
}

.hero-content {
    z-index: 0;
}

/* Wrapper that contains all .hero-container slides */
.hero-rotator {
    position: relative;
    overflow: hidden;
    /* Optional: set a sensible minimum height for the hero area */
    min-height: 60vh;
    transition: height 300ms ease; /* smooth height change when slides differ in height */
}

    /* Each slide stacks in the same place */
    .hero-rotator .hero-container {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 800ms ease;
        display: flex; /* keep your layout */
        align-items: center; /* adjust as needed */
    }

        /* Active slide fades in */
        .hero-rotator .hero-container.is-active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            z-index: 1;
        }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-rotator {
        transition: none;
    }

        .hero-rotator .hero-container {
            transition: none;
        }
}
.header {
    z-index: 2 !important;
}
.intro li, .cards li {
    margin-bottom:.4rem;
    font-size:1.2rem;
}
/* Drop-in: fade overlay + play button */
.responsive-video-container,
.responsive-video-wrapper {
    position: relative; /* ensure the overlay positions correctly */
}

.rv-play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(transparent, rgba(0,0,0,.25)); /* subtle tint */
    cursor: pointer;
    transition: opacity 200ms ease;
    z-index: 2;
}

    /* Poster support: JS sets inline background-image on this element */
    .rv-play-overlay.has-poster {
        background: linear-gradient(transparent, rgba(0,0,0,.25)), var(--rv-poster) center/cover no-repeat;
    }

    .rv-play-overlay .rv-ring {
        width: 84px;
        height: 84px;
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        display: grid;
        place-items: center;
        box-shadow: 0 8px 20px rgba(0,0,0,.35);
        transition: transform 160ms ease, background 160ms ease;
    }

    .rv-play-overlay svg {
        width: 28px;
        height: 28px;
        transform: translateX(2px);
    }

    .rv-play-overlay:hover .rv-ring,
    .rv-play-overlay:focus .rv-ring {
        transform: scale(1.06);
        background: #fff;
        outline: none;
    }

.rv-playing .rv-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* keep iframe clicks off until playing (in case of overlays) */
.rv-covered iframe {
    pointer-events: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .rv-play-overlay {
        transition: none;
    }
}
