﻿/* ==========================================
   Terddv Game Portal - Index Page Styles
   Bright & Friendly - Diverse Layouts
   ========================================== */

/* ---- Category Bubble Navigation ---- */
.gd-bubble-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.gd-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--gd-ease);
}

.gd-bubble-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--gd-shadow);
    transition: var(--gd-ease);
    border: 3px solid transparent;
}

.gd-bubble:hover .gd-bubble-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--gd-shadow-md);
}

.gd-bubble-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gd-text-mid);
    transition: var(--gd-ease);
}

.gd-bubble:hover .gd-bubble-label { color: var(--gd-text); }

.gd-bubble--blue .gd-bubble-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-color: #93c5fd; }
.gd-bubble--pink .gd-bubble-icon { background: linear-gradient(135deg, #fce7f3, #fbcfe8); border-color: #f9a8d4; }
.gd-bubble--green .gd-bubble-icon { background: linear-gradient(135deg, #dcfce7, #bbf7d0); border-color: #86efac; }
.gd-bubble--orange .gd-bubble-icon { background: linear-gradient(135deg, #ffedd5, #fed7aa); border-color: #fdba74; }
.gd-bubble--purple .gd-bubble-icon { background: linear-gradient(135deg, #ede9fe, #ddd6fe); border-color: #c4b5fd; }
.gd-bubble--teal .gd-bubble-icon { background: linear-gradient(135deg, #ccfbf1, #99f6e4); border-color: #5eead4; }

/* ---- Spotlight Hero ---- */
.gd-spotlight-hero {
    display: grid;
    grid-template-columns: 40% 1fr;
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius-xl);
    overflow: hidden;
    border: 1px solid var(--gd-border);
    margin-bottom: 36px;
    box-shadow: var(--gd-shadow-md);
    min-height: 280px;
}

.gd-spotlight-cover {
    position: relative;
    overflow: hidden;
}

.gd-spotlight-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gd-spotlight-hero:hover .gd-spotlight-cover img {
    transform: scale(1.04);
}

.gd-spotlight-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(160deg, var(--gd-bg-white) 0%, var(--gd-surface) 100%);
}

.gd-spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--gd-amber), var(--gd-coral));
    color: #fff;
    padding: 5px 16px;
    border-radius: var(--gd-radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gd-spotlight-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gd-text);
    line-height: 1.3;
}

.gd-spotlight-text {
    color: var(--gd-text-mid);
    font-size: 0.88rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gd-spotlight-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.gd-spotlight-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--gd-primary), var(--gd-purple));
    color: #fff;
    border-radius: var(--gd-radius-full);
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    transition: var(--gd-ease);
    box-shadow: 0 4px 14px rgba(74, 124, 247, 0.25);
}

.gd-spotlight-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 247, 0.35);
}

.gd-spotlight-meta {
    color: var(--gd-text-soft);
    font-size: 0.78rem;
}

/* ---- Carousel (Hot Picks) ---- */
.gd-carousel-wrap {
    position: relative;
    margin-bottom: 36px;
    overflow: hidden;
}

.gd-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.gd-carousel-track::-webkit-scrollbar { display: none; }

.gd-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gd-bg-white);
    border: 1px solid var(--gd-border);
    box-shadow: var(--gd-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gd-text-mid);
    z-index: 5;
    transition: var(--gd-ease);
    cursor: pointer;
}

.gd-carousel-arrow:hover {
    background: var(--gd-primary-light);
    border-color: var(--gd-primary-soft);
    color: var(--gd-primary);
}

.gd-carousel-prev { left: -16px; }
.gd-carousel-next { right: -16px; }

.gd-carousel-card {
    flex: 0 0 170px;
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius);
    overflow: hidden;
    border: 1px solid var(--gd-border);
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    position: relative;
    display: block;
}

.gd-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gd-shadow-md);
}

.gd-carousel-card .gd-game-thumb { aspect-ratio: 1 / 1; }

.gd-carousel-card .gd-game-body { padding: 10px 12px 12px; }
.gd-carousel-card .gd-game-name { font-size: 0.8rem; min-height: auto; -webkit-line-clamp: 1; }
.gd-carousel-card .gd-game-desc { font-size: 0.68rem; }

.gd-carousel-rank {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gd-primary), var(--gd-purple));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(74, 124, 247, 0.3);
}

/* ---- Fun Fact Banner ---- */
.gd-fun-fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 50%, #fff1f2 100%);
    border-radius: var(--gd-radius-lg);
    margin-bottom: 36px;
    border: 1px solid var(--gd-border);
    overflow: hidden;
}

.gd-fun-fact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    animation: gd-pulse 2s ease-in-out infinite;
}

@keyframes gd-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.gd-fun-fact-text {
    color: var(--gd-text-mid);
    font-size: 0.86rem;
    font-style: italic;
    line-height: 1.5;
}

/* ---- Mosaic Grid (Fresh Arrivals) ---- */
.gd-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gd-mosaic-grid .gd-game-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gd-mosaic-grid .gd-game-card:first-child .gd-game-thumb {
    aspect-ratio: 1 / 1;
}

.gd-mosaic-grid .gd-game-card:first-child .gd-game-name {
    font-size: 1rem;
    min-height: auto;
}

.gd-mosaic-grid .gd-game-card:first-child .gd-game-desc {
    -webkit-line-clamp: 3;
    font-size: 0.78rem;
}

.gd-mosaic-grid .gd-game-card:not(:first-child) .gd-game-thumb {
    aspect-ratio: 4 / 3;
}

/* ---- Game Roulette ---- */
.gd-roulette-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--gd-purple) 0%, var(--gd-coral) 100%);
    border-radius: var(--gd-radius-xl);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--gd-shadow-md);
    max-width: 100%;
}

.gd-roulette-card::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.gd-roulette-card::after {
    content: "";
    position: absolute;
    left: 40%;
    bottom: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.gd-roulette-left {
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 1;
    position: relative;
}

.gd-roulette-emoji {
    font-size: 2.8rem;
    animation: gd-wiggle 2.5s ease-in-out infinite;
}

.gd-roulette-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gd-roulette-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.84rem;
}

.gd-roulette-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--gd-radius-full);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--gd-ease);
    z-index: 1;
    position: relative;
    white-space: nowrap;
}

.gd-roulette-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.06);
}

.gd-roulette-spin {
    font-size: 1.4rem;
    animation: gd-spin-slow 4s linear infinite;
}

@keyframes gd-spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- Horizontal Scroll Row (Puzzle Zone) ---- */
.gd-scroll-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--gd-border) transparent;
}

.gd-scroll-row::-webkit-scrollbar { height: 5px; }
.gd-scroll-row::-webkit-scrollbar-track { background: transparent; }
.gd-scroll-row::-webkit-scrollbar-thumb { background: var(--gd-border); border-radius: 4px; }

.gd-scroll-card {
    flex: 0 0 160px;
    position: relative;
    border-radius: var(--gd-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    border: 1px solid var(--gd-border);
    display: block;
}

.gd-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gd-shadow-md);
}

.gd-scroll-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gd-scroll-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
}

.gd-scroll-card-name {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-scroll-card-tag {
    font-size: 0.62rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Rank Grid (Boys Arena) ---- */
.gd-rank-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gd-rank-card {
    position: relative;
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius);
    overflow: hidden;
    border: 1px solid var(--gd-border);
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    display: block;
}

.gd-rank-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gd-shadow-md);
}

.gd-rank-card .gd-game-thumb { aspect-ratio: 1 / 1; }

.gd-rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gd-primary), var(--gd-teal));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 0;
    z-index: 4;
}

.gd-rank-card .gd-game-body { padding: 10px 12px 12px; }
.gd-rank-card .gd-game-name { font-size: 0.8rem; min-height: auto; }
.gd-rank-card .gd-game-desc { display: none; }

/* ---- Feature Row (Girls Paradise) ---- */
.gd-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gd-feature-card {
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gd-border);
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    display: block;
    box-shadow: var(--gd-shadow-sm);
}

.gd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gd-shadow-md);
}

.gd-feature-card .gd-game-thumb { aspect-ratio: 16 / 10; }

.gd-feature-card .gd-game-body {
    padding: 16px 18px 18px;
}

.gd-feature-card .gd-game-name {
    font-size: 0.95rem;
    min-height: auto;
    margin-bottom: 6px;
}

.gd-feature-card .gd-game-desc {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gd-feature-ribbon {
    position: absolute;
    top: 12px;
    right: -28px;
    background: linear-gradient(135deg, var(--gd-coral), var(--gd-purple));
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 32px;
    transform: rotate(45deg);
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Showcase Grid (Staff Picks) ---- */
.gd-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gd-showcase-card {
    position: relative;
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gd-border);
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    display: block;
    box-shadow: var(--gd-shadow-sm);
}

.gd-showcase-card:hover {
    transform: scale(1.02);
    box-shadow: var(--gd-shadow-md);
}

.gd-showcase-card .gd-game-thumb { aspect-ratio: 16 / 9; }

.gd-showcase-body {
    padding: 14px 16px 16px;
    position: relative;
}

.gd-showcase-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gd-text);
    margin-bottom: 4px;
}

.gd-showcase-desc {
    color: var(--gd-text-soft);
    font-size: 0.74rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gd-showcase-star {
    position: absolute;
    top: -14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gd-amber), var(--gd-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(245, 166, 35, 0.35);
}

/* ---- List Layout (Strategy Corner) ---- */
.gd-list-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gd-list-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--gd-bg-white);
    border-radius: var(--gd-radius);
    border: 1px solid var(--gd-border);
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    overflow: hidden;
    max-width: 100%;
}

.gd-list-card:hover {
    box-shadow: var(--gd-shadow);
    border-color: var(--gd-primary-soft);
    transform: translateX(4px);
}

.gd-list-card img {
    width: 80px;
    height: 80px;
    border-radius: var(--gd-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.gd-list-card-body {
    flex: 1;
    min-width: 0;
}

.gd-list-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gd-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gd-list-card-desc {
    color: var(--gd-text-soft);
    font-size: 0.76rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gd-list-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gd-list-card-score {
    background: var(--gd-amber-light);
    color: var(--gd-amber);
    padding: 4px 10px;
    border-radius: var(--gd-radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
}

.gd-list-card-arrow {
    color: var(--gd-text-soft);
    font-size: 1.1rem;
    transition: var(--gd-ease);
}

.gd-list-card:hover .gd-list-card-arrow {
    color: var(--gd-primary);
    transform: translateX(3px);
}

/* ---- Bubble Grid (Casual Lounge) ---- */
.gd-bubble-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.gd-bubble-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--gd-ease);
    display: block;
}

.gd-bubble-card:hover { transform: translateY(-4px); }

.gd-bubble-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gd-border);
    margin-bottom: 8px;
    transition: var(--gd-ease);
    box-shadow: var(--gd-shadow-sm);
}

.gd-bubble-card:hover .gd-bubble-card-img {
    border-color: var(--gd-purple);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
}

.gd-bubble-card-name {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--gd-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Section Head (refreshed) ---- */
.gd-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gd-border-light);
}

.gd-section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gd-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--gd-radius-full);
    background: var(--gd-primary-light);
    text-decoration: none;
    transition: var(--gd-ease);
}

.gd-section-more:hover {
    background: var(--gd-primary-soft);
}

/* ---- Loading State ---- */
.gd-loading {
    text-align: center;
    padding: 36px 20px;
    color: var(--gd-text-soft);
    font-size: 0.86rem;
}

.gd-loading::after {
    content: "...";
    animation: gd-dots 1.5s steps(4, end) infinite;
}

@keyframes gd-dots {
    0%, 20% { content: ""; }
    40% { content: "."; }
    60% { content: ".."; }
    80%, 100% { content: "..."; }
}

@keyframes gd-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-12deg); }
    75% { transform: rotate(12deg); }
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 1024px) {
    .gd-spotlight-hero { grid-template-columns: 35% 1fr; }
    .gd-mosaic-grid { grid-template-columns: repeat(3, 1fr); }
    .gd-mosaic-grid .gd-game-card:first-child { grid-column: span 1; grid-row: span 1; }
    .gd-mosaic-grid .gd-game-card:first-child .gd-game-thumb { aspect-ratio: 4 / 5; }
    .gd-rank-grid { grid-template-columns: repeat(3, 1fr); }
    .gd-feature-row { grid-template-columns: repeat(2, 1fr); }
    .gd-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .gd-bubble-grid { grid-template-columns: repeat(4, 1fr); }
    .gd-spotlight-info { padding: 24px; }
    .gd-spotlight-name { font-size: 1.3rem; }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 640px) {
    .gd-bubble-nav { gap: 8px; margin-bottom: 24px; }
    .gd-bubble-icon { width: 44px; height: 44px; font-size: 1.15rem; }
    .gd-bubble-label { font-size: 0.64rem; }

    .gd-spotlight-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 28px;
    }
    .gd-spotlight-cover { max-height: 180px; }
    .gd-spotlight-info { padding: 18px; gap: 10px; }
    .gd-spotlight-name { font-size: 1.15rem; }
    .gd-spotlight-text { font-size: 0.82rem; -webkit-line-clamp: 2; }
    .gd-spotlight-actions { flex-wrap: wrap; gap: 10px; }
    .gd-spotlight-play { padding: 9px 22px; font-size: 0.82rem; }

    .gd-carousel-wrap { margin-bottom: 28px; }
    .gd-carousel-prev { left: 4px; }
    .gd-carousel-next { right: 4px; }
    .gd-carousel-arrow { width: 30px; height: 30px; font-size: 0.85rem; }
    .gd-carousel-card { flex: 0 0 140px; }
    .gd-carousel-rank { width: 22px; height: 22px; font-size: 0.62rem; }

    .gd-fun-fact { padding: 14px 16px; gap: 10px; margin-bottom: 28px; }
    .gd-fun-fact-icon { font-size: 1.3rem; flex-shrink: 0; }
    .gd-fun-fact-text { font-size: 0.78rem; }

    .gd-mosaic-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gd-mosaic-grid .gd-game-card:first-child .gd-game-name { font-size: 0.85rem; }
    .gd-mosaic-grid .gd-game-card:first-child .gd-game-desc { font-size: 0.72rem; }
    .gd-rank-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gd-feature-row { grid-template-columns: 1fr; gap: 14px; }
    .gd-showcase-grid { grid-template-columns: 1fr; gap: 14px; }
    .gd-bubble-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .gd-roulette-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 18px 16px;
    }
    .gd-roulette-left { flex-direction: column; gap: 8px; }
    .gd-roulette-emoji { font-size: 2.2rem; }
    .gd-roulette-title { font-size: 1.05rem; }
    .gd-roulette-desc { font-size: 0.78rem; }
    .gd-roulette-btn { padding: 10px 24px; font-size: 0.85rem; }

    .gd-scroll-row { gap: 10px; }
    .gd-scroll-card { flex: 0 0 130px; }
    .gd-scroll-card img { height: 150px; }
    .gd-scroll-card-name { font-size: 0.72rem; }

    .gd-list-layout { gap: 10px; }
    .gd-list-card { gap: 12px; padding: 10px; }
    .gd-list-card img { width: 60px; height: 60px; border-radius: 8px; flex-shrink: 0; }
    .gd-list-card-body { min-width: 0; }
    .gd-list-card-name { font-size: 0.8rem; }
    .gd-list-card-desc { display: none; }
    .gd-list-card-meta { flex-shrink: 0; }
    .gd-list-card-score { padding: 3px 8px; font-size: 0.68rem; }

    .gd-section-head { margin-bottom: 14px; padding-bottom: 8px; }
    .gd-section-title { font-size: 0.95rem; }
    .gd-section-more { font-size: 0.72rem; padding: 4px 10px; }
}
