.fule-daily [hidden],
.fule-daily-quiz[hidden],
.fule-daily-result[hidden],
.fule-daily-play[hidden],
.fule-daily-review[hidden],
.fule-daily-gate[hidden],
.fule-daily-picker[hidden] {
    display: none !important;
}
.fule-daily {
    --fule-main: #ff5722;
    --fule-main-dark: #e64a19;
    --fule-bg: #fff;
    --fule-muted: #757575;
    --fule-line: #eeeeee;
    --fule-ok: #2e7d32;
    --fule-bad: #c62828;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0.4em auto 1.2em;
    padding: 0;
    overflow-x: clip;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    box-sizing: border-box;
    container-type: inline-size;
    container-name: fule-daily;
}
.fule-daily *,
.fule-daily *::before,
.fule-daily *::after {
    box-sizing: border-box;
}
.fule-daily-loading {
    text-align: center;
    color: var(--fule-muted);
    padding: 2.4em 1em;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.fule-daily-loading::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 2px solid #ffe0d4;
    border-top-color: var(--fule-main);
    animation: fule-daily-spin 0.7s linear infinite;
}
@keyframes fule-daily-shimmer {
    0% { opacity: 0.55; }
    50% { opacity: 1; }
    100% { opacity: 0.55; }
}
.fule-daily-loading::before {
    display: none;
}
.fule-daily-skeleton {
    display: block;
    width: 100%;
    height: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f5f5f5 0%, #f9f9f9 45%, #f1f1f1 100%);
    animation: fule-daily-shimmer 1.3s ease-in-out infinite;
}
.fule-daily-skeleton.is-title {
    width: 45%;
    height: 26px;
}
.fule-daily-skeleton.is-short {
    width: 68%;
}
.fule-daily-loading-text {
    display: block;
    color: var(--fule-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
}
@keyframes fule-daily-spin {
    to { transform: rotate(360deg); }
}
.fule-daily-picker {
    width: 100%;
}
.fule-daily-picker-card {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ffd7c8;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff8f4 0%, #fff 42%);
    box-shadow: 0 10px 28px rgba(255, 87, 34, 0.07);
    padding: 22px 22px 20px;
    overflow: hidden;
}
.fule-daily-picker-card::before,
.fule-daily-gate-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #ffab91 0%, #ff5722 52%, #ff7043 100%);
    pointer-events: none;
}
.fule-daily-picker-card::after {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.07) 0%, transparent 68%);
    pointer-events: none;
}
.fule-daily-picker-hero {
    text-align: center;
    margin: 0 0 18px;
    padding: 4px 8px 0;
}
.fule-daily-picker-badge,
.fule-daily-gate-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 87, 34, 0.1);
    color: var(--fule-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
.fule-daily-picker-title,
.fule-daily-gate-title {
    margin: 0 0 6px;
    padding: 0;
    border: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
}
.fule-daily-picker-sub,
.fule-daily-gate-track {
    margin: 0;
    font-size: 13px;
    color: var(--fule-muted);
    letter-spacing: 0.02em;
}
.fule-daily-track-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
    padding: 4px;
    border-radius: 12px;
    background: #f4f5f7;
}
.fule-daily button.fule-daily-track-tab {
    appearance: none;
    flex: 1 1 auto;
    min-width: 96px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #555;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.fule-daily button.fule-daily-track-tab:hover {
    color: var(--fule-main);
    background: transparent;
}
.fule-daily button.fule-daily-track-tab.is-active {
    background: #fff;
    color: var(--fule-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.fule-daily-picker-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 0 16px;
}
.fule-daily-picker-strip.is-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fule-daily .fule-daily-picker-strip-item,
.fule-daily .fule-daily-gate-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 84px;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}
.fule-daily-picker-strip-item::before,
.fule-daily-gate-cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffe0d4;
}
.fule-daily-picker-strip-item.is-date::before,
.fule-daily-gate-cell.is-date::before {
    background: #ffccbc;
}
.fule-daily-picker-strip-item.is-count::before {
    background: #ffe0b2;
}
.fule-daily-picker-strip-item.is-track::before {
    background: linear-gradient(90deg, #ff8a65, #ff5722);
}
.fule-daily-picker-strip-item.is-upcoming::before,
.fule-daily-gate-cell.is-exam.is-upcoming::before {
    background: linear-gradient(90deg, #ff8a65, #ff5722);
}
.fule-daily-picker-strip-item.is-today::before,
.fule-daily-gate-cell.is-exam.is-today::before {
    background: #d84315;
}
.fule-daily-picker-strip-item.is-passed::before,
.fule-daily-gate-cell.is-exam.is-passed::before {
    background: #b0bec5;
}
.fule-daily-gate-cell.is-bank::before {
    background: #ffccbc;
}
.fule-daily-picker-strip-label,
.fule-daily-gate-label {
    font-size: 12px;
    color: var(--fule-muted);
}
.fule-daily .fule-daily-picker-strip-value,
.fule-daily .fule-daily-gate-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    word-break: break-word;
}
.fule-daily .fule-daily-picker-strip-item.is-upcoming .fule-daily-picker-strip-value,
.fule-daily .fule-daily-gate-cell.is-upcoming .fule-daily-gate-value {
    color: var(--fule-main);
}
.fule-daily .fule-daily-picker-strip-item.is-today .fule-daily-picker-strip-value,
.fule-daily .fule-daily-gate-cell.is-today .fule-daily-gate-value {
    color: #d84315;
}
.fule-daily .fule-daily-picker-strip-item.is-passed .fule-daily-picker-strip-value,
.fule-daily .fule-daily-gate-cell.is-passed .fule-daily-gate-value {
    color: #78909c;
}
.fule-daily-subject-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}
.fule-daily button.fule-daily-subject-card {
    appearance: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 14px 14px 14px 12px;
    text-align: left;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 14px;
    background: #fff;
    background-color: #fff;
    color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.article-content .fule-daily button.fule-daily-subject-card,
.pagecontent .fule-daily button.fule-daily-subject-card,
.content .fule-daily button.fule-daily-subject-card {
    background: #fff;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.fule-daily button.fule-daily-subject-card:hover {
    border-color: #ffc2ab;
    background: #fff;
    color: #222;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.1);
    transform: translateY(-1px);
}
.fule-daily button.fule-daily-subject-card:active {
    transform: translateY(0);
}
.fule-daily button.fule-daily-subject-card:focus-visible {
    outline: 2px solid #ffccbc;
    outline-offset: 2px;
}
.fule-daily-subject-card-index {
    flex: 0 0 auto;
    width: 28px;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #bdbdbd;
    letter-spacing: -0.02em;
    text-align: center;
    transition: color 0.15s ease;
}
.fule-daily button.fule-daily-subject-card:hover .fule-daily-subject-card-index {
    color: var(--fule-main);
}
.fule-daily-subject-card-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ff8a65 0%, #ff5722 100%);
    box-shadow: 0 6px 14px rgba(255, 87, 34, 0.22);
    position: relative;
}
.fule-daily-subject-card-icon::before,
.fule-daily-subject-card-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 2px;
}
.fule-daily-subject-card-icon::before {
    top: 12px;
    width: 16px;
    height: 2px;
    box-shadow: 0 5px 0 rgba(255, 255, 255, 0.92), 0 10px 0 rgba(255, 255, 255, 0.92);
}
.fule-daily-subject-card-icon::after {
    display: none;
}
.fule-daily-subject-card-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.fule-daily-subject-card-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
}
.fule-daily-subject-card-meta {
    font-size: 12px;
    color: var(--fule-muted);
}
.fule-daily-subject-card-go {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff3ee;
    color: var(--fule-main);
    font-size: 13px;
    font-weight: 600;
}
.fule-daily-subject-card-go::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 1px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}
.fule-daily-picker-empty {
    margin: 0;
    padding: 18px 12px;
    text-align: center;
    color: var(--fule-muted);
    font-size: 14px;
    background: #fafafa;
    border-radius: 12px;
}
.fule-daily-track-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}
.fule-daily-chip {
    appearance: none;
    border: 1px solid var(--fule-line);
    background: #fff;
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}
.fule-daily-chip:hover,
.fule-daily-chip.is-active {
    border-color: var(--fule-main);
    color: var(--fule-main);
    background: #fff3ee;
}
.fule-daily-chip small {
    display: block;
    color: var(--fule-muted);
    font-size: 12px;
}
.fule-daily-quiz {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--fule-line);
    border-radius: 10px;
    background: #fff;
    color: #222;
    padding: 20px 20px 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    font-size: 17px;
}
.fule-daily-result {
    margin: 0 0 18px;
    padding: 18px 18px 16px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff7f3 0%, #fff 72%);
    border: 1px solid #ffd7c8;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.06);
}
.fule-daily-result-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}
.fule-daily-score-ring {
    --fule-score: 0;
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #fff 0 58%, transparent 59%),
        conic-gradient(var(--fule-main) calc(var(--fule-score) * 1%), #ffe8de 0);
    box-shadow: inset 0 0 0 1px rgba(255, 87, 34, 0.08);
}
.fule-daily-score-ring.is-excellent {
    background:
        radial-gradient(circle at center, #fff 0 58%, transparent 59%),
        conic-gradient(#2e7d32 calc(var(--fule-score) * 1%), #e8f5e9 0);
}
.fule-daily-score-ring.is-good {
    background:
        radial-gradient(circle at center, #fff 0 58%, transparent 59%),
        conic-gradient(#ef6c00 calc(var(--fule-score) * 1%), #fff3e0 0);
}
.fule-daily-score-ring.is-pass {
    background:
        radial-gradient(circle at center, #fff 0 58%, transparent 59%),
        conic-gradient(var(--fule-main) calc(var(--fule-score) * 1%), #ffe8de 0);
}
.fule-daily-score-ring.is-weak {
    background:
        radial-gradient(circle at center, #fff 0 58%, transparent 59%),
        conic-gradient(#c62828 calc(var(--fule-score) * 1%), #ffebee 0);
}
.fule-daily-score-num {
    font-size: 24px;
    font-weight: 750;
    color: #1a1a1a;
    line-height: 1.1;
}
.fule-daily-score-grade {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 650;
    color: var(--fule-main);
}
.fule-daily-score-ring.is-excellent .fule-daily-score-grade {
    color: #2e7d32;
}
.fule-daily-score-ring.is-good .fule-daily-score-grade {
    color: #ef6c00;
}
.fule-daily-score-ring.is-weak .fule-daily-score-grade {
    color: #c62828;
}
.fule-daily-result-summary {
    min-width: 0;
    flex: 1;
}
.fule-daily-result-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.35;
}
.fule-daily-score-meta {
    color: var(--fule-muted);
    font-size: 13px;
    line-height: 1.55;
    word-break: break-word;
}
.fule-daily-meta-dot {
    display: inline-block;
    margin: 0 6px;
    color: #cfcfcf;
}
.fule-daily-result-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 12px;
}
.fule-daily-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 72px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #f0f0f0;
}
.fule-daily-stat.is-ok {
    background: #f3faf4;
    border-color: #d7ecd9;
}
.fule-daily-stat.is-bad {
    background: #fff6f6;
    border-color: #f3d2d2;
}
.fule-daily-stat-label {
    font-size: 12px;
    color: var(--fule-muted);
}
.fule-daily-stat-value {
    font-size: 22px;
    font-weight: 750;
    color: #1a1a1a;
    line-height: 1.15;
}
.fule-daily-stat.is-ok .fule-daily-stat-value {
    color: var(--fule-ok);
}
.fule-daily-stat.is-bad .fule-daily-stat-value {
    color: var(--fule-bad);
}
.fule-daily-stat-unit {
    font-size: 12px;
    color: var(--fule-muted);
}
.fule-daily-result-hint {
    margin: 0;
    color: var(--fule-muted);
    font-size: 13px;
    line-height: 1.55;
}
@container fule-daily (max-width: 560px) {
    .fule-daily-result-top {
        gap: 12px;
    }
    .fule-daily-score-ring {
        width: 78px;
        height: 78px;
    }
    .fule-daily-score-num {
        font-size: 20px;
    }
    .fule-daily-result-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .fule-daily-result-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.fule-daily-progress-wrap {
    margin-bottom: 16px;
}
.fule-daily-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--fule-muted);
}
.fule-daily-qtype {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 5px 13px 5px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: 0.05em;
    line-height: 1.35;
    color: #e64a19;
    background: linear-gradient(135deg, #fff8f4 0%, #ffede4 100%);
    border: 1px solid rgba(255, 87, 34, 0.22);
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.1);
}
.fule-daily-qtype::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fule-main);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.14);
}
.fule-daily-qtype.is-single {
    color: #e64a19;
    background: linear-gradient(135deg, #fff8f4 0%, #ffede4 100%);
    border-color: rgba(255, 87, 34, 0.22);
}
.fule-daily-qtype.is-single::before {
    background: #ff5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.14);
}
.fule-daily-qtype.is-multi,
.fule-daily-qtype.is-indefinite {
    color: #1565c0;
    background: linear-gradient(135deg, #f3f8ff 0%, #e8f1fd 100%);
    border-color: rgba(21, 101, 192, 0.2);
    box-shadow: 0 2px 10px rgba(21, 101, 192, 0.08);
}
.fule-daily-qtype.is-multi::before,
.fule-daily-qtype.is-indefinite::before {
    background: #1976d2;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.14);
}
.fule-daily-qtype.is-judge {
    color: #6a1b9a;
    background: linear-gradient(135deg, #faf4ff 0%, #f1e6fb 100%);
    border-color: rgba(106, 27, 154, 0.2);
    box-shadow: 0 2px 10px rgba(106, 27, 154, 0.08);
}
.fule-daily-qtype.is-judge::before {
    background: #8e24aa;
    box-shadow: 0 0 0 3px rgba(142, 36, 170, 0.14);
}
.fule-daily-qtype.is-short_answer {
    color: #546e7a;
    background: linear-gradient(135deg, #f6f8f9 0%, #eceff1 100%);
    border-color: rgba(84, 110, 122, 0.22);
    box-shadow: 0 2px 10px rgba(84, 110, 122, 0.08);
}
.fule-daily-qtype.is-short_answer::before {
    background: #78909c;
    box-shadow: 0 0 0 3px rgba(120, 144, 156, 0.14);
}
.fule-daily-qtype.is-result {
    color: #2e7d32;
    background: linear-gradient(135deg, #f3faf4 0%, #e8f5e9 100%);
    border-color: rgba(46, 125, 50, 0.22);
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.08);
}
.fule-daily-qtype.is-result::before {
    background: #43a047;
    box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.14);
}
.fule-daily-review-head .fule-daily-qtype {
    margin-right: 4px;
}
.fule-daily-progress-text {
    margin-left: auto;
}
.fule-daily-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 99px;
    overflow: hidden;
}
.fule-daily-bar-fill {
    height: 100%;
    width: 0;
    background: var(--fule-main);
    border-radius: 99px;
    transition: width 0.2s ease;
}
.fule-daily-stem {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #fff6f0;
    border: 1px solid #ffe0d4;
    border-radius: 8px;
    color: #222;
    white-space: pre-wrap;
    word-break: break-word;
}
.fule-daily-opt {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid var(--fule-line);
    background: #fafafa;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0 0 8px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.65;
    color: #222;
    word-break: break-word;
}
.fule-daily-opt:hover {
    border-color: #ffab91;
}
.fule-daily-opt.is-selected {
    border-color: var(--fule-main);
    background: #fff3ee;
}
.fule-daily-opt.is-correct {
    border-color: var(--fule-ok);
    background: #e8f5e9;
}
.fule-daily-opt.is-wrong {
    border-color: var(--fule-bad);
    background: #ffebee;
}
.fule-daily-opt input {
    margin-right: 8px;
}
.fule-daily-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--fule-line);
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    line-height: 1.65;
    font-family: inherit;
}
.fule-daily-textarea:focus,
.fule-daily-opt:focus {
    outline: 2px solid #ffccbc;
    outline-offset: 1px;
}
.fule-daily-feedback {
    margin: 12px 0;
    padding: 14px 15px;
    border-radius: 8px;
    background: #f7f7f7;
    font-size: 15px;
    line-height: 1.75;
}
.fule-daily-feedback .ok {
    color: var(--fule-ok);
    font-weight: 600;
}
.fule-daily-feedback .bad {
    color: var(--fule-bad);
    font-weight: 600;
}
.fule-daily-feedback .muted {
    color: var(--fule-muted);
}
.fule-daily-analysis {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-wrap;
}
.fule-daily-options {
    margin-bottom: 4px;
}
.fule-daily-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--fule-line);
}
.fule-daily-btn {
    appearance: none;
    flex: 1;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 16px;
}
.fule-daily-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.fule-daily-btn-primary,
.fule-daily-submit {
    background: var(--fule-main);
    border-color: var(--fule-main);
    color: #fff;
}
.fule-daily-btn-primary:hover,
.fule-daily-submit:hover {
    background: var(--fule-main-dark);
}
.fule-daily-empty {
    text-align: center;
    padding: 2em 1em;
    color: var(--fule-muted);
}
.fule-daily-back {
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--fule-main);
    cursor: pointer;
    font-size: 14px;
}
.fule-daily-review-item {
    margin: 0 0 18px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--fule-line);
}
.fule-daily-review-item:last-of-type {
    border-bottom: 0;
}
.fule-daily-review-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--fule-muted);
}
.fule-daily-review-head .fule-daily-progress-text {
    margin-left: 0;
}
.fule-daily-mark {
    margin-left: auto;
    font-weight: 600;
    font-size: 14px;
}
.fule-daily-mark.ok {
    color: var(--fule-ok);
}
.fule-daily-mark.bad {
    color: var(--fule-bad);
}
.fule-daily-mark.muted {
    color: var(--fule-muted);
    font-weight: 500;
}
.fule-daily-review .fule-daily-feedback {
    display: block;
}
.fule-daily h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    line-height: 1.4;
}
.fule-daily-picker-title.fule-daily-picker-title,
.fule-daily-gate-title.fule-daily-gate-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
}
.fule-daily p {
    margin: 0;
}
.fule-daily button {
    font-family: inherit;
    box-shadow: none;
}
.fule-daily-gate {
    width: 100%;
    max-width: 100%;
    margin: 0;
}
.fule-daily-gate-card {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 100%;
    border: 1px solid #ffd7c8;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff8f4 0%, #fff 38%);
    padding: 22px 22px 20px;
    box-shadow: 0 10px 28px rgba(255, 87, 34, 0.07);
    overflow: hidden;
}
.fule-daily-gate-card::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.fule-daily-gate-hero {
    text-align: center;
    margin: 0 0 18px;
    padding: 2px 4px 0;
}
.fule-daily-gate-title {
    font-size: 26px;
}
.fule-daily-gate-track-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f4f5f7;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}
.fule-daily-entry-footnote {
    margin: 14px 0 0;
    padding: 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.65;
    color: var(--fule-muted);
    letter-spacing: 0.02em;
}
.fule-daily-gate .fule-daily-entry-footnote {
    margin: 0 0 16px;
}
.fule-daily-picker .fule-daily-entry-footnote {
    margin: 16px 0 0;
}
.fule-daily-gate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}
.fule-daily-gate-cell {
    min-height: 84px;
    padding: 14px 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
}
.fule-daily-gate-intro {
    margin: 0 0 20px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    text-align: center;
    background: #fff;
    border: 1px solid #f3f3f3;
    border-radius: 12px;
}
.fule-daily-gate-intro p {
    margin: 0 0 8px;
}
.fule-daily-gate-intro p:last-child {
    margin-bottom: 0;
}
.fule-daily-gate-intro img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    border-radius: 10px;
}
.fule-daily-gate-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.fule-daily .fule-daily-gate-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;
    width: min(100%, 280px);
    margin: 0;
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #fff;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff7043 0%, #ff5722 100%);
    box-shadow: 0 10px 22px rgba(255, 87, 34, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.fule-daily .fule-daily-gate-enter::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 1px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.fule-daily .fule-daily-gate-enter:hover {
    background: linear-gradient(180deg, #ff5722 0%, #e64a19 100%);
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(255, 87, 34, 0.36);
}
.fule-daily .fule-daily-gate-enter:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(255, 87, 34, 0.24);
}
.fule-daily .fule-daily-gate-enter:focus-visible {
    outline: 2px solid #ffccbc;
    outline-offset: 3px;
}
.fule-daily-gate .fule-daily-back {
    display: block;
    width: auto;
    margin: 2px 0 0;
    padding: 6px 8px;
}
.article-content .fule-daily,
.pagecontent .fule-daily {
    max-width: 100%;
}
.article-content .fule-daily p,
.pagecontent .fule-daily p {
    text-indent: 0;
}
.fule-daily img,
.fule-daily video,
.fule-daily table {
    max-width: 100%;
    height: auto;
}
.fule-daily-btn {
    min-width: 0;
}
@container fule-daily (max-width: 560px) {
    .fule-daily-picker-strip,
    .fule-daily-picker-strip.is-three,
    .fule-daily-gate-grid {
        grid-template-columns: 1fr;
    }
    .fule-daily-quiz,
    .fule-daily-picker-card,
    .fule-daily-gate-card {
        padding: 16px 14px 16px;
    }
    .fule-daily-picker-title.fule-daily-picker-title,
    .fule-daily-gate-title.fule-daily-gate-title {
        font-size: 22px;
    }
    .fule-daily-subject-card {
        padding: 12px;
    }
    .fule-daily-subject-card-index {
        display: none;
    }
    .fule-daily-subject-card-go {
        display: none;
    }
    .fule-daily-stem {
        font-size: 17px;
        padding: 10px 12px;
    }
    .fule-daily-opt,
    .fule-daily-textarea {
        font-size: 15px;
    }
    .fule-daily-feedback {
        font-size: 14px;
    }
    .fule-daily-analysis {
        font-size: 15px;
    }
    .fule-daily-nav .fule-daily-btn {
        flex: 1 1 calc(50% - 5px);
    }
    .fule-daily .fule-daily-gate-enter {
        width: 100%;
        max-width: 100%;
    }
}
@container fule-daily (max-width: 400px) {
    .fule-daily-nav .fule-daily-btn {
        flex: 1 1 100%;
    }
    .fule-daily-gate-cell,
    .fule-daily-picker-strip-item {
        min-height: 64px;
    }
    .fule-daily-subject-card-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
}
@media (max-width: 600px) {
    .fule-daily-picker-strip,
    .fule-daily-gate-grid {
        grid-template-columns: 1fr;
    }
    .fule-daily-quiz,
    .fule-daily-picker-card,
    .fule-daily-gate-card {
        padding: 16px 14px 16px;
    }
    .fule-daily-nav .fule-daily-btn {
        flex: 1 1 calc(50% - 5px);
    }
    .fule-daily .fule-daily-gate-enter {
        width: 100%;
        max-width: 100%;
    }
}
.fule-daily.is-flush {
    color: inherit;
}
.fule-daily.is-flush .fule-daily-quiz,
.fule-daily.is-flush .fule-daily-picker-card,
.fule-daily.is-flush .fule-daily-gate-card {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 12px;
    color: inherit;
}
.fule-daily.is-flush .fule-daily-picker-card::before,
.fule-daily.is-flush .fule-daily-picker-card::after,
.fule-daily.is-flush .fule-daily-gate-card::before,
.fule-daily.is-flush .fule-daily-gate-card::after {
    display: none;
}
.fule-daily.is-flush .fule-daily-picker-title,
.fule-daily.is-flush .fule-daily-gate-title,
.fule-daily.is-flush .fule-daily-gate-value,
.fule-daily.is-flush .fule-daily-picker-strip-value {
    color: inherit;
}
.fule-daily.is-flush .fule-daily-subject-card,
.fule-daily.is-flush .fule-daily-picker-strip-item,
.fule-daily.is-flush .fule-daily-gate-cell,
.fule-daily.is-flush .fule-daily-gate-intro {
    background: rgba(250, 250, 250, 0.55);
    border-color: #ececec;
}
.fule-daily.is-flush .fule-daily-track-tabs {
    background: rgba(244, 245, 247, 0.7);
}
.fule-daily.is-flush .fule-daily-gate-track-pill {
    background: rgba(244, 245, 247, 0.85);
}

/* ---- One width rule: entry + quiz = 100% of content column ---- */
.fule-daily,
.fule-daily-picker,
.fule-daily-gate,
.fule-daily-picker-card,
.fule-daily-gate-card,
.fule-daily-quiz {
    width: 100%;
    max-width: 100%;
}
.fule-daily[data-mode="catalog"] .fule-daily-subject-list,
.fule-daily[data-mode="track"] .fule-daily-subject-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.fule-daily[data-mode="catalog"] .fule-daily-picker-strip,
.fule-daily[data-mode="track"] .fule-daily-picker-strip,
.fule-daily[data-mode="subject"] .fule-daily-gate-grid {
    text-align: left;
}
.fule-daily[data-mode="catalog"] .fule-daily-track-tabs {
    text-align: left;
}
.fule-daily[data-mode="catalog"] .fule-daily-entry-footnote,
.fule-daily[data-mode="track"] .fule-daily-entry-footnote,
.fule-daily[data-mode="subject"] .fule-daily-entry-footnote {
    text-align: center;
}

.fule-daily.is-card .fule-daily-quiz,
.fule-daily.is-card .fule-daily-picker-card,
.fule-daily.is-card .fule-daily-gate-card {
    border: 1px solid #f0d9cf;
    box-shadow: 0 12px 36px rgba(255, 87, 34, 0.1);
}
.fule-daily.is-card .fule-daily-subject-card {
    border-color: #f0ebe8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.fule-daily.is-card .fule-daily-subject-card:hover {
    box-shadow: 0 10px 24px rgba(255, 87, 34, 0.12);
}

.fule-daily.is-flush .fule-daily-sheet-item {
    background: #fafafa;
}
.fule-daily.is-flush .fule-daily-nav {
    border-top-color: #eee;
}

.fule-daily-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(24, 24, 24, 0.42);
    backdrop-filter: blur(3px);
}
.fule-daily-modal[hidden] {
    display: none;
}
.fule-daily-modal-card {
    width: min(420px, 100%);
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
    animation: fule-daily-modal-in 0.16s ease-out;
}
@keyframes fule-daily-modal-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.fule-daily-modal-title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
    color: #1a1a1a;
}
.fule-daily-modal-text {
    margin: 0 0 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}
.fule-daily-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.fule-daily-modal-actions .fule-daily-btn {
    flex: 0 0 auto;
    min-width: 96px;
}

/* ---- Answer sheet ---- */
.fule-daily-sheet {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(38px, 1fr));
    gap: 7px;
    margin-top: 10px;
}
.fule-daily-sheet-item {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.fule-daily-sheet-item:hover {
    border-color: #ffbca8;
    color: var(--fule-main);
    transform: translateY(-1px);
}
.fule-daily-sheet-item:focus-visible {
    outline: 2px solid #ffccbc;
    outline-offset: 2px;
}
.fule-daily-sheet-item.is-answered {
    border-color: #ffd3c2;
    background: #fff6f2;
    color: #bf360c;
}
.fule-daily-sheet-item.is-current {
    border-color: var(--fule-main);
    background: var(--fule-main);
    color: #fff;
    box-shadow: 0 6px 14px rgba(255, 87, 34, 0.22);
}
.fule-daily-sheet-item.is-correct {
    border-color: #b7dfba;
    background: #edf7ee;
    color: var(--fule-ok);
}
.fule-daily-sheet-item.is-wrong {
    border-color: #f2b8b8;
    background: #fdf0f0;
    color: var(--fule-bad);
}
.fule-daily-sheet-item.is-short {
    border-color: #d8d8d8;
    background: #f5f5f5;
    color: #666;
}

/* ---- Refined question controls ---- */
.fule-daily-stem {
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
.fule-daily-opt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.fule-daily-opt:hover {
    transform: translateY(-1px);
}
.fule-daily-opt input {
    flex: 0 0 auto;
    margin: 4px 0 0;
}
.fule-daily-opt.is-correct,
.fule-daily-opt.is-wrong {
    border-width: 1px;
    font-weight: 500;
}
.fule-daily-textarea {
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.fule-daily-nav {
    border-radius: 12px;
}
.fule-daily-btn {
    border-radius: 10px;
    min-height: 44px;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}
.fule-daily-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}
.fule-daily-btn:focus-visible,
.fule-daily-textarea:focus,
.fule-daily-opt:focus-within {
    outline: 2px solid #ffccbc;
    outline-offset: 2px;
}

.fule-daily-score-ring.is-short {
    background: #f4f5f7;
}

@container fule-daily (max-width: 560px) {
    .fule-daily-sheet {
        gap: 6px;
    }
    .fule-daily-sheet-item {
        height: 34px;
        min-width: 34px;
    }
    .fule-daily-nav {
        position: sticky;
        bottom: 0;
        z-index: 2;
        margin: 28px 0 -16px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        border-top: 1px solid #eee;
    }
    .fule-daily.is-flush .fule-daily-nav {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fule-daily *,
    .fule-daily *::before,
    .fule-daily *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
