/* =====================================================
MAIN WRAPPER
===================================================== */

.vrr-single-wrap{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.vrr-single-header{
    margin-bottom: 25px;
}

.vrr-single-header h1{
    margin-bottom: 6px;
}

.vrr-tax-line{
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.85;
}

.vrr-header-actions{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.vrr-export-deck,
.vrr-mcq-btn{
    background: #6ea889;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
}

/* =====================================================
SLIDES WRAPPER
===================================================== */

.vrr-slides-wrapper{
    position: relative;
    width: 100%;
}

.vrr-slides-container{
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

/* =====================================================
SLIDE CARD
===================================================== */

.vrr-slide-card{
    display: none;

    width: 100%;
    max-width: 520px;
    aspect-ratio: 9 / 16;
    min-height: 650px;

    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 16px;
    overflow: hidden;
    color: #fff;

    position: relative;
    padding: 20px;
    margin: 0 auto;

    box-shadow: 0 20px 40px rgba(0,0,0,0.35);

    display: flex;
    flex-direction: column;
}

.vrr-slide-card.active{
    display: flex;
}

/* FORCE FONT */

.vrr-slide-card,
.vrr-slide-card *{
    font-family: 'Quicksand', sans-serif !important;
}

/* =====================================================
SLIDE HEADER
===================================================== */

.vrr-slide-header{
    text-align: left;
    margin-bottom: 6px;
}

.vrr-slide-count{
    font-size: 14px;
    opacity: .75;
}

/* =====================================================
SLIDE BODY (FIXED)
===================================================== */

.vrr-slide-body{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* TITLE */

.vrr-slide-title{
    font-weight: 800;
    font-size: clamp(36px, 4vw, 30px);
    line-height: 1.3;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 24px;
}

/* IMAGE */

.vrr-slide-image{
    width: 100%;
    margin-bottom: 10px;
}

.vrr-slide-image img{
    width: 100%;
    border-radius: 12px;
}

/* POINTS */

.vrr-slide-points{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1; /* ðŸ”¥ THIS MAKES IT FILL SPACE */
}

.vrr-point{
    background: none;
    padding: 0;
    border-radius: 0;

    color: #e5e7eb;

    font-size: 20px;
    font-weight: 600;

    text-align: left;
    line-height: 1.8;
}

/* CONTENT FALLBACK */

.vrr-slide-content{
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

/* FOOTER */

.vrr-watermark img{
    width: 90px;
    opacity: .25;
}

/* =====================================================
SIDE NAVIGATION
===================================================== */

.vrr-side-nav{
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 999;
}

.vrr-prev-slide,
.vrr-next-slide{
    width: 48px;
    height: 48px;

    border-radius: 8px;
    border: none;

    background: #6ea889;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    cursor: pointer;

    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* =====================================================
FULLSCREEN BUTTON
===================================================== */

.vrr-fullscreen-btn{
    position: absolute;
    top: 12px;
    right:12px;

    width: 34px;
    height: 34px;

    border-radius: 6px;
    border: none;

    background: #6ea889;
    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* =====================================================
FULLSCREEN MODE
===================================================== */

.vrr-slides-wrapper:fullscreen,
.vrr-slides-wrapper:-webkit-full-screen{
    background: #000;
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.vrr-slides-wrapper:fullscreen .vrr-slides-container{
    max-width: 540px;
    width: 100%;
}

.vrr-slides-wrapper:fullscreen .vrr-side-nav{
    right: 20px;
}

/* =====================================================
MOBILE
===================================================== */

@media (max-width: 768px){

    .vrr-single-wrap{
        padding: 14px;
    }

    .vrr-slide-card{
        max-width: 100%;
        min-height: 85vh;
    }

    .vrr-slide-title{
        font-size: 30px;
    }

    .vrr-point{
        font-size: 16px;
    }

    .vrr-side-nav{
        display: none;
    }
}
.vrr-slide-body{
    align-items: stretch !important;
}

.vrr-slide-points{
    width: 100%;
}



/* REMOVE CENTER ALIGN FROM OLD CONTENT */

.vrr-slide-content{
    text-align: left !important;
}
.vrr-slide-body{
    align-items: stretch !important;
}

.vrr-slide-points{
    width: 100%;
}

.vrr-point{
    
    width: 100%;

    text-align: left !important;

    font-color: #000;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
}

/* REMOVE CENTER ALIGN FROM OLD CONTENT */

.vrr-slide-points{
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.vrr-point{
    border-left: 3px solid rgba(255,255,255,0.2);
    padding-left: 10px;
}
.vrr-slide-card{
    display: none !important;
}

.vrr-slide-card.active{
    display: flex !important;
}
.vrr-last-links{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.vrr-nav-card{
    background:#fff;
    color:#111;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.vrr-nav-card span{
    display:block;
    font-size:14px;
    opacity:.7;
    margin-top:4px;
}

.vrr-cta{
    margin-top:20px;
    font-size:14px;
    opacity:.8;
}
.vrr-ad-slot {
    margin: 20px 0;
    text-align: center;
}