:root {
    --relaxed-bg: #fff9f2;
    --relaxed-surface: #ffffff;
    --relaxed-surface-soft: #fff4e8;
    --relaxed-text: #3f2f22;
    --relaxed-muted: #7d6958;
    --relaxed-primary: #ef8a3d;
    --relaxed-primary-dark: #d67324;
    --relaxed-accent: #58b9a7;
    --relaxed-border: #f1dcc6;
    --relaxed-shadow: 0 18px 34px rgba(142, 99, 52, 0.12);
}

body.site-app {
    min-height: 100vh;
    color: var(--relaxed-text);
    font-family: "M PLUS Rounded 1c", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, #fff2df 0, transparent 36%),
        radial-gradient(circle at 90% 0%, #ffe6dc 0, transparent 30%),
        radial-gradient(circle at 100% 90%, #fff0db 0, transparent 38%),
        var(--relaxed-bg);
}

.main-shell {
    position: relative;
}

.relaxed-navbar {
    background: rgba(255, 250, 244, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--relaxed-border);
}

.brand-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(44, 25, 9, 0.12));
}

.brand-title {
    color: var(--relaxed-text);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.relaxed-navbar .navbar-toggler {
    border-color: #e4c7aa;
}

.relaxed-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(239, 138, 61, 0.24);
}

.relaxed-navbar .nav-link {
    color: #5f4a36;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.5rem 0.9rem !important;
    transition: all 0.25s ease;
}

.relaxed-navbar .nav-link:hover,
.relaxed-navbar .nav-link:focus {
    color: var(--relaxed-primary-dark);
    background-color: #ffe9d4;
}

.navbar-auth-group .btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.45rem 0.95rem;
    border-width: 1px;
}

.btn-relaxed-line {
    background-color: #07c755;
    border-color: #07c755;
    color: #fff;
}

.btn-relaxed-line:hover {
    background-color: #06ad4a;
    border-color: #06ad4a;
    color: #fff;
}

.btn-relaxed-discord {
    background-color: #5865f2;
    border-color: #5865f2;
    color: #fff;
}

.btn-relaxed-discord:hover {
    background-color: #4854d8;
    border-color: #4854d8;
    color: #fff;
}

.hero-section {
    padding: 2.2rem 0 1.6rem;
}

.hero-panel {
    background: linear-gradient(120deg, #fff8ee 0%, #fffaf6 100%);
    border: 1px solid var(--relaxed-border);
    border-radius: 1.4rem;
    box-shadow: var(--relaxed-shadow);
    padding: clamp(1.3rem, 3vw, 2.5rem);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.95rem;
    border: 1px solid #f0cfaa;
    border-radius: 999px;
    color: #b56628;
    background: #fff2e3;
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-title {
    margin: 0.95rem 0 1rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #2f2319;
}

.hero-subtitle {
    margin-bottom: 1.45rem;
    color: var(--relaxed-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-actions .btn {
    border-radius: 999px;
    padding: 0.72rem 1.35rem;
    font-weight: 700;
}

.btn-relaxed-primary {
    background-color: var(--relaxed-primary);
    border-color: var(--relaxed-primary);
    color: #fff;
}

.btn-relaxed-primary:hover {
    background-color: var(--relaxed-primary-dark);
    border-color: var(--relaxed-primary-dark);
    color: #fff;
}

.btn-relaxed-ghost {
    border: 1px solid var(--relaxed-border);
    background-color: #fff;
    color: #654b37;
}

.btn-relaxed-ghost:hover {
    border-color: #e4c7aa;
    background-color: #fff3e5;
    color: #654b37;
}

.hero-carousel-card {
    border: 1px solid var(--relaxed-border);
    border-radius: 1.25rem;
    padding: 0.75rem;
    background-color: var(--relaxed-surface);
    box-shadow: var(--relaxed-shadow);
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: clamp(220px, 34vw, 400px);
    overflow: hidden;
    border-radius: 0.95rem;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rule-section {
    padding-top: 1.8rem;
    padding-bottom: 2.2rem;
}

.section-kicker {
    color: #b56628;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0.5rem 0 0.7rem;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #2f2319;
}

.section-subtitle {
    color: var(--relaxed-muted);
    margin-bottom: 0;
}

.rule-card {
    height: 100%;
    background: var(--relaxed-surface);
    border: 1px solid var(--relaxed-border);
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: 0 12px 24px rgba(142, 99, 52, 0.08);
}

.rule-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.85rem;
    background-color: #fff1e3;
    color: var(--relaxed-primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.rule-title {
    margin: 0.85rem 0 0.45rem;
    font-size: 1.08rem;
    font-weight: 800;
}

.rule-text {
    margin: 0;
    color: var(--relaxed-muted);
    line-height: 1.65;
}

.quote-section {
    padding-top: 1.2rem;
}

.quote-card {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--relaxed-border);
    border-radius: 1.45rem;
    box-shadow: var(--relaxed-shadow);
    background: linear-gradient(145deg, #fff2de 0%, #fffefa 100%);
    padding: clamp(1.35rem, 3vw, 2.2rem);
    text-align: center;
}

.quote-text {
    margin-bottom: 1.1rem;
    color: #4a3828;
    font-size: clamp(1.02rem, 2vw, 1.28rem);
    font-style: italic;
    line-height: 1.75;
}

.quote-sign {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--relaxed-border);
    background: #fff;
    padding: 0.48rem 1.1rem;
    font-weight: 700;
    color: #5f4a36;
}

.quote-sign img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.page-lead {
    color: var(--relaxed-muted);
}

.video-category-wrapper {
    background-color: var(--relaxed-surface);
    border: 1px solid var(--relaxed-border);
    border-radius: 1rem;
}

.video-category-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.video-category-bar .category-tag {
    padding: 0.48rem 1.05rem;
    border-radius: 999px;
    background-color: #fff;
    color: #6b543f;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #efd8c1;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.video-category-bar .category-tag:hover {
    background-color: #fff1e3;
    border-color: #e7bc91;
    color: #9b5a21;
}

.video-category-bar .category-tag.active {
    background-color: var(--relaxed-primary);
    color: #fff;
    border-color: var(--relaxed-primary);
    box-shadow: 0 10px 20px rgba(239, 138, 61, 0.24);
}

.relaxed-video-card {
    cursor: pointer;
    border: 1px solid var(--relaxed-border) !important;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(142, 99, 52, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.relaxed-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(142, 99, 52, 0.16);
}

.relaxed-video-thumb {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background-color: #fff1e2;
    color: #9d5a20;
    border: 1px solid #f0d5b8;
    padding: 0.22rem 0.64rem;
    font-size: 0.76rem;
    font-weight: 700;
}

.relaxed-video-card .card-title {
    color: #3d2d20;
    font-size: 1.05rem;
}

.relaxed-video-card .card-text {
    color: var(--relaxed-muted);
    font-size: 0.95rem;
}

.video-author-avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.relaxed-modal {
    border-radius: 1rem;
    border: 1px solid var(--relaxed-border);
}

.relaxed-modal .modal-header {
    border-bottom: 1px solid #f1e2d3;
}

.relaxed-modal .modal-footer {
    border-top: 1px solid #f1e2d3;
}

.profile-modal-preview {
    background: linear-gradient(145deg, #fff6eb 0%, #fffdf8 100%);
    border: 1px solid var(--relaxed-border);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.profile-avatar-preview {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(142, 99, 52, 0.2);
}

.profile-preview-title {
    margin-top: 0.85rem;
    color: #3d2d20;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.35;
    word-break: break-word;
}

.profile-preview-subtitle {
    margin-top: 0.35rem;
    color: #8c6b4f;
    font-size: 0.9rem;
    word-break: break-word;
}

.profile-preview-status {
    margin: 0.75rem 0 0;
    color: #6f5947;
    font-size: 0.93rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.home-announcement-card {
    padding: 0.75rem;
}

.home-announcement-cover-link {
    display: block;
    margin-bottom: 0.7rem;
    border-radius: 0.8rem;
    overflow: hidden;
    border: 1px solid #ead8c6;
    background: linear-gradient(130deg, #fff5e8 0%, #fffdf9 100%);
}

.home-announcement-cover {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-announcement-card:hover .home-announcement-cover {
    transform: scale(1.04);
}

.home-announcement-title {
    margin-top: 0;
    line-height: 1.5;
    font-size: 1rem;
}

.home-announcement-title-link {
    color: #2f2319;
    text-decoration: none;
}

.home-announcement-title-link:hover {
    color: #5f452f;
    text-decoration: underline;
}

.home-announcement-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
}

.home-announcement-pagination .pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0;
}

.home-announcement-pagination .page-link {
    border-radius: 999px;
    border-color: var(--relaxed-border);
    color: #6b543f;
    padding: 0.4rem 0.72rem;
    min-width: 2.2rem;
    text-align: center;
    line-height: 1.2;
}

.home-announcement-pagination .page-link:hover {
    background-color: #fff3e5;
    border-color: #e4c7aa;
    color: #654b37;
}

.home-announcement-pagination .page-item.active .page-link {
    background-color: var(--relaxed-primary);
    border-color: var(--relaxed-primary);
    color: #fff;
}

.ig-feed-shell {
    border: 1px solid #eed8bf;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff7ee 0%, #fffdf8 100%);
    padding: 0.7rem 0.7rem 0.6rem;
    box-shadow: 0 10px 22px rgba(142, 99, 52, 0.09);
}

.ig-feed-shell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
    padding: 0 0.2rem;
}

.ig-feed-shell-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    color: #a16938;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ig-feed-shell-kicker i {
    font-size: 0.86rem;
}

.ig-feed-wrap {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.ig-feed-nav {
    width: 2rem;
    min-width: 2rem;
    border-radius: 999px;
    border: 1px solid #ecd4b9;
    background-color: #fff;
    color: #7a5a3f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 5px 10px rgba(139, 97, 52, 0.12);
}

.ig-feed-nav:hover:not(:disabled) {
    background-color: #fff3e6;
    border-color: #dfbe9b;
    color: #62462f;
}

.ig-feed-nav:disabled {
    opacity: 0.4;
    cursor: default;
}

.ig-feed-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(158px, 182px);
    gap: 0.7rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.15rem;
    -webkit-overflow-scrolling: touch;
    padding: 0.08rem 0.1rem 0.5rem;
    flex: 1;
}

.ig-feed-track::-webkit-scrollbar {
    height: 6px;
}

.ig-feed-track::-webkit-scrollbar-thumb {
    background-color: #e6c5a2;
    border-radius: 999px;
}

.ig-feed-card {
    display: block;
    text-decoration: none;
    border: 1px solid #edd9c1;
    border-radius: 0.9rem;
    background: #fff;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 9px 18px rgba(142, 99, 52, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ig-feed-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(142, 99, 52, 0.15);
}

.ig-feed-frame {
    padding: 2px;
    background: linear-gradient(140deg, #feda75 2%, #fa7e1e 24%, #d62976 48%, #962fbf 72%, #4f5bd5 100%);
}

.ig-feed-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f9f5ef;
}

.ig-feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-feed-badge {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    border-radius: 999px;
    padding: 0.14rem 0.46rem;
    font-size: 0.64rem;
    font-weight: 800;
    color: #fff;
    background: rgba(45, 31, 19, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(3px);
}

.ig-feed-body {
    padding: 0.52rem 0.56rem 0.58rem;
}

.ig-feed-caption {
    margin: 0;
    color: #4b3a2b;
    font-size: 0.79rem;
    line-height: 1.4;
    min-height: 2.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.ig-feed-time {
    margin-top: 0.25rem;
    color: #8f745f;
    font-size: 0.7rem;
    font-weight: 700;
}

.mainland-news-section .mainland-news-thumb {
    display: block;
}

.mainland-news-section .mainland-news-title {
    margin-top: 0;
    line-height: 1.55;
}

.mainland-news-section .mainland-news-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.mainland-news-section .relaxed-pagination .pagination {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0;
}

.mainland-news-section .mainland-pagination-list {
    row-gap: 0.4rem;
}

.mainland-news-section .relaxed-pagination .page-link {
    border-radius: 999px;
    border-color: var(--relaxed-border);
    color: #6b543f;
    padding: 0.4rem 0.72rem;
    min-width: 2.2rem;
    text-align: center;
    line-height: 1.2;
}

.mainland-news-section .relaxed-pagination .page-link:hover {
    background-color: #fff3e5;
    border-color: #e4c7aa;
    color: #654b37;
}

.mainland-news-section .relaxed-pagination .page-item.active .page-link {
    background-color: var(--relaxed-primary);
    border-color: var(--relaxed-primary);
    color: #fff;
}

.guild-feature-card .guild-feature-excerpt {
    min-height: 3.2em;
}

.guild-calendar-toolbar {
    border: 1px dashed #edd2b4;
    border-radius: 0.9rem;
    background: linear-gradient(120deg, #fff7ec 0%, #fffdf9 100%);
    padding: 0.6rem 0.8rem;
}

.guild-month-label {
    color: #8a6746;
}

.guild-calendar-card {
    padding: 0.8rem;
}

.guild-calendar-wrap {
    border: 1px solid #f0dfcd;
    border-radius: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.guild-calendar-table thead th {
    background-color: #fff3e4;
    color: #8e5d31;
    font-size: 0.82rem;
    font-weight: 800;
    border-bottom: 1px solid #efd8bf;
    letter-spacing: 0.02em;
}

.guild-calendar-table td,
.guild-calendar-table th {
    border-color: #f1e3d2;
}

.guild-day-cell {
    min-width: 118px;
    min-height: 116px;
    height: auto;
    vertical-align: top;
    padding: 0.45rem !important;
    background-color: #fff;
    transition: background-color 0.2s ease;
}

.guild-day-cell:hover {
    background-color: #fff8ee;
}

.guild-day-cell.is-other {
    background-color: #fffaf4;
    opacity: 0.72;
}

.guild-day-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    color: #7a4f2a;
    background-color: #fff1e2;
    border: 1px solid #efd4b9;
}

.guild-day-cell.is-other .guild-day-num {
    background-color: #f7f3ee;
    color: #98806b;
    border-color: #eee2d6;
}

.guild-day-event {
    display: block;
    width: 100%;
    margin-top: 0.34rem;
    padding: 0.28rem 0.42rem;
    border: 1px solid #f1ddc5;
    border-radius: 0.62rem;
    background-color: #fff9f1;
    text-align: left;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guild-day-event:hover {
    border-color: #e8bf92;
    background-color: #fff1df;
}

.guild-day-event.is-lottery {
    border-color: #f0cd95;
    background: linear-gradient(140deg, #fff7e9 0%, #fff2db 100%);
}

.guild-day-event.is-lottery:hover {
    border-color: #e2b374;
    background: linear-gradient(140deg, #ffefd4 0%, #ffe8c2 100%);
}

.guild-day-tag {
    display: inline-block;
    border-radius: 999px;
    padding: 0.08rem 0.45rem;
    margin-bottom: 0.16rem;
    background-color: #ffe1ba;
    color: #8f5920;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.2;
}

.guild-day-tag.is-lottery {
    background-color: #ffd59f;
    color: #84511d;
}

.guild-day-title {
    display: block;
    color: #4f3d2d;
    font-size: 0.75rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guild-day-more {
    margin-top: 0.28rem;
    color: #9a7b5f;
    font-size: 0.72rem;
    font-weight: 700;
}

.photo-highlight {
    border: 1px solid var(--relaxed-border);
    background-color: var(--relaxed-surface);
}

.photo-category-list {
    border: 1px solid var(--relaxed-border);
    background-color: var(--relaxed-surface-soft);
}

.photo-item-card {
    border: 1px solid var(--relaxed-border) !important;
    border-radius: 0.95rem;
    overflow: hidden;
}

.photo-cover {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hover-zoom img {
    transition: transform 0.35s ease;
}

.hover-zoom:hover img {
    transform: scale(1.05);
}

.photo-action {
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    border-color: #e7bc91;
    color: #a35f22;
    font-weight: 700;
}

.photo-action:hover {
    border-color: var(--relaxed-primary);
    background-color: #fff0df;
    color: #8e4f1d;
}

.site-footer {
    margin-top: 2rem;
    background-color: #302317;
    color: #f8e8d7;
}

.site-footer .small {
    color: #f8e8d7;
}

.swal2-bg-popup {
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    font-family: "Noto Sans TC", "M PLUS Rounded 1c", "Microsoft JhengHei", sans-serif;
    padding: 1.5em 1em;
}

.swal2-bg-title {
    font-size: 1.45rem;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.swal2-confirm {
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .relaxed-navbar .navbar-collapse {
        margin-top: 0.8rem;
        padding: 0.85rem;
        border-radius: 1rem;
        border: 1px solid var(--relaxed-border);
        background-color: rgba(255, 250, 244, 0.98);
    }

    .navbar-auth-group {
        margin-top: 0.35rem;
    }

    .navbar-auth-group .nav-item {
        width: 100%;
    }

    .navbar-auth-group .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        height: 46px;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .video-category-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }

    .video-category-bar::-webkit-scrollbar {
        height: 6px;
    }

    .video-category-bar::-webkit-scrollbar-thumb {
        background-color: #e6c5a2;
        border-radius: 999px;
    }

    .mainland-news-section .mainland-news-title a {
        -webkit-line-clamp: 3;
    }

    .home-announcement-excerpt {
        min-height: 0;
    }

    .home-announcement-pagination .page-link {
        padding: 0.36rem 0.62rem;
        font-size: 0.82rem;
        min-width: 2rem;
    }

    .ig-feed-wrap {
        gap: 0.3rem;
    }

    .ig-feed-nav {
        width: 1.84rem;
        min-width: 1.84rem;
    }

    .ig-feed-track {
        grid-auto-columns: minmax(144px, 60vw);
        gap: 0.55rem;
    }

    .ig-feed-shell {
        padding: 0.55rem 0.5rem 0.46rem;
    }

    .ig-feed-shell-kicker {
        font-size: 0.72rem;
    }

    .mainland-news-section .relaxed-pagination .page-link {
        padding: 0.36rem 0.62rem;
        font-size: 0.82rem;
        min-width: 2rem;
    }

    .guild-calendar-card {
        padding: 0.55rem;
    }

    .guild-day-cell {
        min-width: 96px;
        min-height: 104px;
        height: auto;
        padding: 0.35rem !important;
    }

    .guild-day-title {
        font-size: 0.72rem;
    }
}
