.mq-mode-nav {
  width: min(1054px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mq-mode-link {
  display: grid;
  gap: 3px;
  min-height: 64px;
  box-sizing: border-box;
  padding: 12px 18px;
  border: 1px solid
    rgba(44, 36, 31, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  color: #28221e;
  text-decoration: none;
  box-shadow:
    0 8px 22px
    rgba(61, 48, 38, .06);
  transition:
    transform .15s ease,
    border-color .15s ease,
    box-shadow .15s ease;
}

.mq-mode-link:hover {
  transform: translateY(-1px);
  border-color:
    rgba(157, 43, 36, .35);
  box-shadow:
    0 10px 26px
    rgba(61, 48, 38, .10);
}

.mq-mode-link > span {
  color: #9d2b24;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.mq-mode-link > strong {
  font-size: .96rem;
  line-height: 1.25;
}

.mq-mode-link.is-current {
  background: #2b2622;
  border-color: #2b2622;
  color: #fff;
}

.mq-mode-link.is-current > span {
  color: #ef5b55;
}

.mq-mode-link-leagues {
  border-color:
    rgba(157, 43, 36, .30);
}

.mq-mode-link-leagues::after {
  content: "→";
  position: absolute;
}

.mq-mode-link-leagues {
  position: relative;
  padding-right: 46px;
}

.mq-mode-link-leagues::after {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #9d2b24;
  font-size: 1.25rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .mq-mode-nav {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .mq-mode-link {
    min-height: 56px;
    padding: 10px 15px;
  }

  .mq-mode-link-leagues {
    padding-right: 42px;
  }
}


/* ============================================================
   MQ HUB V1 — 2026-09-22
   Structură comună Meci Quiz / model proporții Prono
   ============================================================ */

.mq-hub-regulation {
    display: flex;
    justify-content: center;
    margin:
        -2px
        auto
        34px;
}

.mq-hub-regulation-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding:
        10px
        18px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    color: #111;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.mq-hub-regulation-link:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 17, 17, .28);
    background: #fff;
}


.mq-hub-section-heading {
    width: 100%;
    max-width: 1180px;
    margin:
        0
        auto
        20px;
    text-align: center;
}

.mq-hub-section-heading__title-row {
    display: grid;
    grid-template-columns:
        minmax(20px, 1fr)
        auto
        minmax(20px, 1fr);
    align-items: center;
    gap: 18px;
}

.mq-hub-section-heading__title-row::before,
.mq-hub-section-heading__title-row::after {
    content: "";
    height: 1px;
    background: rgba(17, 17, 17, .15);
}

.mq-hub-section-heading h2 {
    margin: 0;
    color: #111;
    font-size:
        clamp(
            1.42rem,
            2.5vw,
            1.9rem
        );
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.mq-hub-section-heading p {
    margin:
        9px
        auto
        0;
    color: rgba(17, 17, 17, .66);
    font-size: .92rem;
    line-height: 1.45;
}


/*
 * Cardul Meciului zilei rămâne același vizual,
 * doar îi reducem masa verticală pe hub.
 */

.match-quiz-page .mq-start {
    min-height: 0;
}

.match-quiz-page .mq-start-copy {
    padding:
        clamp(22px, 3vw, 34px)
        clamp(22px, 3.5vw, 42px);
}

.match-quiz-page .mq-start-copy > p {
    max-width: 590px;
}

.match-quiz-page .mq-start-facts {
    margin:
        18px
        0;
}

.match-quiz-page .mq-start-visual {
    min-height: 0;
}

.match-quiz-page .mq-start-image-frame,
.match-quiz-page .mq-start-image-frame img {
    max-height: 330px;
}


/* MINI-LIGI */

.mq-hub-leagues {
    width: 100%;
    max-width: 1180px;
    margin:
        54px
        auto
        0;
}

.mq-hub-mini-actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 760px;
    margin:
        0
        auto;
}

.mq-hub-mini-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 64px;

    padding:
        15px
        18px
        15px
        22px;

    border: 1px solid #b71414;
    border-radius: 14px;

    background: #c71919;
    color: #fff;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, .10);

    font-size: .94rem;
    font-weight: 900;
    line-height: 1.2;

    text-decoration: none;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.mq-hub-mini-action:hover {
    transform: translateY(-1px);
    background: #b91515;
    box-shadow:
        0 11px 24px
        rgba(0, 0, 0, .14);
}

.mq-hub-mini-action__icon {
    display: grid;
    place-items: center;

    flex:
        0
        0
        34px;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(255, 255, 255, .42);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .10);

    font-size: 1.15rem;
    font-weight: 800;
}


/* TABLETĂ / MOBIL */

@media (max-width: 760px) {

    .mq-hub-regulation {
        margin-bottom: 28px;
    }

    .mq-hub-section-heading {
        margin-bottom: 16px;
    }

    .mq-hub-section-heading__title-row {
        gap: 12px;
    }

    .mq-hub-section-heading p {
        font-size: .86rem;
    }

    .mq-hub-leagues {
        margin-top: 38px;
    }

    .mq-hub-mini-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mq-hub-mini-action {
        min-height: 58px;
        padding:
            12px
            14px
            12px
            17px;
    }

    .match-quiz-page .mq-start-copy {
        padding:
            19px
            16px
            21px;
    }
}


/* MQ RULES SIMPLE V1 */

.mq-rules-simple {
    width: min(100%, 760px);
    margin:
        0
        auto;
    padding:
        clamp(22px, 4vw, 38px);
    border:
        1px solid
        rgba(17, 17, 17, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    color: #111;
}

.mq-rules-simple h2 {
    margin:
        28px
        0
        8px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.mq-rules-simple h2:first-child {
    margin-top: 0;
}

.mq-rules-simple p {
    margin:
        0
        0
        12px;
    color: rgba(17, 17, 17, .72);
    line-height: 1.6;
}

.mq-rules-simple .mq-hub-regulation-link {
    margin-top: 18px;
}


/* ============================================================
   MQ HUB V1 — 2026-09-22
   Structură comună Meci Quiz / model proporții Prono
   ============================================================ */

.mq-hub-regulation {
    display: flex;
    justify-content: center;
    margin:
        -2px
        auto
        34px;
}

.mq-hub-regulation-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding:
        10px
        18px;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    color: #111;
    font-size: .88rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.mq-hub-regulation-link:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 17, 17, .28);
    background: #fff;
}


.mq-hub-section-heading {
    width: 100%;
    max-width: 1180px;
    margin:
        0
        auto
        20px;
    text-align: center;
}

.mq-hub-section-heading__title-row {
    display: grid;
    grid-template-columns:
        minmax(20px, 1fr)
        auto
        minmax(20px, 1fr);
    align-items: center;
    gap: 18px;
}

.mq-hub-section-heading__title-row::before,
.mq-hub-section-heading__title-row::after {
    content: "";
    height: 1px;
    background: rgba(17, 17, 17, .15);
}

.mq-hub-section-heading h2 {
    margin: 0;
    color: #111;
    font-size:
        clamp(
            1.42rem,
            2.5vw,
            1.9rem
        );
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.mq-hub-section-heading p {
    margin:
        9px
        auto
        0;
    color: rgba(17, 17, 17, .66);
    font-size: .92rem;
    line-height: 1.45;
}


/*
 * Cardul Meciului zilei rămâne același vizual,
 * doar îi reducem masa verticală pe hub.
 */

.match-quiz-page .mq-start {
    min-height: 0;
}

.match-quiz-page .mq-start-copy {
    padding:
        clamp(22px, 3vw, 34px)
        clamp(22px, 3.5vw, 42px);
}

.match-quiz-page .mq-start-copy > p {
    max-width: 590px;
}

.match-quiz-page .mq-start-facts {
    margin:
        18px
        0;
}

.match-quiz-page .mq-start-visual {
    min-height: 0;
}

.match-quiz-page .mq-start-image-frame,
.match-quiz-page .mq-start-image-frame img {
    max-height: 330px;
}


/* MINI-LIGI */

.mq-hub-leagues {
    width: 100%;
    max-width: 1180px;
    margin:
        54px
        auto
        0;
}

.mq-hub-mini-actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 760px;
    margin:
        0
        auto;
}

.mq-hub-mini-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    min-height: 64px;

    padding:
        15px
        18px
        15px
        22px;

    border: 1px solid #b71414;
    border-radius: 14px;

    background: #c71919;
    color: #fff;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, .10);

    font-size: .94rem;
    font-weight: 900;
    line-height: 1.2;

    text-decoration: none;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.mq-hub-mini-action:hover {
    transform: translateY(-1px);
    background: #b91515;
    box-shadow:
        0 11px 24px
        rgba(0, 0, 0, .14);
}

.mq-hub-mini-action__icon {
    display: grid;
    place-items: center;

    flex:
        0
        0
        34px;

    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(255, 255, 255, .42);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .10);

    font-size: 1.15rem;
    font-weight: 800;
}


/* TABLETĂ / MOBIL */

@media (max-width: 760px) {

    .mq-hub-regulation {
        margin-bottom: 28px;
    }

    .mq-hub-section-heading {
        margin-bottom: 16px;
    }

    .mq-hub-section-heading__title-row {
        gap: 12px;
    }

    .mq-hub-section-heading p {
        font-size: .86rem;
    }

    .mq-hub-leagues {
        margin-top: 38px;
    }

    .mq-hub-mini-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mq-hub-mini-action {
        min-height: 58px;
        padding:
            12px
            14px
            12px
            17px;
    }

    .match-quiz-page .mq-start-copy {
        padding:
            19px
            16px
            21px;
    }
}


/* MQ RULES SIMPLE V1 */

.mq-rules-simple {
    width: min(100%, 760px);
    margin:
        0
        auto;
    padding:
        clamp(22px, 4vw, 38px);
    border:
        1px solid
        rgba(17, 17, 17, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    color: #111;
}

.mq-rules-simple h2 {
    margin:
        28px
        0
        8px;
    font-size: 1.18rem;
    line-height: 1.2;
}

.mq-rules-simple h2:first-child {
    margin-top: 0;
}

.mq-rules-simple p {
    margin:
        0
        0
        12px;
    color: rgba(17, 17, 17, .72);
    line-height: 1.6;
}

.mq-rules-simple .mq-hub-regulation-link {
    margin-top: 18px;
}











/* ==========================================================
   MF-MQ-HUB-MY-LEAGUES-V3E
   ========================================================== */

.match-quiz-page
.mq-hub-leagues {
    display: block !important;

    width: 100%;
    min-width: 0;

    margin-top:
        clamp(
            44px,
            6vw,
            72px
        );

    margin-bottom:
        clamp(
            48px,
            6vw,
            76px
        );

    box-sizing: border-box;
}


/* ----------------------------------------------------------
   CELE DOUĂ ACȚIUNI
   ---------------------------------------------------------- */

.match-quiz-page
.mq-hub-mini-actions {
    display: grid !important;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 12px;

    width:
        min(
            760px,
            calc(100% - 32px)
        );

    margin:
        20px
        auto
        0 !important;
}


/* ----------------------------------------------------------
   MINI-LIGILE TALE
   ---------------------------------------------------------- */

.match-quiz-page
.mq-hub-my-section {
    display: block !important;

    width:
        min(
            1060px,
            calc(100% - 32px)
        );

    min-width: 0;

    margin:
        38px
        auto
        0 !important;

    padding: 0;

    box-sizing: border-box;

    clear: both;
}


.match-quiz-page
.mq-hub-subsection-heading {
    display: block;

    width: 100%;

    margin:
        0
        0
        13px;

    padding: 0;

    text-align: left;
}


.match-quiz-page
.mq-hub-subsection-heading h3 {
    margin: 0;

    color: #171413;

    font-size:
        1.08rem;

    font-weight:
        900;

    line-height:
        1.2;
}


.match-quiz-page
.mq-hub-my-leagues {
    display: block;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* ----------------------------------------------------------
   LOADING / EMPTY
   ---------------------------------------------------------- */

.match-quiz-page
.mq-hub-my-leagues__loading,
.match-quiz-page
.mq-hub-my-leagues__empty {
    width: 100%;

    box-sizing: border-box;

    padding:
        18px
        20px;

    border:
        1px solid
        #ded8cf;

    border-radius:
        14px;

    background:
        rgba(
            255,
            255,
            255,
            .78
        );

    color:
        #625b56;

    text-align:
        center;
}


/* ----------------------------------------------------------
   TABEL
   ---------------------------------------------------------- */

.match-quiz-page
.mq-hub-league-list {
    display: block;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    overflow: hidden;

    box-sizing: border-box;

    border:
        1px solid
        #ddd6cc;

    border-radius:
        16px;

    background:
        #ffffff;

    box-shadow:
        0
        8px
        24px
        rgba(
            40,
            45,
            42,
            .07
        );
}


.match-quiz-page
.mq-hub-league-list__head,
.match-quiz-page
.mq-hub-league-row {
    display: grid;

    grid-template-columns:
        minmax(180px, 1.6fr)
        90px
        100px
        90px
        90px
        minmax(180px, 1.35fr);

    align-items: center;

    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}


.match-quiz-page
.mq-hub-league-list__head {
    min-height: 48px;

    padding:
        0
        17px;

    color:
        #6d655f;

    background:
        #f5f2ed;

    border-bottom:
        1px solid
        #e1dbd2;

    font-size:
        .67rem;

    font-weight:
        900;

    letter-spacing:
        .055em;
}


.match-quiz-page
.mq-hub-league-row {
    position: relative;

    min-height: 68px;

    padding:
        0
        17px;

    border-bottom:
        1px solid
        #ece6dd;

    background:
        #ffffff;

    cursor: pointer;

    transition:
        background-color
        140ms ease;
}


.match-quiz-page
.mq-hub-league-row:last-child {
    border-bottom: 0;
}


.match-quiz-page
.mq-hub-league-row::before {
    content: "";

    position: absolute;

    top: 10px;
    bottom: 10px;
    left: 0;

    width: 4px;

    border-radius:
        0
        4px
        4px
        0;

    background:
        var(
            --mq-red,
            #c62b2f
        );
}


.match-quiz-page
.mq-hub-league-row:hover,
.match-quiz-page
.mq-hub-league-row:focus-visible {
    background:
        #fbf5f3;
}


.match-quiz-page
.mq-hub-league-row:focus-visible {
    outline:
        2px solid
        var(
            --mq-red,
            #c62b2f
        );

    outline-offset:
        -2px;
}


.match-quiz-page
.mq-hub-league-cell {
    min-width: 0;

    padding:
        13px
        8px;

    box-sizing: border-box;

    color:
        #26211f;

    font-size:
        .84rem;

    font-weight:
        720;
}


.match-quiz-page
.mq-hub-league-cell--name a {
    color:
        #171413;

    font-size:
        .94rem;

    font-weight:
        900;

    text-decoration:
        none;
}


.match-quiz-page
.mq-hub-league-cell--name a:hover {
    color:
        var(
            --mq-red,
            #c62b2f
        );
}


/* Tip public / privat */

.match-quiz-page
.mq-hub-league-badge {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        25px;

    padding:
        4px
        9px;

    border:
        1px solid
        #ddd6cd;

    border-radius:
        999px;

    background:
        #f8f5f0;

    color:
        #332e2b;

    font-size:
        .66rem;

    font-weight:
        900;

    white-space:
        nowrap;
}


.match-quiz-page
.mq-hub-league-badge.is-public {
    border-color:
        rgba(
            198,
            43,
            47,
            .20
        );

    background:
        rgba(
            198,
            43,
            47,
            .07
        );

    color:
        #a51f24;
}


/* Status */

.match-quiz-page
.mq-hub-league-status {
    display:
        inline-flex;

    align-items:
        center;

    min-height:
        30px;

    color:
        #514a46;

    font-size:
        .79rem;

    font-weight:
        850;

    text-decoration:
        none;
}


.match-quiz-page
.mq-hub-league-status.is-action {
    padding:
        6px
        11px;

    border:
        1px solid
        rgba(
            198,
            43,
            47,
            .20
        );

    border-radius:
        999px;

    background:
        rgba(
            198,
            43,
            47,
            .07
        );

    color:
        #a51f24;
}


/* Arată toate */

.match-quiz-page
.mq-hub-my-leagues__toggle {
    display: flex;

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

    gap: 7px;

    width: 100%;

    min-height: 44px;

    margin-top: 10px;

    border:
        1px solid
        #ddd6cc;

    border-radius:
        12px;

    background:
        rgba(
            255,
            255,
            255,
            .75
        );

    color:
        #282321;

    font: inherit;

    font-size:
        .82rem;

    font-weight:
        850;

    cursor: pointer;
}


/* ----------------------------------------------------------
   TABLETĂ / MOBIL
   ---------------------------------------------------------- */

@media (max-width: 900px) {

    .match-quiz-page
    .mq-hub-league-list {
        overflow: visible;

        border: 0;

        border-radius: 0;

        background:
            transparent;

        box-shadow:
            none;
    }


    .match-quiz-page
    .mq-hub-league-list__head {
        display: none;
    }


    .match-quiz-page
    .mq-hub-league-list__body {
        display: block;
    }


    .match-quiz-page
    .mq-hub-league-row {
        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        grid-template-areas:
            "name name"
            "type format"
            "stage position"
            "status status";

        gap:
            12px
            16px;

        min-height: 0;

        margin-bottom: 10px;

        padding:
            15px
            15px
            16px
            19px;

        border:
            1px solid
            #e1dad0;

        border-radius:
            14px;

        background:
            #ffffff;

        box-shadow:
            0
            4px
            12px
            rgba(
                40,
                45,
                42,
                .05
            );
    }


    .match-quiz-page
    .mq-hub-league-cell {
        padding: 0;
    }


    .match-quiz-page
    .mq-hub-league-cell::before {
        content:
            attr(
                data-label
            );

        display: block;

        margin-bottom:
            4px;

        color:
            #8a817b;

        font-size:
            .61rem;

        font-weight:
            900;

        letter-spacing:
            .05em;

        text-transform:
            uppercase;
    }


    .match-quiz-page
    .mq-hub-league-cell--name {
        grid-area: name;
    }


    .match-quiz-page
    .mq-hub-league-cell--name::before {
        display: none;
    }


    .match-quiz-page
    .mq-hub-league-cell:nth-child(2) {
        grid-area: type;
    }


    .match-quiz-page
    .mq-hub-league-cell:nth-child(3) {
        grid-area: format;
    }


    .match-quiz-page
    .mq-hub-league-cell:nth-child(4) {
        grid-area: stage;
    }


    .match-quiz-page
    .mq-hub-league-cell:nth-child(5) {
        grid-area: position;
    }


    .match-quiz-page
    .mq-hub-league-cell--status {
        grid-area: status;

        padding-top:
            10px;

        border-top:
            1px solid
            #eee7df;
    }
}


@media (max-width: 700px) {

    .match-quiz-page
    .mq-hub-mini-actions {
        grid-template-columns:
            1fr;
    }


    .match-quiz-page
    .mq-hub-my-section {
        margin-top:
            30px !important;
    }
}

/* MF-MQ-HUB-MY-LEAGUES-V3E-END */

/* MF-MQ-HUB-17A-V3-20260924:START */

/* Regulament — copiat din regulile efective Prono */
.mq-hub-regulation-link {
display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 19px;
    border: 1px solid #b6d8c5;
    border-radius: 999px;
    background: #edf8f1;
    box-shadow: 0 8px 22px rgba(18, 91, 52, 0.08);
    color: #14633b;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
border: 1px solid rgba(30, 107, 58, 0.34) !important;
    color: #1e6b3a !important;
    background: #dcc7a1 !important;
    box-shadow: 0 8px 18px rgba(45, 42, 46, 0.10) !important;
min-height: 44px !important;
    padding: 0 18px !important;
    border: 1px solid #2d2a2e !important;
    border-radius: 15px !important;
    color: #b31b34 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

.mq-hub-regulation-link:hover {
border-color: #91c7a8;
    background: #e1f3e8;
    box-shadow: 0 10px 26px rgba(18, 91, 52, 0.13);
    color: #0f5632;
    transform: translateY(-1px);
border-color: #1e6b3a !important;
    color: #1e6b3a !important;
    background: #fbf7ef !important;
    box-shadow: 0 10px 22px rgba(45, 42, 46, 0.13) !important;
border-color: #2d2a2e !important;
    color: #b31b34 !important;
    background: #fbf7ef !important;
    box-shadow: none !important;
}

.mq-hub-regulation-link:focus-visible {
outline: 3px solid rgba(20, 99, 59, 0.22);
    outline-offset: 3px;
border-color: #1e6b3a !important;
    color: #1e6b3a !important;
    background: #fbf7ef !important;
    box-shadow: 0 10px 22px rgba(45, 42, 46, 0.13) !important;
border-color: #2d2a2e !important;
    color: #b31b34 !important;
    background: #fbf7ef !important;
    box-shadow: none !important;
}

@media (max-width: 680px) {
    .mq-hub-regulation-link {
        width: min(100%, 320px);
    }
}


/* Hero/header NU sunt modificate. */
.mq-hub-regulation {
    margin-bottom: 0 !important;
}


/* Mini-ligi devine secțiunea principală */
.mq-hub-leagues {
    margin-top: 60px !important;
    margin-bottom: 58px !important;
}


/* Daily compact — doar în starea de landing */
body:not(.mq-gameplay-active)
.match-quiz-page
.match-quiz-app {
    width: min(100%, 940px);
    margin-left: auto;
    margin-right: auto;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start {
    min-height: 0 !important;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(180px, .45fr) !important;

    gap: 22px !important;

    padding:
        22px
        26px !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-copy h2 {
    margin-top: 6px !important;
    margin-bottom: 9px !important;

    font-size:
        clamp(1.65rem, 3vw, 2.25rem)
        !important;

    line-height: 1.05 !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-copy > p {
    max-width: 620px;

    margin-top: 0 !important;
    margin-bottom: 12px !important;

    font-size: .94rem !important;
    line-height: 1.45 !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-facts {
    gap: 8px !important;
    margin-top: 3px !important;
    margin-bottom: 13px !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-facts > div {
    min-height: 0 !important;
    padding: 7px 9px !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-facts strong {
    font-size: 1rem !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-facts span {
    font-size: .66rem !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-button {
    min-height: 44px !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-copy small {
    margin-top: 9px !important;
    line-height: 1.4 !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-visual {
    min-height: 0 !important;
    align-self: center;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-image-frame {
    width: min(100%, 210px) !important;
    max-width: 210px !important;
    max-height: 210px !important;
    margin-left: auto !important;
}

body:not(.mq-gameplay-active)
.match-quiz-page
.mq-start-image-frame img {
    width: 100% !important;
    height: auto !important;

    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* La pornirea jocului ascundem hub-ul */
body.mq-gameplay-active .mq-hub-regulation,
body.mq-gameplay-active .mq-hub-leagues,
body.mq-gameplay-active .mq-hub-section-heading {
    display: none !important;
}


/* Mobil */
@media (max-width: 680px) {

    .mq-hub-leagues {
        margin-top: 42px !important;
        margin-bottom: 44px !important;
    }

    body:not(.mq-gameplay-active)
    .match-quiz-page
    .match-quiz-app {
        width: 100%;
    }

    body:not(.mq-gameplay-active)
    .match-quiz-page
    .mq-start {
        grid-template-columns: 1fr !important;
        gap: 16px !important;

        padding:
            19px
            17px !important;
    }

    body:not(.mq-gameplay-active)
    .match-quiz-page
    .mq-start-visual {
        display: none !important;
    }

    body:not(.mq-gameplay-active)
    .match-quiz-page
    .mq-start-copy h2 {
        font-size:
            clamp(1.5rem, 8vw, 1.95rem)
            !important;
    }

    body:not(.mq-gameplay-active)
    .match-quiz-page
    .mq-start-facts {
        gap: 6px !important;
    }
}

/* MF-MQ-HUB-17A-V3-20260924:END */

