/* ============================================
   Diefbk.com - Core Design System
   Teal & Coral theme, clean layout
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f0fdfa;
    color: #134e4a;
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul, ol { list-style: none; }

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   HEADER - Normal flow, no sticky
   ============================================ */

.df-header {
    background: #ffffff;
    border-bottom: 2px solid #ccfbf1;
}

.df-topbar {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
}

.df-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.df-brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.df-brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f766e;
    letter-spacing: -0.5px;
}

/* Nav pills */
.df-nav-pills {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    justify-content: center;
}

.df-nav-pills::-webkit-scrollbar { display: none; }

.df-nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #5eead4;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.df-nav-pill:hover {
    background: #ccfbf1;
    color: #0f766e;
    opacity: 1;
}

.df-nav-pill.df-active {
    background: #0f766e;
    color: #ffffff;
}

/* Header actions */
.df-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.df-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.df-menu-btn img { width: 22px; height: 22px; }

/* Mobile nav overlay */
.df-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 118, 110, 0.35);
    z-index: 998;
    backdrop-filter: blur(3px);
}

.df-nav-overlay.df-visible { display: block; }

.df-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    z-index: 999;
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.df-mobile-nav.df-open { right: 0; }

.df-mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f766e;
    border-radius: 50px;
    margin-bottom: 8px;
    transition: all 0.2s;
    background: #f0fdfa;
    border: 1.5px solid #e6f7f4;
    text-align: center;
}

.df-mobile-nav a:hover {
    background: #ccfbf1;
    border-color: #0f766e;
    color: #0f766e;
    transform: scale(1.02);
}

.df-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f0fdfa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.df-mobile-close img { width: 20px; height: 20px; }

/* ============================================
   CONTAINER
   ============================================ */

.df-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.df-sec-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #134e4a;
    margin: 44px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.df-sec-title span {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 16px;
}

.df-sec-title span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 22px;
    background: #f97316;
    border-radius: 2px;
}

.df-sec-title .df-sec-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: #f97316;
    padding: 5px 16px;
    background: #fff7ed;
    border-radius: 14px;
    transition: all 0.2s;
}

.df-sec-title .df-sec-link:hover {
    background: #f97316;
    color: #ffffff;
    opacity: 1;
}

/* ============================================
   GAME CARD - Refined card with description & rating
   ============================================ */

.df-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}

.df-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e6f7f4;
    display: flex;
    flex-direction: column;
}

.df-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.14);
    border-color: #99f6e4;
}

.df-card a { display: block; }

.df-card-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.df-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.df-card:hover .df-card-thumb img {
    transform: scale(1.06);
}

/* Category badge on thumbnail */
.df-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(15, 118, 110, 0.85);
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Rating badge on thumbnail */
.df-card-rating {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 800;
    color: #134e4a;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.df-card-rating-star {
    color: #f59e0b;
    font-size: 0.68rem;
}

/* Card body area below image */
.df-card-body {
    padding: 12px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.df-card-body .df-card-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #134e4a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    margin-bottom: 6px;
}

.df-card-body .df-card-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    flex: 1;
}

.df-card-body .df-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.df-card-body .df-card-type {
    font-size: 0.62rem;
    color: #f97316;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.df-card-body .df-card-play-hint {
    font-size: 0.62rem;
    font-weight: 700;
    color: #0f766e;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.df-card:hover .df-card-play-hint {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   GAME DETAIL PAGE
   ============================================ */

.df-detail-banner {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 60%, #2dd4bf 100%);
    padding: 40px 0 48px;
    margin-bottom: 32px;
}

.df-detail-top {
    display: flex;
    gap: 36px;
    align-items: center;
}

.df-detail-poster {
    flex-shrink: 0;
    width: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.df-detail-poster img {
    width: 100%;
    border-radius: 14px;
}

.df-detail-info { flex: 1; color: #ffffff; }

.df-detail-info h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.df-detail-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.df-detail-meta span {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.df-detail-meta .df-detail-type {
    background: rgba(249, 115, 22, 0.85);
    color: #ffffff;
}

.df-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.df-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #f97316;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.df-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
    background: #ea580c;
}

/* Guide section */
.df-guide-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 1px 6px rgba(15, 118, 110, 0.06);
    border: 1px solid #e6f7f4;
}

.df-guide-section h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #134e4a;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 4px solid #f97316;
}

.df-guide-section p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.85;
}

/* Iframe */
.df-iframe-box {
    width: 100%;
    height: 72vh;
    min-height: 500px;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.df-iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.df-more-section { margin-top: 40px; }

/* ============================================
   DETAIL - Breadcrumb
   ============================================ */

.df-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0 0;
    font-size: 0.76rem;
    font-weight: 600;
    color: #94a3b8;
    flex-wrap: wrap;
}

.df-breadcrumb a {
    color: #0f766e;
    transition: color 0.2s;
}

.df-breadcrumb a:hover {
    color: #f97316;
    opacity: 1;
}

.df-breadcrumb .df-bc-sep {
    color: #cbd5e1;
    font-size: 0.65rem;
}

.df-breadcrumb .df-bc-current {
    color: #64748b;
    font-weight: 700;
}

/* ============================================
   DETAIL - Game Info Strip
   ============================================ */

.df-game-info-strip {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(15, 118, 110, 0.06);
    margin-bottom: 28px;
    border: 1px solid #e6f7f4;
}

.df-gis-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    border-right: 1px solid #f0fdfa;
    transition: background 0.2s;
}

.df-gis-item:last-child { border-right: none; }

.df-gis-item:hover { background: #f0fdfa; }

.df-gis-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.df-gis-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.df-gis-value {
    font-size: 0.88rem;
    font-weight: 800;
    color: #134e4a;
}

/* ============================================
   DETAIL - Game Features Grid
   ============================================ */

.df-game-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.df-gf-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(15, 118, 110, 0.05);
    transition: all 0.25s ease;
    border: 1px solid #e6f7f4;
}

.df-gf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1);
}

.df-gf-card:nth-child(1) { border-top: 3px solid #0f766e; }
.df-gf-card:nth-child(2) { border-top: 3px solid #f97316; }
.df-gf-card:nth-child(3) { border-top: 3px solid #14b8a6; }
.df-gf-card:nth-child(4) { border-top: 3px solid #fb923c; }

.df-gf-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1;
}

.df-gf-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: #134e4a;
    margin-bottom: 6px;
}

.df-gf-card p {
    font-size: 0.74rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* ============================================
   DETAIL - FAQ Section
   ============================================ */

.df-detail-faq {
    margin-bottom: 36px;
}

.df-detail-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 6px rgba(15, 118, 110, 0.05);
    overflow: hidden;
    border: 1px solid #e6f7f4;
}

.df-detail-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 800;
    color: #134e4a;
    transition: background 0.2s;
    gap: 12px;
}

.df-detail-faq-q:hover {
    background: #f0fdfa;
}

.df-detail-faq-q .df-faq-toggle {
    font-size: 1.2rem;
    color: #f97316;
    transition: transform 0.3s;
    flex-shrink: 0;
    font-weight: 400;
}

.df-detail-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.df-detail-faq-item.df-open .df-detail-faq-a {
    max-height: 300px;
    padding: 0 22px 18px;
}

.df-detail-faq-item.df-open .df-faq-toggle {
    transform: rotate(45deg);
}

.df-detail-faq-a p {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.75;
}

/* ============================================
   DETAIL - Tags Section
   ============================================ */

.df-game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.df-game-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #ccfbf1;
    border-radius: 16px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f766e;
    transition: all 0.2s;
}

.df-game-tag:hover {
    background: #0f766e;
    color: #ffffff;
}

/* ============================================
   CONTENT / LEGAL PAGES
   ============================================ */

.df-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

.df-page h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #0f766e;
    margin-bottom: 8px;
}

.df-page .df-page-date {
    color: #94a3b8;
    font-size: 0.86rem;
    margin-bottom: 32px;
}

.df-page h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #134e4a;
    margin: 36px 0 14px;
    padding-left: 14px;
    border-left: 4px solid #f97316;
}

.df-page p {
    color: #475569;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.8;
}

.df-page ul {
    margin: 12px 0 20px 22px;
    list-style: disc;
}

.df-page ul li {
    color: #475569;
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.df-page strong { color: #134e4a; }

.df-page a {
    color: #0f766e;
    text-decoration: underline;
}

.df-faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: 0 1px 6px rgba(15, 118, 110, 0.05);
    border: 1px solid #e6f7f4;
}

.df-faq-item h3 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #134e4a;
    margin: 0 0 8px;
}

.df-faq-item p {
    margin: 0;
    color: #64748b;
}

/* ============================================
   FOOTER
   ============================================ */

.df-footer {
    background: #ffffff;
    padding: 48px 24px 24px;
    margin-top: 56px;
    border-top: 2px solid #ccfbf1;
}

.df-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.df-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.df-footer-brand p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.df-footer-col h4 {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f766e;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.df-footer-col a {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.2s;
}

.df-footer-col a:hover {
    color: #f97316;
    opacity: 1;
}

.df-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e6f7f4;
    font-size: 0.76rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.df-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: #0f766e;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
}

.df-scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
    background: #f97316;
}

.df-scroll-top:hover img {
    filter: brightness(0) invert(1);
}

.df-scroll-top img {
    width: 18px;
    height: 18px;
}

/* ============================================
   CHANNEL / CATEGORY PAGE
   ============================================ */

.df-channel-banner {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 60%, #2dd4bf 100%);
    padding: 36px 24px;
    text-align: center;
}

.df-channel-banner h1 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
}

.df-channel-banner p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

.df-channel-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    font-weight: 700;
}

/* Category tabs bar */
.df-channel-tabs {
    display: flex;
    gap: 6px;
    padding: 16px 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1280px;
    margin: 0 auto;
}

.df-channel-tabs::-webkit-scrollbar { display: none; }

.df-channel-tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    border-radius: 18px;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(15, 118, 110, 0.06);
    border: 1px solid #e6f7f4;
}

.df-channel-tab:hover {
    background: #ccfbf1;
    color: #0f766e;
}

.df-channel-tab.df-active {
    background: #0f766e;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
    border-color: #0f766e;
}

/* ============================================
   RESPONSIVE - Tablet
   ============================================ */

@media (max-width: 1024px) {
    .df-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .df-nav-pills { display: none; }
    .df-menu-btn { display: flex; }
    .df-mobile-nav { display: block; }

    .df-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .df-detail-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .df-detail-poster { width: 200px; }
    .df-detail-meta { justify-content: center; }

    .df-game-features { grid-template-columns: repeat(2, 1fr); }
    .df-gis-item { padding: 16px 8px; }
}

/* ============================================
   RESPONSIVE - Mobile
   ============================================ */

@media (max-width: 768px) {
    .df-topbar { padding: 10px 16px; }
    .df-brand-icon { width: 34px; height: 34px; }
    .df-brand-name { font-size: 1.25rem; }

    .df-container { padding: 0 16px; }

    .df-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .df-detail-banner { padding: 28px 0 36px; }
    .df-detail-poster { width: 160px; }
    .df-detail-info h1 { font-size: 1.4rem; }

    .df-iframe-box { height: 52vh; min-height: 340px; }

    .df-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .df-footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .df-channel-banner { padding: 28px 16px; }
    .df-channel-banner h1 { font-size: 1.3rem; }

    .df-scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }

    .df-game-info-strip { flex-wrap: wrap; }
    .df-gis-item { flex: 0 0 33.33%; padding: 14px 8px; }
    .df-gis-item:nth-child(4) { flex: 0 0 100%; }
    .df-game-features { grid-template-columns: 1fr 1fr; gap: 12px; }
    .df-gf-card { padding: 18px 12px; }
    .df-breadcrumb { padding: 12px 0 0; font-size: 0.72rem; }
}

@media (max-width: 480px) {
    .df-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .df-card-body .df-card-name { font-size: 0.72rem; }
    .df-card-body .df-card-desc { display: none; }
    .df-card-badge { font-size: 0.56rem; padding: 2px 7px; }
    .df-card-rating { font-size: 0.56rem; padding: 2px 6px; }
}

/* Legal pages mobile */
@media (max-width: 768px) {
    .df-page { padding: 28px 16px 48px; }
    .df-page h1 { font-size: 1.6rem; }
    .df-page h2 { font-size: 1.05rem; }
}
