.nfl-fraud-notice[hidden] {
    display: none !important;
}

.nfl-fraud-notice {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    padding: 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, visibility .18s ease;
}

.nfl-fraud-notice.is-open {
    opacity: 1;
    visibility: visible;
}

.nfl-fraud-notice__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 31, 48, .72);
    backdrop-filter: blur(5px);
}

.nfl-fraud-notice__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(820px, 100%);
    max-height: calc(100vh - 48px);
    max-height: calc(100svh - 48px);
    box-sizing: border-box;
    overflow: hidden;
    color: #243244;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(7, 20, 38, .3);
    opacity: 0;
    transform: translateY(14px) scale(.985);
    transition: opacity .18s ease, transform .18s ease;
}

.nfl-fraud-notice.is-open .nfl-fraud-notice__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nfl-fraud-notice__header {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 28px 70px 20px 30px;
    background: linear-gradient(135deg, #fff8f4 0%, #fff 72%);
    border-bottom: 1px solid #edf0f4;
}

.nfl-fraud-notice__icon {
    display: inline-grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #fff;
    background: #ec5e0a;
    border-radius: 14px;
    box-shadow: 0 0 0 7px rgba(236, 94, 10, .12);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}

.nfl-fraud-notice__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #ec5e0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.nfl-fraud-notice h2 {
    margin: 0;
    color: #202a38;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.2;
}

.nfl-fraud-notice__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: #697586;
    background: #f2f5f8;
    border: 1px solid #e4e9ef;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 28px;
    line-height: 1;
    transition: color .16s ease, border-color .16s ease, transform .16s ease;
}

.nfl-fraud-notice__close:hover,
.nfl-fraud-notice__close:focus-visible {
    color: #ec5e0a;
    border-color: rgba(236, 94, 10, .42);
    outline: none;
    transform: translateY(-1px);
}

.nfl-fraud-notice__content {
    padding: 24px 30px 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.nfl-fraud-notice__content p,
.nfl-fraud-notice__content li {
    color: #445166;
    font-size: 14px;
    line-height: 1.65;
}

.nfl-fraud-notice__content p {
    margin: 0 0 15px;
}

.nfl-fraud-notice__content .nfl-fraud-notice__warning {
    padding: 13px 15px;
    color: #923805;
    background: #fff1e8;
    border-left: 3px solid #ec5e0a;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
}

.nfl-fraud-notice__content h3 {
    margin: 20px 0 10px;
    color: #202a38;
    font-size: 15px;
    font-weight: 700;
}

.nfl-fraud-notice__content ul {
    display: grid;
    gap: 9px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.nfl-fraud-notice__content li {
    position: relative;
    padding-left: 25px;
}

.nfl-fraud-notice__content li::before {
    position: absolute;
    top: .62em;
    left: 3px;
    width: 8px;
    height: 8px;
    content: "";
    background: #ec5e0a;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(236, 94, 10, .12);
}

.nfl-fraud-notice__actions {
    display: flex;
    justify-content: flex-end;
    padding: 18px 30px 24px;
    background: #fff;
    border-top: 1px solid #edf0f4;
}

.nfl-fraud-notice__button {
    display: inline-flex;
    min-width: 180px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    color: #fff;
    background: #ec5e0a;
    border: 1px solid #ec5e0a;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(236, 94, 10, .2);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.nfl-fraud-notice__button:hover,
.nfl-fraud-notice__button:focus-visible {
    background: #d94f00;
    border-color: #d94f00;
    outline: none;
    transform: translateY(-1px);
}

html.nfl-fraud-notice-open,
html.nfl-fraud-notice-open body {
    overflow: hidden;
}

@media (max-width: 767px) {
    .nfl-fraud-notice {
        align-items: end;
        padding: 12px;
    }

    .nfl-fraud-notice__dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        max-height: calc(100svh - 24px);
        border-radius: 18px;
    }

    .nfl-fraud-notice__header {
        gap: 13px;
        padding: 22px 56px 17px 20px;
    }

    .nfl-fraud-notice__icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 11px;
        box-shadow: 0 0 0 5px rgba(236, 94, 10, .11);
        font-size: 21px;
    }

    .nfl-fraud-notice h2 {
        font-size: 20px;
    }

    .nfl-fraud-notice__close {
        top: 13px;
        right: 13px;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 25px;
    }

    .nfl-fraud-notice__content {
        padding: 19px 20px 5px;
    }

    .nfl-fraud-notice__content p,
    .nfl-fraud-notice__content li {
        font-size: 13px;
        line-height: 1.58;
    }

    .nfl-fraud-notice__actions {
        padding: 15px 20px 18px;
    }

    .nfl-fraud-notice__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nfl-fraud-notice,
    .nfl-fraud-notice__dialog,
    .nfl-fraud-notice__close,
    .nfl-fraud-notice__button {
        transition: none;
    }
}
