/* ===========================================================
   Tbfe — Midnight Neon Theme
   A sleek, dark gaming UI with electric cyan & magenta accents.

   Palette
   ─────────────────────────────────────────────────────────
   Page background   #0a0e1a  (deep midnight)
   Surface           #111827  (dark card)
   Surface hover     #1a2236
   Surface elevated  #1e293b
   Border            #1e2d4a
   Border accent     #2a3f6a
   Primary cyan      #06b6d4  (cyan-500)
   Primary glow      #22d3ee  (cyan-400)
   Accent magenta    #e040fb  (magenta)
   Accent violet     #8b5cf6  (violet-500)
   Accent amber      #f59e0b  (amber-500)
   Text primary      #f1f5f9  (slate-100)
   Text secondary    #94a3b8  (slate-400)
   Text muted        #64748b  (slate-500)
   =========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    max-width: 660px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont,
        'Helvetica Neue', 'PingFang SC', 'Hiragino Sans GB',
        'Microsoft YaHei', sans-serif;
    color: #f1f5f9;
    line-height: 1.65;
    min-height: 100vh;
    background: #0a0e1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─────── Scrollbar ─────── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0e1a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4, #8b5cf6);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #22d3ee, #a78bfa);
}

/* ─────── Navbar ────── */
.ducse-navbar {
    max-width: 660px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 20px;
    background: rgba(17, 24, 39, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 182, 212, .12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
    position: sticky;
    top: 0;
    z-index: 50;
}

.ducse-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: transform .25s ease;
}
.ducse-nav-logo:hover {
    transform: translateY(-1px);
}

.ducse-nav-logo img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 0 16px rgba(6, 182, 212, .3), 0 2px 8px rgba(0, 0, 0, .3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ducse-nav-logo:hover img {
    transform: rotate(-4deg) scale(1.05);
    box-shadow: 0 0 24px rgba(6, 182, 212, .45), 0 4px 16px rgba(0, 0, 0, .4);
}

.ducse-nav-title-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.ducse-nav-title {
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: .5px;
    color: #f1f5f9;
    background: linear-gradient(135deg, #22d3ee, #e040fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ducse-nav-subtitle {
    font-size: .66rem;
    color: #64748b;
    letter-spacing: .4px;
    margin-top: 2px;
    font-weight: 500;
}

/* ─────── Menu Icon / Dropdown ─────── */
#nav-open {
    display: block;
    height: 22px;
    filter: brightness(0) saturate(100) invert(72%) sepia(78%) saturate(1200%) hue-rotate(155deg) brightness(95%) contrast(90%);
    opacity: .85;
    transition: transform .2s ease, opacity .2s ease;
}
.ducse-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(6, 182, 212, .08);
    border: 1px solid rgba(6, 182, 212, .2);
    cursor: pointer;
    transition: all .2s ease;
}
.ducse-menu-icon:hover {
    background: rgba(6, 182, 212, .15);
    border-color: rgba(6, 182, 212, .35);
}
.ducse-menu-icon:hover #nav-open {
    transform: scale(1.08);
}

#nav-close {
    display: none;
    height: 22px;
    filter: brightness(0) invert(1);
}

.ducse-menu {
    width: 280px;
    flex-direction: column;
    gap: 0;
    background: #111827;
    position: absolute;
    align-items: stretch;
    height: auto;
    top: 64px;
    right: 12px;
    padding: 10px 0;
    z-index: 60;
    margin: 0;
    list-style: none;
    display: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(6, 182, 212, .1);
    border: 1px solid rgba(6, 182, 212, .1);
}

.ducse-menu li {
    position: relative;
}
.ducse-menu li a {
    font-size: .95rem;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: all .25s ease;
    padding: 12px 22px;
    display: block;
    border-left: 3px solid transparent;
    border-radius: 0 12px 12px 0;
    margin: 2px 6px;
}
.ducse-menu li a:hover {
    color: #22d3ee;
    background: rgba(6, 182, 212, .08);
    border-left-color: #06b6d4;
    padding-left: 26px;
}

.ducse-menu.open {
    display: flex;
    flex-direction: column;
    animation: menuFadeIn .25s ease-out;
}
.ducse-menu.open #nav-open {
    display: none;
}
.ducse-menu.open #nav-close {
    display: block;
}

@keyframes menuFadeIn {
    0% { opacity: 0; transform: translateY(-8px) scale(.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─────── Game Card ────── */
.ducse-game-item {
    border-radius: 14px;
    position: relative;
    background: #111827;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}
.ducse-game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(6, 182, 212, .12), 0 0 0 1px rgba(6, 182, 212, .2);
}

.ducse-game-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ducse-game-cover {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.ducse-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform .4s ease;
}
.ducse-game-cover img:hover {
    transform: scale(1.05);
}

.ducse-game-cover-recommend {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.ducse-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform .4s ease;
}
.ducse-game-cover-recommend img:hover {
    transform: scale(1.05);
}

.ducse-game-item h3 {
    color: #f1f5f9;
    margin: 6px 0;
    font-size: .82rem;
    font-weight: 600;
}
.ducse-game-item p {
    color: #64748b;
    margin: 0;
    font-size: .85rem;
}

.ducse-game-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 8px 4px 4px;
}
.ducse-game-info p:first-child {
    color: #f1f5f9;
    font-size: .84rem;
    font-weight: 600;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.ducse-game-info p:nth-child(2) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4.5em;
    font-size: .76rem;
    color: #94a3b8;
    font-weight: 400;
}
.ducse-game-info p:last-child {
    font-size: .72rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 8px;
    right: 0;
    justify-content: center;
    align-items: center;
}

/* ─────── Section Containers ─────── */
.ducse-recomed-div {
    margin: 0 12px;
    border-radius: 14px;
    padding: 4px 0 12px;
}

.ducse-detail-recomed-div {
    margin: 12px 20px;
    border-radius: 14px;
    padding: 12px 0;
}

.ducse-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #111827;
    border-radius: 12px;
    border: 1px solid #1e2d4a;
    position: relative;
    overflow: hidden;
}
.ducse-common-recommend-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #06b6d4, #e040fb);
    border-radius: 4px 0 0 4px;
}
.ducse-common-recommend-title p {
    color: #f1f5f9;
    font-size: 1.02rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: .3px;
    position: relative;
    z-index: 1;
    padding-left: 8px;
}
.ducse-common-recommend-title img {
    width: 18px;
    height: 18px;
    opacity: .5;
    transition: all .2s ease;
    filter: brightness(0) saturate(100) invert(72%) sepia(78%) saturate(1200%) hue-rotate(155deg) brightness(95%) contrast(90%);
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.ducse-common-recommend-title img:hover {
    opacity: .8;
    transform: translateX(2px);
}

/* ─────── Grid Layouts ─────── */
.ducse-common-recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}
.ducse-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
}
.ducse-game-big-2 {
    grid-column: span 2;
    grid-row: span 2;
}
.game-big-3 {
    grid-column: span 3;
    grid-row: span 3;
}

/* ─────── Footer ─────── */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 16px 32px;
    background: #111827;
    text-align: center;
    margin-top: 48px;
    border-top: 1px solid rgba(6, 182, 212, .1);
    position: relative;
}

.ducse-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}
.ducse-footer-links a {
    font-size: .78rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color .25s ease;
    position: relative;
}
.ducse-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #06b6d4;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.ducse-footer-links a:hover {
    color: #22d3ee;
}
.ducse-footer-links a:hover::after {
    transform: scaleX(1);
}

footer .ducse-copyright {
    font-size: .75rem;
    color: #64748b;
    margin: 8px 0 0;
    letter-spacing: .3px;
}

/* ─────── Floating Buttons ─────── */
#back-top,
#back-home {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all .25s ease;
    filter: brightness(0) saturate(100) invert(72%) sepia(78%) saturate(1200%) hue-rotate(155deg) brightness(95%) contrast(90%);
    opacity: .7;
    padding: 8px;
    background: #111827;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    border: 1px solid #1e2d4a;
    box-sizing: content-box;
}
#back-top:hover,
#back-home:hover {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(6, 182, 212, .25);
    background: rgba(6, 182, 212, .1);
}

#flow {
    position: fixed;
    bottom: 96px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 4px;
    z-index: 100;
    transition: opacity .3s ease;
}

/* ─────── Game Detail ─────── */
.ducse-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    background: #111827;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
    margin: 20px;
    overflow: hidden;
}

.game-detail-iframe {
    width: 100%;
}

.ducse-game-detail-img {
    width: 100%;
    position: relative;
}
.ducse-game-detail-img img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 1 / .8;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
    transition: all .3s ease;
}
.ducse-game-detail-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(6, 182, 212, .2);
}

.ducse-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4px 8px;
    order: 1;
    z-index: 1;
}
.ducse-detail-info h2 {
    color: #f1f5f9;
    font-size: 1.7rem;
    margin: 0 0 12px 0;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.3px;
}
.ducse-detail-info p {
    color: #94a3b8;
    font-size: .95rem;
    margin: 6px 0;
    line-height: 1.7;
}
.ducse-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
    margin-bottom: 12px;
}

/* ─────── Game Instructions / Article blocks ─────── */
.ducse-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background: #111827;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
}
.ducse-game-instructions p {
    color: #94a3b8;
    line-height: 1.75;
    font-size: .95rem;
}

/* ─────── Play Button ─────── */
.ducse-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #06b6d4 0%, #e040fb 100%);
    border-radius: 14px;
    padding: 14px 38px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 14px rgba(6, 182, 212, .3);
    margin: 0 auto;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.ducse-game-gameplay-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(6, 182, 212, .4);
}
.ducse-game-gameplay-button img {
    width: 50px;
    height: 50px;
    transition: transform .3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .15));
}
.ducse-game-gameplay-button:hover img {
    transform: scale(1.08) rotate(8deg);
}
.ducse-game-gameplay-button p {
    color: #fff;
    margin: 0 14px 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .3px;
}

/* ─────── Game Iframe Page ────── */
.ducse-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
    background: #0a0e1a;
}
#iframe-menu-btn {
    margin-top: 20px;
    margin-left: 60px;
    position: absolute;
    height: 40px;
}
#iframe-back-btn {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    height: 44px;
    cursor: pointer;
    filter: brightness(0) saturate(100) invert(72%) sepia(78%) saturate(1200%) hue-rotate(155deg) brightness(95%) contrast(90%);
    opacity: .7;
    transition: transform .2s ease, opacity .2s ease;
    padding: 10px;
    background: #111827;
    border-radius: 14px;
    border: 1px solid #1e2d4a;
    box-sizing: content-box;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
#iframe-back-btn:hover {
    opacity: 1;
    transform: scale(1.06);
    background: rgba(6, 182, 212, .1);
}

/* ─────── News / Article Pages ─────── */
.ducse-news-detail {
    color: #94a3b8;
    text-align: start;
    padding: 28px 22px;
    margin: 20px 16px;
    background: #111827;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .04);
}
.ducse-news-detail img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.ducse-news-detail h3 {
    color: #f1f5f9;
    font-size: 1.55rem;
    margin: 0 0 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #06b6d4, #e040fb, transparent) 1;
    font-weight: 800;
    letter-spacing: -.3px;
    line-height: 1.3;
}
.ducse-news-detail h4 {
    color: #22d3ee;
    font-size: 1.12rem;
    margin: 28px 0 10px 0;
    font-weight: 700;
    position: relative;
    padding-left: 14px;
}
.ducse-news-detail h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: linear-gradient(180deg, #06b6d4, #e040fb);
    border-radius: 3px;
}
.ducse-news-detail p {
    color: #94a3b8;
    font-size: .94rem;
    line-height: 1.8;
    margin: 10px 0;
}
.ducse-news-detail a {
    color: #22d3ee;
    text-decoration: none;
    border-bottom: 1px dashed rgba(6, 182, 212, .3);
    transition: color .2s ease, border-color .2s ease;
}
.ducse-news-detail a:hover {
    color: #e040fb;
    border-bottom-color: rgba(224, 64, 251, .6);
}
.ducse-news-detail ul {
    padding-left: 22px;
    margin: 10px 0;
}
.ducse-news-detail li {
    color: #94a3b8;
    margin: 8px 0;
    font-size: .92rem;
    line-height: 1.7;
}
.ducse-news-detail li::marker {
    color: #06b6d4;
}
.ducse-news-detail strong {
    color: #f1f5f9;
    font-weight: 600;
}

/* ─────── 404 Page ─────── */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.error-page h1 {
    font-size: 2em;
    color: #f1f5f9;
    margin: 12px 0;
}
.error-page p {
    font-size: 1.1em;
    color: #94a3b8;
    padding: .5rem 1rem;
}
.error-page img {
    width: 100%;
    max-width: 320px;
    padding: 1.5rem;
}

/* ─────── Game Mark / New Badge ─────── */
.ducse-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 4vh;
    position: absolute;
    border-radius: 0 0 8px 8px;
    top: -10px;
    left: -10px;
    z-index: 2;
}
.ducse-game-mark img {
    width: 50px;
    height: 25px;
}
.ducse-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 4vh;
    position: absolute;
    border-radius: 0 0 8px 8px;
    top: 0;
    left: -10px;
    z-index: 2;
}
.ducse-game-new img {
    width: 50px;
    height: 50px;
}
.ducse-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0 10px;
    font-weight: 600;
}

#ducse-game-body {
    margin-top: 24px;
}

/* ─────── Iframe Menu (in-page) ─────── */
.iframe-menu {
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 0;
    background: #111827;
    position: absolute;
    align-items: stretch;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 8;
    margin: 0;
    list-style: none;
    display: none;
    padding: 10px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .4);
    border: 1px solid rgba(6, 182, 212, .1);
}
.iframe-menu.open {
    display: flex;
    flex-direction: column;
}
.iframe-menu li a {
    font-size: .95rem;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    transition: color .25s, padding-left .25s;
    padding: 10px 16px;
    display: block;
    border-radius: 8px;
}
.iframe-menu li a:hover {
    color: #22d3ee;
    background: rgba(6, 182, 212, .08);
    padding-left: 22px;
}

.iframe-list-item a {
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: space-between;
    align-items: center;
}
.iframe-list-item a img {
    margin: 0;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}
.iframe-list-item a p {
    margin: 0 16px;
    position: relative;
    color: #f1f5f9;
}
.iframe-list-item-close a {
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: flex-end;
    align-items: center;
}
.iframe-list-item-close img {
    margin: 0;
    height: 40px;
    width: 40px;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
    cursor: pointer;
}
#iframe-close-btn {
    right: 0;
    top: 0;
}

/* ────── Touch / Interaction ────── */
@media (hover: none) and (pointer: coarse) {
    .ducse-game-item:active {
        transform: translateY(-2px) scale(.98);
        box-shadow: 0 4px 12px rgba(6, 182, 212, .15);
    }
    .ducse-game-cover img:active {
        transform: scale(1.03);
    }
    .recommend-item-btn:active {
        transform: translateY(-2px) scale(.97);
    }
    #back-top:active,
    #back-home:active {
        transform: scale(.9);
    }
}

.ducse-game-item,
.recommend-item-btn,
.ducse-common-recommend-title,
.ducse-game-gameplay-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

/* ─────── Animations ─────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ducse-game-item {
    animation: fadeInUp .45s ease both;
}
.ducse-game-item:nth-child(1) { animation-delay: .05s; }
.ducse-game-item:nth-child(2) { animation-delay: .1s; }
.ducse-game-item:nth-child(3) { animation-delay: .15s; }
.ducse-game-item:nth-child(4) { animation-delay: .2s; }
.ducse-game-item:nth-child(5) { animation-delay: .25s; }
.ducse-game-item:nth-child(6) { animation-delay: .3s; }

/* ─────── Responsive ─────── */
@media (max-width: 480px) {
    .ducse-game-item-div {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .ducse-recommend-content,
    .ducse-recommend-content-hot {
        grid-template-columns: repeat(2, 1fr);
    }
    .ducse-game-detail-title {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }
    #flow {
        bottom: 76px;
        right: 10px;
    }
    .ducse-nav-subtitle {
        display: none;
    }
    .ducse-navbar {
        height: 60px;
    }
    .ducse-nav-logo img {
        height: 38px;
        width: 38px;
    }
    .ducse-nav-title {
        font-size: 1.08rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .ducse-game-item-div {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .ducse-recommend-content,
    .ducse-recommend-content-hot {
        grid-template-columns: repeat(4, 1fr);
    }
}
