/*
==========================================================
FantasyFanzone Front-end Authentication & Member Account
Version: 4.9.2
==========================================================
*/

/*========================================================
AUTH BASE
========================================================*/

.ffz-auth{
    position:relative;
    min-height:70vh;
    padding:90px 0;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(124,58,237,.14),
            transparent 34%
        ),
        var(--ffz-background);
}

.ffz-auth__container{
    display:flex;
    justify-content:center;
}

.ffz-auth__card{
    width:min(560px,100%);
    padding:38px;
    border:1px solid var(--ffz-border);
    border-radius:28px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.025)
        );
    box-shadow:var(--ffz-shadow-xl);
}

.ffz-auth__intro{
    margin-bottom:28px;
    text-align:center;
}

.ffz-auth__eyebrow,
.ffz-account__section-kicker{
    display:inline-flex;
    margin-bottom:12px;
    padding:7px 13px;
    border-radius:999px;
    background:rgba(124,58,237,.12);
    color:#c4b5fd;
    font-size:11px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.ffz-auth__intro h1{
    margin:0;
    color:#fff;
    font-size:clamp(30px,5vw,42px);
    line-height:1.1;
}

.ffz-auth__intro p{
    max-width:460px;
    margin:12px auto 0;
    color:var(--ffz-text-muted);
    line-height:1.7;
}

/*========================================================
AUTH FORM
========================================================*/

.ffz-auth__form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.ffz-auth__form>label{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.ffz-auth__form input[type=text],
.ffz-auth__form input[type=email],
.ffz-auth__form input[type=password]{
    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid var(--ffz-border);
    border-radius:14px;
    outline:none;
    background:rgba(255,255,255,.045);
    color:#fff;
    font:inherit;
    transition:
        border-color var(--ffz-transition-normal),
        box-shadow var(--ffz-transition-normal);
}

.ffz-auth__form input:focus{
    border-color:var(--ffz-primary);
    box-shadow:0 0 0 3px rgba(124,58,237,.16);
}

.ffz-auth__row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    font-size:13px;
}

.ffz-auth__row a,
.ffz-auth__switch a{
    color:#c4b5fd;
    font-weight:700;
    text-decoration:none;
}

.ffz-auth__row a:hover,
.ffz-auth__switch a:hover{
    color:#fff;
}

.ffz-auth__check{
    display:inline-flex!important;
    flex-direction:row!important;
    align-items:center;
    gap:8px!important;
    color:var(--ffz-text-muted)!important;
    font-weight:600!important;
}

.ffz-auth__check input{
    accent-color:var(--ffz-primary);
}

.ffz-auth__submit{
    width:100%;
    margin-top:4px;
}

.ffz-auth__switch{
    margin:24px 0 0;
    color:var(--ffz-text-muted);
    font-size:13px;
    text-align:center;
}

/*========================================================
AUTH NOTICES
========================================================*/

.ffz-auth__notices{
    display:grid;
    gap:10px;
    margin-bottom:20px;
}

.ffz-auth__notice{
    padding:12px 14px;
    border-radius:12px;
    font-size:13px;
    line-height:1.55;
}

.ffz-auth__notice--error{
    border:1px solid rgba(239,68,68,.22);
    background:rgba(239,68,68,.09);
    color:#fecaca;
}

.ffz-auth__notice--success{
    border:1px solid rgba(34,197,94,.22);
    background:rgba(34,197,94,.09);
    color:#bbf7d0;
}

.ffz-auth__notice--info{
    border:1px solid rgba(59,130,246,.22);
    background:rgba(59,130,246,.09);
    color:#bfdbfe;
}

/*========================================================
ACCOUNT PAGE
========================================================*/

.ffz-account{
    padding-top:72px;
}

.ffz-account__container{
    display:block;
}

.ffz-account__hero{
    position:relative;
    margin-bottom:24px;
    padding:28px;
    overflow:hidden;
    border:1px solid var(--ffz-border);
    border-radius:26px;
    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.12),
            rgba(255,255,255,.025) 55%
        );
    box-shadow:var(--ffz-shadow-lg);
}

.ffz-account__hero::after{
    content:"";
    position:absolute;
    top:-90px;
    right:-70px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(124,58,237,.13);
    filter:blur(60px);
    pointer-events:none;
}

.ffz-account__profile{
    position:relative;
    z-index:1;
    display:flex;
    align-items:center;
    gap:22px;
}

.ffz-account__avatar{
    flex:0 0 88px;
    width:88px;
    height:88px;
    padding:4px;
    border-radius:50%;
    background:var(--ffz-gradient-primary);
    box-shadow:0 14px 34px rgba(124,58,237,.24);
}

.ffz-account__avatar-image{
    display:block;
    width:100%;
    height:100%;
    border:4px solid var(--ffz-background);
    border-radius:50%;
    object-fit:cover;
}

.ffz-account__profile-content{
    min-width:0;
}

.ffz-account__profile-content h1{
    margin:0;
    color:#fff;
    font-size:clamp(28px,4vw,42px);
    line-height:1.1;
}

.ffz-account__profile-content p{
    max-width:680px;
    margin:10px 0 0;
    color:var(--ffz-text-muted);
    line-height:1.7;
}

.ffz-account__identity-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:24px;
}

.ffz-account__identity-item{
    min-width:0;
    padding:14px 16px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:14px;
    background:rgba(255,255,255,.03);
}

.ffz-account__identity-item span{
    display:block;
    margin-bottom:5px;
    color:var(--ffz-text-muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.ffz-account__identity-item strong{
    display:block;
    overflow:hidden;
    color:#fff;
    font-size:13px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

/*========================================================
ACCOUNT LAYOUT
========================================================*/

.ffz-account__layout{
    display:grid;
    grid-template-columns:240px minmax(0,1fr);
    gap:24px;
    align-items:start;
}

.ffz-account__sidebar,
.ffz-account__content{
    border:1px solid var(--ffz-border);
    background:rgba(255,255,255,.025);
    box-shadow:var(--ffz-shadow-md);
}

.ffz-account__sidebar{
    position:sticky;
    top:100px;
    padding:14px;
    border-radius:20px;
}

.ffz-account__content{
    min-width:0;
    padding:28px;
    border-radius:24px;
}

/*========================================================
ACCOUNT NAVIGATION
========================================================*/

.ffz-account__nav{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.ffz-account__nav-heading{
    margin:14px 10px 5px;
    color:var(--ffz-text-muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.ffz-account__nav-link{
    display:grid;
    grid-template-columns:24px minmax(0,1fr) auto;
    align-items:center;
    gap:8px;
    min-height:44px;
    padding:9px 11px;
    border:1px solid transparent;
    border-radius:12px;
    color:var(--ffz-text-muted);
    font-size:12px;
    font-weight:700;
    text-decoration:none;
    transition:
        background var(--ffz-transition-normal),
        color var(--ffz-transition-normal),
        border-color var(--ffz-transition-normal);
}

.ffz-account__nav-link:hover{
    border-color:rgba(124,58,237,.18);
    background:rgba(124,58,237,.07);
    color:#fff;
}

.ffz-account__nav-link.is-active{
    border-color:rgba(124,58,237,.28);
    background:rgba(124,58,237,.13);
    color:#fff;
}

.ffz-account__nav-link>span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    color:#c4b5fd;
    font-size:14px;
}

.ffz-account__nav-link small{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:22px;
    height:22px;
    padding:0 6px;
    border-radius:999px;
    background:rgba(255,255,255,.07);
    color:#fff;
    font-size:9px;
}

.ffz-account__logout{
    margin-top:16px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.06);
}

.ffz-account__logout-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    min-height:42px;
    padding:0 12px;
    border:1px solid rgba(239,68,68,.18);
    border-radius:12px;
    background:rgba(239,68,68,.06);
    color:#fca5a5;
    font:inherit;
    font-size:12px;
    font-weight:800;
    cursor:pointer;
    transition:var(--ffz-transition-normal);
}

.ffz-account__logout-button:hover{
    border-color:rgba(239,68,68,.38);
    background:rgba(239,68,68,.12);
    color:#fff;
}

/*========================================================
CONTENT HEADER
========================================================*/

.ffz-account__content-header{
    margin-bottom:22px;
}

.ffz-account__content-header h2{
    margin:0;
    color:#fff;
    font-size:26px;
    line-height:1.2;
}

.ffz-account__content-header p{
    margin:9px 0 0;
    color:var(--ffz-text-muted);
    line-height:1.7;
}

/*========================================================
QUICK STATS
========================================================*/

.ffz-account__quick-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
    margin-bottom:22px;
}

.ffz-account__quick-stat{
    padding:16px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:15px;
    background:rgba(255,255,255,.025);
}

.ffz-account__quick-stat span{
    display:block;
    margin-bottom:7px;
    color:var(--ffz-text-muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.ffz-account__quick-stat strong{
    color:#fff;
    font-size:24px;
    font-weight:900;
    font-variant-numeric:tabular-nums;
}

/*========================================================
FANTASY HUB
========================================================*/

.ffz-account__fantasy-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.ffz-account__feature-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:190px;
    padding:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.018)
        );
}

.ffz-account__feature-card--league{
    border-color:rgba(124,58,237,.22);
    background:
        linear-gradient(
            135deg,
            rgba(124,58,237,.12),
            rgba(255,255,255,.02)
        );
}

.ffz-account__feature-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-bottom:16px;
    border-radius:12px;
    background:rgba(124,58,237,.13);
    color:#c4b5fd;
    font-size:18px;
}

.ffz-account__feature-card h3{
    margin:0 0 7px;
    color:#fff;
    font-size:16px;
}

.ffz-account__feature-card p{
    margin:0;
    color:var(--ffz-text-muted);
    font-size:12px;
    line-height:1.65;
}

.ffz-account__feature-status{
    display:inline-flex;
    align-self:flex-start;
    margin-top:auto;
    padding:5px 9px;
    border-radius:999px;
    background:rgba(148,163,184,.10);
    color:var(--ffz-text-muted);
    font-size:8px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.ffz-account__feature-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    align-self:flex-start;
    margin-top:auto;
    color:#c4b5fd;
    font-size:11px;
    font-weight:800;
    text-decoration:none;
}

.ffz-account__feature-link:hover{
    color:#fff;
}

/*========================================================
STORE OVERVIEW
========================================================*/

.ffz-account__store-overview,
.ffz-account__store-disabled{
    margin-top:22px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.06);
}

.ffz-account__store-header h3{
    margin:0 0 14px;
    color:#fff;
    font-size:19px;
}

.ffz-account__store-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.ffz-account__store-card{
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:16px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    background:rgba(255,255,255,.02);
    text-decoration:none;
    transition:var(--ffz-transition-normal);
}

.ffz-account__store-card:hover{
    transform:translateY(-2px);
    border-color:rgba(124,58,237,.28);
    background:rgba(124,58,237,.06);
}

.ffz-account__store-card strong{
    color:#fff;
    font-size:13px;
}

.ffz-account__store-card span{
    color:var(--ffz-text-muted);
    font-size:11px;
    line-height:1.55;
}

.ffz-account__store-disabled{
    color:var(--ffz-text-muted);
}

.ffz-account__store-disabled strong{
    color:#fff;
}

.ffz-account__store-disabled p{
    margin:7px 0 0;
    line-height:1.7;
}

/*========================================================
WOOCOMMERCE INSIDE FFZ ACCOUNT
========================================================*/

.ffz-account__woocommerce{
    min-width:0;
    color:var(--ffz-text);
}

.ffz-account__woocommerce .woocommerce-MyAccount-navigation{
    display:none!important;
}

.ffz-account__woocommerce .woocommerce-MyAccount-content{
    float:none!important;
    width:100%!important;
}

.ffz-account__woocommerce a{
    color:#c4b5fd;
}

.ffz-account__woocommerce a:hover{
    color:#fff;
}

.ffz-account__woocommerce table,
.ffz-account__woocommerce .shop_table{
    width:100%;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.07)!important;
    border-collapse:separate!important;
    border-spacing:0!important;
    border-radius:14px;
    background:rgba(255,255,255,.02);
    color:var(--ffz-text);
}

.ffz-account__woocommerce th,
.ffz-account__woocommerce td{
    padding:13px 14px!important;
    border-color:rgba(255,255,255,.055)!important;
    color:var(--ffz-text)!important;
    font-size:12px;
}

.ffz-account__woocommerce th{
    color:#fff!important;
    font-weight:800;
}

.ffz-account__woocommerce input[type=text],
.ffz-account__woocommerce input[type=email],
.ffz-account__woocommerce input[type=tel],
.ffz-account__woocommerce input[type=password],
.ffz-account__woocommerce select,
.ffz-account__woocommerce textarea{
    width:100%;
    min-height:48px;
    padding:10px 13px;
    border:1px solid var(--ffz-border);
    border-radius:12px;
    outline:none;
    background:rgba(255,255,255,.04);
    color:#fff;
    font:inherit;
}

.ffz-account__woocommerce textarea{
    min-height:110px;
    resize:vertical;
}

.ffz-account__woocommerce input:focus,
.ffz-account__woocommerce select:focus,
.ffz-account__woocommerce textarea:focus{
    border-color:var(--ffz-primary);
    box-shadow:0 0 0 3px rgba(124,58,237,.14);
}

.ffz-account__woocommerce label{
    color:#fff;
    font-size:12px;
    font-weight:700;
}

.ffz-account__woocommerce fieldset{
    margin-top:20px;
    padding:18px;
    border:1px solid rgba(255,255,255,.07);
    border-radius:14px;
}

.ffz-account__woocommerce legend{
    padding:0 8px;
    color:#fff;
    font-weight:800;
}

.ffz-account__woocommerce .button,
.ffz-account__woocommerce button.button,
.ffz-account__woocommerce input.button{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 16px!important;
    border:0!important;
    border-radius:999px!important;
    background:var(--ffz-gradient-primary)!important;
    color:#fff!important;
    font-size:11px!important;
    font-weight:800!important;
    text-decoration:none!important;
    cursor:pointer;
}

.ffz-account__woocommerce .woocommerce-message,
.ffz-account__woocommerce .woocommerce-info,
.ffz-account__woocommerce .woocommerce-error{
    margin:0 0 18px!important;
    padding:14px 16px!important;
    border:1px solid rgba(124,58,237,.18)!important;
    border-radius:12px!important;
    background:rgba(124,58,237,.07)!important;
    color:var(--ffz-text)!important;
}

.ffz-account__woocommerce .woocommerce-error{
    border-color:rgba(239,68,68,.22)!important;
    background:rgba(239,68,68,.08)!important;
}

.ffz-account__woocommerce .woocommerce-Address{
    padding:18px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    background:rgba(255,255,255,.02);
}

.ffz-account__woocommerce address{
    color:var(--ffz-text-muted);
    line-height:1.7;
}

/*========================================================
TABLET
========================================================*/

@media(max-width:1024px){

    .ffz-account__layout{
        grid-template-columns:210px minmax(0,1fr);
        gap:18px;
    }

    .ffz-account__quick-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

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

@media(max-width:768px){

    .ffz-auth{
        padding:60px 0;
    }

    .ffz-auth__card{
        padding:26px 20px;
        border-radius:20px;
    }

    .ffz-auth__row{
        align-items:flex-start;
        flex-direction:column;
    }

    .ffz-account{
        padding-top:44px;
    }

    .ffz-account__hero{
        padding:20px;
        border-radius:20px;
    }

    .ffz-account__profile{
        align-items:flex-start;
        gap:15px;
    }

    .ffz-account__avatar{
        flex-basis:66px;
        width:66px;
        height:66px;
    }

    .ffz-account__profile-content h1{
        font-size:26px;
    }

    .ffz-account__profile-content p{
        font-size:12px;
    }

    .ffz-account__identity-grid{
        grid-template-columns:1fr;
    }

    .ffz-account__layout{
        grid-template-columns:1fr;
    }

    .ffz-account__sidebar{
        position:static;
        padding:10px;
        overflow-x:auto;
    }

    .ffz-account__nav{
        display:grid;
        grid-auto-flow:column;
        grid-auto-columns:max-content;
        gap:6px;
    }

    .ffz-account__nav-heading{
        display:none;
    }

    .ffz-account__nav-link{
        grid-template-columns:20px auto auto;
        min-height:40px;
        padding:8px 10px;
        white-space:nowrap;
    }

    .ffz-account__logout{
        margin:8px 0 0;
        padding:8px 0 0;
    }

    .ffz-account__logout-button{
        width:auto;
        min-width:110px;
    }

    .ffz-account__content{
        padding:20px 16px;
        border-radius:18px;
    }

    .ffz-account__quick-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:9px;
    }

    .ffz-account__fantasy-grid,
    .ffz-account__store-grid{
        grid-template-columns:1fr;
    }

    .ffz-account__feature-card{
        min-height:160px;
    }

    .ffz-account__woocommerce{
        overflow-x:auto;
    }

}

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

@media(max-width:480px){

    .ffz-account__profile{
        flex-direction:column;
    }

    .ffz-account__quick-stat{
        padding:13px;
    }

    .ffz-account__quick-stat strong{
        font-size:20px;
    }

}

/*========================================================
REDUCED MOTION
========================================================*/

@media(prefers-reduced-motion:reduce){

    .ffz-auth__form input,
    .ffz-account__nav-link,
    .ffz-account__store-card,
    .ffz-account__logout-button{
        transition:none;
    }

    .ffz-account__store-card:hover{
        transform:none;
    }

}

/*========================================================
4.10.2 ACCOUNT FANTASY FEATURES
========================================================*/

.ffz-account__feature-form{
    display:grid;
    gap:10px;
    margin-top:16px;
}

.ffz-account__feature-form select{
    width:100%;
    min-width:0;
    min-height:42px;
    padding:0 34px 0 12px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:11px;
    outline:none;
    background:#11182b;
    color:#fff;
    font:inherit;
    font-size:11px;
}

.ffz-account__feature-form select:focus{
    border-color:var(--ffz-primary);
    box-shadow:0 0 0 3px rgba(124,58,237,.13);
}

.ffz-account__feature-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:0 14px;
    border:0;
    border-radius:11px;
    background:var(--ffz-gradient-primary);
    color:#fff;
    font-size:10px;
    font-weight:850;
    cursor:pointer;
}

.ffz-account__comparison-form{
    grid-template-columns:1fr 1fr;
}

.ffz-account__comparison-form .ffz-account__feature-button{
    grid-column:1 / -1;
}

.ffz-account__saved-list{
    display:grid;
    gap:7px;
    margin-top:12px;
}

.ffz-account__saved-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:8px 10px;
    border:1px solid rgba(255,255,255,.055);
    border-radius:10px;
    background:rgba(255,255,255,.025);
}

.ffz-account__saved-item > span{
    min-width:0;
    overflow:hidden;
    color:var(--ffz-text-muted);
    font-size:9px;
    line-height:1.4;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.ffz-account__remove-button,
.ffz-account__text-button{
    border:0;
    background:transparent;
    color:#fca5a5;
    cursor:pointer;
}

.ffz-account__remove-button{
    width:26px;
    height:26px;
    padding:0;
    border-radius:8px;
    font-size:18px;
    line-height:1;
}

.ffz-account__remove-button:hover{
    background:rgba(239,68,68,.10);
}

.ffz-account__inline-action{
    margin-top:8px;
}

.ffz-account__text-button{
    padding:0;
    font-size:9px;
    font-weight:700;
}

@media(max-width:480px){
    .ffz-account__comparison-form{
        grid-template-columns:1fr;
    }

    .ffz-account__comparison-form .ffz-account__feature-button{
        grid-column:auto;
    }
}

/*========================================================
4.10.3 FANTASY ACCOUNT — SNAPSHOTS & WATCHLIST
========================================================*/

.ffz-account__feature-card--squads{
    grid-column:span 2;
}

.ffz-account__saved-squads,
.ffz-account__watchlist{
    display:flex;
    flex-direction:column;
    gap:9px;
    margin-top:14px;
}

.ffz-account__empty-note{
    margin:0;
    padding:12px 13px;
    border:1px dashed rgba(255,255,255,.08);
    border-radius:11px;
    color:var(--ffz-text-muted);
    font-size:11px;
    line-height:1.55;
}

.ffz-account__squad-snapshot{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.07);
    border-radius:13px;
    background:rgba(255,255,255,.025);
}

.ffz-account__squad-snapshot summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:13px 14px;
    list-style:none;
    cursor:pointer;
}

.ffz-account__squad-snapshot summary::-webkit-details-marker{
    display:none;
}

.ffz-account__squad-snapshot summary > span:first-child{
    display:flex;
    flex-direction:column;
    gap:3px;
    min-width:0;
}

.ffz-account__squad-snapshot summary strong{
    color:#fff;
    font-size:12px;
}

.ffz-account__squad-snapshot summary small{
    color:var(--ffz-text-muted);
    font-size:10px;
    line-height:1.4;
}

.ffz-account__snapshot-toggle{
    flex:0 0 auto;
    color:#c4b5fd;
    font-size:10px;
    font-weight:800;
}

.ffz-account__squad-snapshot[open] .ffz-account__snapshot-toggle{
    color:#fff;
}

.ffz-account__snapshot-body{
    padding:0 14px 14px;
    border-top:1px solid rgba(255,255,255,.055);
}

.ffz-account__snapshot-body h4{
    margin:14px 0 8px;
    color:#fff;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.05em;
}

.ffz-account__snapshot-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:7px;
}

.ffz-account__snapshot-grid--bench{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.ffz-account__snapshot-player{
    min-width:0;
    padding:9px;
    border:1px solid rgba(255,255,255,.055);
    border-radius:9px;
    background:rgba(255,255,255,.025);
}

.ffz-account__snapshot-player strong,
.ffz-account__snapshot-player span{
    display:block;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.ffz-account__snapshot-player strong{
    color:#fff;
    font-size:10px;
}

.ffz-account__snapshot-player span{
    margin-top:3px;
    color:var(--ffz-text-muted);
    font-size:8px;
}

.ffz-account__snapshot-delete{
    margin-top:12px;
}

.ffz-account__watchlist-player{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto auto;
    align-items:center;
    gap:10px;
    padding:10px 11px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:11px;
    background:rgba(255,255,255,.025);
}

.ffz-account__watchlist-player > div:first-child{
    min-width:0;
}

.ffz-account__watchlist-player strong,
.ffz-account__watchlist-player span{
    display:block;
}

.ffz-account__watchlist-player strong{
    overflow:hidden;
    color:#fff;
    font-size:11px;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.ffz-account__watchlist-player > div:first-child span{
    margin-top:2px;
    color:var(--ffz-text-muted);
    font-size:9px;
}

.ffz-account__watchlist-stats{
    display:flex;
    gap:5px;
}

.ffz-account__watchlist-stats span{
    padding:4px 6px;
    border-radius:999px;
    background:rgba(124,58,237,.10);
    color:#c4b5fd;
    font-size:8px;
    font-weight:750;
    white-space:nowrap;
}

.ffz-account__feature-link--secondary{
    margin-top:14px;
}

@media(max-width:768px){
    .ffz-account__feature-card--squads{
        grid-column:auto;
    }

    .ffz-account__snapshot-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ffz-account__snapshot-grid--bench{
        grid-template-columns:repeat(4,minmax(0,1fr));
    }

    .ffz-account__snapshot-player{
        padding:7px 6px;
    }

    .ffz-account__snapshot-player strong{
        font-size:9px;
    }

    .ffz-account__snapshot-player span{
        font-size:7px;
    }

    .ffz-account__watchlist-player{
        grid-template-columns:minmax(0,1fr) auto auto;
        gap:7px;
    }

    .ffz-account__watchlist-stats{
        flex-direction:column;
    }
}

@media(max-width:420px){
    .ffz-account__squad-snapshot summary{
        align-items:flex-start;
        padding:11px;
    }

    .ffz-account__snapshot-body{
        padding:0 10px 10px;
    }

    .ffz-account__snapshot-grid--bench{
        gap:4px;
    }

    .ffz-account__snapshot-player{
        padding:6px 4px;
    }

    .ffz-account__snapshot-player strong{
        font-size:8px;
    }

    .ffz-account__snapshot-player span{
        display:none;
    }
}

/*========================================================
4.10.5 SAVED SQUAD REMOVE ACTION
========================================================*/

.ffz-account__squad-snapshot-card{
    position:relative;
}

.ffz-account__snapshot-actions{
    position:absolute;
    top:10px;
    right:10px;
    z-index:4;
}

.ffz-account__snapshot-delete--top{
    margin:0;
}

.ffz-account__snapshot-remove{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    padding:0;
    border:1px solid rgba(239,68,68,.25);
    border-radius:9px;
    background:rgba(239,68,68,.08);
    color:#fca5a5;
    font-size:18px;
    font-weight:800;
    line-height:1;
    cursor:pointer;
    transition:
        background var(--ffz-transition-normal),
        border-color var(--ffz-transition-normal),
        color var(--ffz-transition-normal),
        transform var(--ffz-transition-normal);
}

.ffz-account__snapshot-remove:hover,
.ffz-account__snapshot-remove:focus-visible{
    background:rgba(239,68,68,.16);
    border-color:rgba(239,68,68,.45);
    color:#fff;
    outline:none;
}

.ffz-account__snapshot-remove:active{
    transform:scale(.96);
}

.ffz-account__squad-snapshot-card .ffz-account__squad-snapshot summary{
    padding-right:52px;
}

@media(max-width:768px){
    .ffz-account__snapshot-actions{
        top:8px;
        right:8px;
    }

    .ffz-account__snapshot-remove{
        width:28px;
        height:28px;
        border-radius:8px;
        font-size:17px;
    }

    .ffz-account__squad-snapshot-card .ffz-account__squad-snapshot summary{
        padding-right:46px;
    }
}

/*========================================================
ACCOUNT PROFILE PHOTO
========================================================*/

.ffz-account__avatar-tools{
    position:relative;
    flex:0 0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:9px;
}

.ffz-account__avatar-editor{
    position:relative;
    z-index:5;
    width:100%;
    text-align:center;
}

.ffz-account__avatar-editor > summary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:5px 10px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:999px;
    background:rgba(255,255,255,.045);
    color:#c4b5fd;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
    list-style:none;
}

.ffz-account__avatar-editor > summary::-webkit-details-marker{
    display:none;
}

.ffz-account__avatar-editor[open] > summary{
    background:rgba(124,58,237,.16);
    border-color:rgba(124,58,237,.35);
}

.ffz-account__avatar-form,
.ffz-account__avatar-remove-form{
    width:min(320px,80vw);
    margin:10px 0 0;
    padding:12px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    background:rgba(11,16,32,.98);
    box-shadow:0 18px 44px rgba(0,0,0,.35);
    text-align:left;
}

.ffz-account__avatar-form label{
    display:grid;
    gap:8px;
    color:var(--ffz-text-muted);
    font-size:11px;
    line-height:1.45;
}

.ffz-account__avatar-form input[type="file"]{
    width:100%;
    padding:8px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    background:rgba(255,255,255,.035);
    color:#fff;
    font-size:11px;
}

.ffz-account__avatar-form button,
.ffz-account__avatar-remove-form button{
    width:100%;
    min-height:36px;
    margin-top:10px;
    border:0;
    border-radius:10px;
    background:var(--ffz-gradient-primary);
    color:#fff;
    font:inherit;
    font-size:11px;
    font-weight:800;
    cursor:pointer;
}

.ffz-account__avatar-remove-form{
    margin-top:8px;
}

.ffz-account__avatar-remove-form button{
    margin-top:0;
    background:rgba(239,68,68,.12);
    color:#fca5a5;
    border:1px solid rgba(239,68,68,.2);
}

@media(max-width:768px){
    .ffz-account__avatar-form,
    .ffz-account__avatar-remove-form{
        width:min(280px,86vw);
    }
}
