﻿/****************************************************
 * NEED HELP => HOME => LATO ADMIN
 ****************************************************/
.admin-guide-card-main,
.admin-guide-card-sub,
.admin-guide-btn {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-guide-card-main {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.admin-guide-card-header {
    margin-bottom: 28px;
}

.admin-guide-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #002c5c;
    margin: 0 0 2px 0;
}

.admin-guide-badge {
    font-size: 11px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    color: #6b7280;
    border: 1px solid rgba(0, 44, 92, 0.3);
    background: rgba(0, 44, 92, 0.07);
}

.admin-guide-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    margin-top: 6px;
    margin-bottom: 0;
}

.admin-guide-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 8px;
}

/* CARD INTERNE */
.admin-guide-card-sub {
    flex: 1 1 0;
    max-width: 48%;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    padding: 18px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* 📱 MOBILE — fino a 576px */
@media (max-width: 576px) {
    .admin-guide-grid {
        flex-direction: column;
    }

    .admin-guide-card-sub {
        max-width: 100%;
        margin-bottom: 16px;
    }

    .admin-guide-title {
        font-size: 22px;
    }
}

/* 📲 TABLET — 577px a 1024px */
@media (min-width: 577px) and (max-width: 1024px) {
    .admin-guide-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .admin-guide-card-sub {
        max-width: 48%;
    }
}

/* 💻 PC / LAPTOP — 1025px a 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
    .admin-guide-card-main {
        max-width: 1200px;
    }

    .admin-guide-card-sub {
        max-width: 48%;
    }
}

/* 🖥️ MONITOR GRANDI — oltre 1441px */
@media (min-width: 1441px) {
    .admin-guide-card-main {
        max-width: 1400px;
    }

    .admin-guide-grid {
        gap: 32px;
    }

    .admin-guide-card-sub {
        max-width: 46%;
    }
}

/* ============================= */

.admin-guide-card-sub-header {
    margin-bottom: 4px;
}

.admin-guide-section-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #002c5c;
    margin: 0 0 2px 0;
}

.admin-guide-section-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin: 0;
}

.admin-guide-card-sub-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-guide-card-sub-footer {
    margin-top: 8px;
    text-align: right;
}

    .admin-guide-card-sub-footer span {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #64748b;
    }

.admin-guide-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #002c5c;
    background: #002c5c;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .12s, box-shadow .12s, border-color .12s, background .12s, color .12s;
}

    .admin-guide-btn:hover {
        transform: translateY(-1px);
        border-color: #002c5c;
        background: #ffffff;
        color: #002c5c;
        box-shadow: 0 8px 20px rgba(15,23,42,0.25);
        background: #ffffff;
    }

    .admin-guide-btn:focus,
    .admin-guide-btn:active {
        outline: none;
        background: #ffffff;
        color: #002c5c !important;
        border-color: #002c5c;
        box-shadow: 0 0 0 3px rgba(0,44,92,0.25);
    }

    .admin-guide-btn .chevron {
        font-size: 16px;
        opacity: 0.95;
    }

.admin-guide-pill {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-weight: 700;
}

/****************************************************
 * NEW TOURNAMENT => ADMIN HELP PAGE
 ****************************************************/

.admin-guide-target-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

    .admin-guide-target-page h2 {
        font-size: 26px;
        font-weight: 700;
        color: #002c5c;
        margin-bottom: 4px;
    }

    .admin-guide-target-page > p {
        font-size: 14px;
        color: #64748b;
        margin-top: 4px;
        margin-bottom: 24px;
    }

/* IMAGE + CALLOUTS LAYOUT (screenshot left, inputs explanation right) */
.create-tournament-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .create-tournament-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

.create-tournament-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 720px;
    margin: 0 auto; 
    text-align: center;
}

    .create-tournament-screenshot img {
        display: inline-block;
        width: 100%;
        max-width: 100%;
        max-height: 540px;
        height: auto;
    }

.create-tournament-callouts-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.create-tournament-callouts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-callout {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    align-items: center;
}

.field-tag {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.field-text {
    font-size: 13px;
    color: #475569;
}

    .field-text strong {
        color: #0f172a;
    }

/* DETAIL SECTIONS */
.section-block {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .section-block h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        color: #002c5c;
    }

    .section-block p,
    .section-block ul {
        font-size: 14px;
        color: #64748b;
        margin-top: 6px;
    }

    .section-block ul {
        padding-left: 18px;
    }

        .section-block ul li {
            margin-bottom: 6px;
        }

/* Dates settings mini flow (Settings -> Dates) */
.dates-flow {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.dates-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dates-step-label {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.dates-step-image img {
    max-width: 586px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.dates-arrow {
    font-size: 22px;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .dates-flow {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* FAQ TITLE */
.faq-title {
    margin-top: 32px;
    font-size: 18px;
    color: #002c5c;
    font-weight: 700;
}

/* Accordion FAQ */
.faq-grid {
    column-count: 2;
    column-gap: 32px;
}

@media (max-width: 900px) {
    .faq-grid {
        column-count: 1;
    }
}

.faq-item {
    break-inside: avoid;
    margin-bottom: 14px;
}

.faq-question {
    background: #f1f5f9;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #002c5c;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

    .faq-question:hover {
        background: #e2e8f0;
    }

.faq-answer {
    display: none;
    padding: 10px 14px;
    border-left: 3px solid #002c5c;
    background: #f9fafb;
    border-radius: 6px;
    margin-top: 6px;
    color: #475569;
}

.step-tag {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/****************************************************
 * TOURNAMENT RFES => ADMIN HELP PAGE
 ****************************************************/

.needhelp-rfes-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

.needhelp-rfes-title {
    font-size: 26px;
    font-weight: 700;
    color: #002c5c;
    margin-bottom: 4px;
}

.needhelp-rfes-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
    margin-bottom: 24px;
}

/****************************************************
 * SECTIONS
 ****************************************************/
.needhelp-rfes-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .needhelp-rfes-section h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        color: #002c5c;
    }

    .needhelp-rfes-section p,
    .needhelp-rfes-section ul {
        font-size: 14px;
        color: #64748b;
    }

        .needhelp-rfes-section ul li {
            margin-bottom: 6px;
        }

/****************************************************
 * GRID (SCREENSHOT + CALLOUTS)
 ****************************************************/
.needhelp-rfes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .needhelp-rfes-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/****************************************************
 * SCREENSHOT BOX
 ****************************************************/
.needhelp-rfes-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

    .needhelp-rfes-screenshot img {
        display: inline-block;
        width: 100%;
        max-height: 540px;
        height: auto;
    }


.needhelp-rfes-callouts-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8px;
}

.needhelp-rfes-callouts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.needhelp-rfes-callout {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    align-items: center;
    font-size: 13px;
    color: #475569;
}

    .needhelp-rfes-callout .tag {
        min-width: 28px;
        height: 28px;
        border-radius: 999px;
        background: #002c5c;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }

/****************************************************
 * ACCORDION (Lucky Loser, WC, PR, Ranking…)
 ****************************************************/
.needhelp-rfes-accordion {
    margin-bottom: 14px;
}

    .needhelp-rfes-accordion .question {
        background: #f1f5f9;
        padding: 10px 14px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        color: #002c5c;
        border: 1px solid #e2e8f0;
        transition: 0.2s;
    }

        .needhelp-rfes-accordion .question:hover {
            background: #e2e8f0;
        }

    .needhelp-rfes-accordion .answer {
        display: none;
        padding: 10px 14px;
        border-left: 3px solid #002c5c;
        background: #f9fafb;
        border-radius: 6px;
        margin-top: 6px;
        color: #475569;
        font-size: 14px;
    }

        .needhelp-rfes-accordion .answer h4 {
            margin-top: 10px;
            font-size: 15px;
            font-weight: 700;
            color: #002c5c;
        }
/* =====================================================
   PROTECTED RANKING – ADMIN GUIDE CSS
   ===================================================== */

.needhelp-pr-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

.needhelp-pr-title {
    font-size: 26px;
    font-weight: 700;
    color: #002c5c;
    margin-bottom: 4px;
}

.needhelp-pr-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
    margin-bottom: 24px;
}

/****************************************************
 * SECTIONS
 ****************************************************/
.needhelp-pr-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .needhelp-pr-section h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px 0;
        color: #002c5c;
    }

    .needhelp-pr-section p,
    .needhelp-pr-section ul {
        font-size: 14px;
        color: #64748b;
    }

    .needhelp-pr-section ul {
        padding-left: 18px;
    }

        .needhelp-pr-section ul li {
            margin-bottom: 6px;
        }

/****************************************************
 * WARNING SECTION
 ****************************************************/
.needhelp-pr-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 18px 20px;
}

    .needhelp-pr-warning h3 {
        color: #9a3412;
    }

    .needhelp-pr-warning ul li {
        color: #7c2d12;
    }

/****************************************************
 * LAYOUT: SCREENSHOT + STEPS
 ****************************************************/
.needhelp-pr-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    align-items: flex-start;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .needhelp-pr-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/****************************************************
 * SCREENSHOT BOX
 ****************************************************/
.needhelp-pr-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

    .needhelp-pr-screenshot img {
        display: inline-block;
        width: 100%;
        max-height: 540px;
        height: auto;
    }

/****************************************************
 * STEPS (RIGHT COLUMN)
 ****************************************************/
.needhelp-pr-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.needhelp-pr-step {
    display: grid;
    grid-template-columns: 28px 1fr; 
    align-items: start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px; /
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    color: #475569;
}

    .needhelp-pr-step ul {
        margin-top: 6px;
        padding-left: 18px;
    }

        .needhelp-pr-step ul li {
            margin-bottom: 4px;
        }



.needhelp-pr-step strong {
    color: #0f172a;
}

/* =====================================================
   USER APPROVAL & ACCOUNT MANAGEMENT – ADMIN GUIDE
   Fully namespaced CSS – NO conflicts
   ===================================================== */

.needhelp-acc-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

/****************************************************
 * HEADER
 ****************************************************/
.needhelp-acc-title {
    font-size: 26px;
    font-weight: 700;
    color: #002c5c;
    margin-bottom: 4px;
}

.needhelp-acc-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/****************************************************
 * SECTIONS
 ****************************************************/
.needhelp-acc-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .needhelp-acc-section h3 {
        font-size: 18px;
        font-weight: 700;
        color: #002c5c;
        margin-bottom: 6px;
    }

    .needhelp-acc-section p {
        font-size: 14px;
        color: #64748b;
    }

/****************************************************
 * LAYOUT: IMAGE + STEPS
 ****************************************************/
.needhelp-acc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    margin-top: 18px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .needhelp-acc-layout {
        grid-template-columns: 1fr;
    }
}

/****************************************************
 * SCREENSHOT
 ****************************************************/
.needhelp-acc-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    max-width: 720px;
    margin: 0 auto;
}

    .needhelp-acc-screenshot img {
        width: 100%;
        height: auto;
        display: block;
    }

/****************************************************
 * STEPS
 ****************************************************/
.needhelp-acc-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.needhelp-acc-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

/****************************************************
 * STEP NUMBER (NAMESPACED)
 ****************************************************/
.needhelp-acc-step-tag {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/****************************************************
 * STEP TEXT
 ****************************************************/
.needhelp-acc-step-text {
    font-size: 13px;
    color: #475569;
}

    .needhelp-acc-step-text strong {
        color: #0f172a;
    }

/****************************************************
 * INFO CARDS (Impersonate / Stats / Manage PR / Active)
 ****************************************************/
.needhelp-acc-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    margin-top: 14px;
}

    .needhelp-acc-card h4 {
        margin: 0 0 4px 0;
        font-size: 15px;
        font-weight: 700;
        color: #002c5c;
    }

    .needhelp-acc-card p {
        font-size: 14px;
        color: #64748b;
    }


/* =====================================================
   MANAGE SUBSCRIPTIONS – ADMIN GUIDE
   ===================================================== */

.needhelp-sub-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

/* HEADER */
.needhelp-sub-title {
    font-size: 26px;
    font-weight: 700;
    color: #002c5c;
    margin-bottom: 4px;
}

.needhelp-sub-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/* SECTIONS */
.needhelp-sub-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .needhelp-sub-section h3 {
        font-size: 18px;
        font-weight: 700;
        color: #002c5c;
        margin-bottom: 6px;
    }

    .needhelp-sub-section p,
    .needhelp-sub-section ul {
        font-size: 14px;
        color: #64748b;
    }

    .needhelp-sub-section ul {
        padding-left: 18px;
    }

/* WARNING */
.needhelp-sub-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 18px 20px;
}

    .needhelp-sub-warning h3 {
        color: #9a3412;
    }

    .needhelp-sub-warning p,
    .needhelp-sub-warning li {
        color: #7c2d12;
    }

/* LAYOUT */
.needhelp-sub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    margin-top: 18px;
}

@media (max-width: 900px) {
    .needhelp-sub-layout {
        grid-template-columns: 1fr;
    }
}

/* SCREENSHOT */
.needhelp-sub-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 720px;
    margin: 0 auto;
}

    .needhelp-sub-screenshot img {
        width: 100%;
        display: block;
    }

/* STEPS */
.needhelp-sub-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.needhelp-sub-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.needhelp-sub-step-tag {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.needhelp-sub-step-text {
    font-size: 13px;
    color: #475569;
}

    .needhelp-sub-step-text strong {
        color: #0f172a;
    }

/* =====================================================
   PLAYER GUIDE – UNO REGISTRATION & TOURNAMENT SIGN-UP
   ===================================================== */
/* =====================================================
   PLAYER GUIDE – AFTER APPROVAL (PLAYERS)
   ===================================================== */

.needhelp-pl-page {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    color: #1e293b;
}

/* HEADER */
.needhelp-pl-title {
    font-size: 26px;
    font-weight: 700;
    color: #002c5c;
    margin-bottom: 4px;
}

.needhelp-pl-subtitle {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 24px;
}

/* SECTIONS */
.needhelp-pl-section {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #ececec;
}

    .needhelp-pl-section h3 {
        font-size: 18px;
        font-weight: 700;
        color: #002c5c;
        margin-bottom: 6px;
    }

    .needhelp-pl-section p,
    .needhelp-pl-section ul {
        font-size: 14px;
        color: #64748b;
    }

    .needhelp-pl-section ul {
        padding-left: 18px;
    }

.needhelp-pl-subheading {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #002c5c;
}

/* LAYOUT */
.needhelp-pl-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 32px;
    margin-top: 18px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .needhelp-pl-layout {
        grid-template-columns: 1fr;
    }
}

/* SCREENSHOT */
.needhelp-pl-screenshot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
}

    .needhelp-pl-screenshot img {
        width: 100%;
        height: auto;
        display: block;
    }

/* NEW: CAPTION */
.needhelp-pl-caption {
    font-size: 12px;
    color: #64748b;
    padding: 8px 10px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

/* STEPS */
.needhelp-pl-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.needhelp-pl-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.needhelp-pl-step-tag {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #002c5c;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.needhelp-pl-step-text {
    font-size: 13px;
    color: #475569;
}

    .needhelp-pl-step-text strong {
        color: #0f172a;
    }

    .needhelp-pl-step-text ul {
        margin-top: 6px;
        padding-left: 18px;
        color: #475569;
    }

        .needhelp-pl-step-text ul li {
            margin-bottom: 4px;
        }

/* GALLERY (small screenshots) */
.needhelp-pl-gallery {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 900px) {
    .needhelp-pl-gallery {
        grid-template-columns: 1fr;
    }
}

.needhelp-pl-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #ffffff;
}

    .needhelp-pl-gallery-item img {
        width: 100%;
        height: auto;
        display: block;
    }

/* WARNING */
.needhelp-pl-warning {
    margin-top: 16px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 16px 18px;
}

.needhelp-pl-warning-title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #9a3412;
}

.needhelp-pl-warning p,
.needhelp-pl-warning li {
    color: #7c2d12;
}

.needhelp-pl-warning-strong {
    border-color: rgba(0, 44, 92, 0.25);
    background: rgba(0, 44, 92, 0.06);
}

    .needhelp-pl-warning-strong .needhelp-pl-warning-title {
        color: #002c5c;
    }

    .needhelp-pl-warning-strong p,
    .needhelp-pl-warning-strong li {
        color: #334155;
    }

/* SUCCESS */
.needhelp-pl-success {
    margin-top: 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
    padding: 16px 18px;
}

.needhelp-pl-success-title {
    margin: 0 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: #065f46;
}

.needhelp-pl-success ul li {
    color: #065f46;
}

/* =====================================================
   PLAYER GUIDE – REGISTRATION
   ===================================================== */

.needhelp-registration-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.needhelp-registration-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.needhelp-registration-print-btn {
    background: var(--std-background, #002c5c);
    color: #fff;
    border: 1px solid var(--std-background, #002c5c);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s, box-shadow .12s;
}

    .needhelp-registration-print-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(15,23,42,0.25);
    }

.needhelp-registration-intro {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
}

    .needhelp-registration-intro h3 {
        margin: 0 0 8px 0;
        font-weight: 900;
        color: var(--std-background, #002c5c);
        font-size: 16px;
    }

    .needhelp-registration-intro p {
        margin: 0;
        color: #475569;
        font-size: 14px;
    }

.needhelp-registration-inline-demo {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.register-titlebar-guidewrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
}

.register-titlebar-guide {
    font-weight: 900;
    color: var(--std-background, #002c5c);
    text-decoration: none;
    cursor: pointer;
}

.register-titlebar-guide-pulse i {
    margin-right: 6px;
}

.register-titlebar-click {
    font-weight: 800;
    color: #64748b;
    font-size: 12px;
}

.needhelp-registration-info-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    font-weight: 800;
    color: #475569;
    font-size: 13px;
}

    .needhelp-registration-info-demo .fa-info {
        color: var(--std-background, #002c5c);
    }

@media print {
    .needhelp-registration-actions,
    .needhelp-registration-faq,
    .faq-title,
    .faq-item {
        display: none !important;
    }

    .needhelp-pl-layout {
        display: block !important;
    }

    .needhelp-pl-screenshot {
        margin-bottom: 12px;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .needhelp-pl-step,
    .needhelp-acc-step,
    .field-callout {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .needhelp-pl-steps {
        gap: 10px;
    }

    .needhelp-pl-screenshot .ph {
        min-height: 180px !important;
    }
}


.needhelp-stepper {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0 14px;
}

.needhelp-stepper-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid var(--std-background);
    background: #fff;
    cursor: pointer;
    user-select: none;
    text-decoration: none; 
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease, background-color .15s ease;
}

    .needhelp-stepper-item.is-active {
        background: var(--std-background);
        border-color: var(--std-background);
        box-shadow: 0 6px 18px rgba(0,0,0,.12);
    }

        .needhelp-stepper-item.is-active .needhelp-stepper-label {
            color: #fff;
        }

        .needhelp-stepper-item.is-active .needhelp-stepper-dot {
            background: #fff;
            color: var(--std-background);
        }

    .needhelp-stepper-item.is-inactive {
        opacity: .78;
    }

    .needhelp-stepper-item.is-available:hover,
    .needhelp-stepper-item.is-available:focus {
        opacity: 1;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0,0,0,.10);
    }

    .needhelp-stepper-item.is-disabled {
        opacity: .45;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: none !important;
    }

    .needhelp-stepper-item.is-required {
        box-shadow: 0 0 0 3px rgba(255,193,7,.25);
    }

.needhelp-stepper-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: #e8effb;
    color: var(--std-background);
}

.needhelp-stepper-item.is-disabled .needhelp-stepper-dot {
    background: #e9ecef;
    color: #7a7a7a;
}

.needhelp-stepper-label {
    font-size: .88rem;
    white-space: nowrap;
    font-weight: 900;
    color: var(--std-background);
}

.needhelp-stepper-item.is-disabled .needhelp-stepper-label {
    color: #7a7a7a;
}

.needhelp-stepper-hint {
    font-size: .85rem;
}

.needhelp-hint-on .needhelp-stepper .needhelp-stepper-item.is-available {
    animation: needhelp-click-fade 1.6s ease-in-out infinite;
}

@keyframes needhelp-click-fade {
    0% {
        opacity: .65;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .65;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.needhelp-hint-on .needhelp-stepper .needhelp-stepper-item.is-available {
        animation: none !important;
    }

    .needhelp-stepper-item {
        transition: none !important;
    }
}

.needhelp-step {
    display: block;
}

.needhelp-registration-sectionhead {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.needhelp-registration-sectiondot {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--std-background, #002c5c); 
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.needhelp-registration-sectiontitle {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--std-background, #002c5c);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.15;
}