/* ============================================================
   Wkek - Twilight Aurora Theme (v2.0)
   A refined, modern UI inspired by the night sky and starlight.
   Primary palette: deep indigo + cyan + warm gold accents
   ============================================================ */

:root {
    --color-bg: #F7F7FB;
    --color-bg-soft: #FDFCFF;
    --color-surface: #FFFFFF;
    --color-surface-2: #F2F1F8;
    --color-text: #1B1A3A;
    --color-text-soft: #4A4A6A;
    --color-text-muted: #7A7A95;
    --color-border: #E6E5F0;
    --color-border-strong: #D1D0E0;

    --color-primary: #4338CA;
    --color-primary-deep: #1E1B4B;
    --color-primary-soft: #6366F1;
    --color-primary-50: #EEF2FF;
    --color-primary-100: #E0E7FF;

    --color-accent: #0EA5E9;
    --color-accent-deep: #0369A1;
    --color-accent-50: #E0F2FE;

    --color-gold: #D97706;
    --color-gold-soft: #FBBF24;
    --color-gold-50: #FEF3C7;

    --color-success: #10B981;
    --color-danger: #EF4444;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-1: 0 1px 2px rgba(27, 26, 58, 0.04), 0 1px 4px rgba(27, 26, 58, 0.04);
    --shadow-2: 0 4px 12px rgba(67, 56, 202, 0.08);
    --shadow-3: 0 10px 30px rgba(67, 56, 202, 0.10);
    --shadow-4: 0 20px 50px rgba(27, 26, 58, 0.16);

    --font-base: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    max-width: 660px;
    font-family: var(--font-base);
    margin: 0 auto;
    padding: 0;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   NAVBAR — Deep twilight gradient with rounded icon + title
   ============================================================ */
.ufbgcx-navbar {
    max-width: 660px;
    display: flex;
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 45%, #4338CA 100%);
    color: #FFFFFF;
    height: 72px;
    z-index: 50;
    box-shadow: 0 6px 28px rgba(30, 27, 75, 0.35), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.ufbgcx-navbar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ufbgcx-navbar::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ufbgcx-navbar > * {
    position: relative;
    z-index: 1;
}

.ufbgcx-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 4px 0;
    transition: opacity 0.3s ease;
}

.ufbgcx-nav-logo:hover {
    opacity: 0.92;
}

.nav-logo-icon {
    height: 42px;
    width: 42px;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18), 0 6px 18px rgba(14, 165, 233, 0.45);
    background: linear-gradient(135deg, #0EA5E9, #1E1B4B);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ufbgcx-nav-logo:hover .nav-logo-icon {
    transform: rotate(-6deg) scale(1.05);
}

.nav-site-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(14, 165, 233, 0.35);
    background: linear-gradient(135deg, #FFFFFF 0%, #C7D2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ufbgcx-nav-blog-btn {
    display: flex;
    align-items: center;
}

.ufbgcx-nav-blog-btn a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.ufbgcx-nav-blog-btn a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.35);
}

.ufbgcx-nav-blog-btn a svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   CATEGORY NAV
   ============================================================ */
.ufbgcx-category-nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ufbgcx-category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav-item {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-nav-item:hover {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #1B1A3A;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
    border-color: transparent;
}

.category-nav-item:active {
    transform: translateY(-1px) scale(1.02);
}

#nav-open, #nav-close {
    position: relative;
    cursor: pointer;
}

#nav-open { height: 3vh; }
#nav-close { height: 4vh; }

.ufbgcx-menu {
    display: flex;
    width: 30%;
    flex-direction: column;
    gap: 35px;
    background: #FFFFFF;
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 6vh;
    right: 0;
    padding: 35px 1rem;
    z-index: 10;
    margin: 0;
    list-style-type: none;
    display: none;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #E2E8F0;
}

.ufbgcx-menu li {
    position: relative;
}

.ufbgcx-menu.open {
    display: flex;
    flex-direction: column;
}

.ufbgcx-menu.open #nav-open { display: none; }
.ufbgcx-menu.open #nav-close { display: block; }

.ufbgcx-menu li a {
    font-size: 1rem;
    color: #1B1A3A;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.ufbgcx-menu li a:hover {
    color: var(--color-primary);
    background: var(--color-primary-50);
    transform: translateX(5px);
}

#ufbgcx-menu {
    animation: fadeIn 0.1s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0.3; width: 0%; }
    100% { opacity: 1; width: 30%; }
}

/* ============================================================
   GAME ITEM (base card)
   ============================================================ */
.ufbgcx-game-item {
    border-radius: var(--radius-lg);
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    padding: 14px;
    box-shadow: var(--shadow-2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.ufbgcx-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    opacity: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.ufbgcx-game-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
    border-color: var(--color-primary-100);
}

.ufbgcx-game-item a {
    text-decoration: none;
    color: inherit;
}

.ufbgcx-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 2px 8px rgba(27, 26, 58, 0.08);
    transition: all 0.35s ease;
    border: 1px solid var(--color-border);
}

.ufbgcx-game-cover img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 22px rgba(67, 56, 202, 0.18);
    border-color: var(--color-primary-soft);
}

.ufbgcx-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 1px solid var(--color-border);
}

.ufbgcx-game-item h3 {
    color: var(--color-text);
    margin: 6px 0;
    font-size: 0.78rem;
}

.ufbgcx-game-item p {
    color: #000;
    margin: 0;
    font-size: 1rem;
}

.ufbgcx-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 6px 4px 0;
}

.ufbgcx-game-info p {
    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: 0.9rem;
    color: var(--color-text);
    font-weight: 700;
}

.ufbgcx-game-info p:last-child {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    border-radius: 2px;
    right: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* ============================================================
   SECTION CONTAINERS
   ============================================================ */
.ufbgcx-recomed-div {
    margin: 0 10px;
    border-radius: 5px;
    padding: 10px 0;
}

.ufbgcx-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 5px;
    padding: 10px 0;
}

.ufbgcx-gameplay-instructions-section {
    margin: 20px 20px 10px 20px;
    border-radius: var(--radius-md);
    padding: 10px 0;
}

.ufbgcx-gameplay-instructions-content {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--color-border);
    padding: 26px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.ufbgcx-gameplay-instructions-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4338CA 0%, #0EA5E9 50%, #FBBF24 100%);
}

.gameplay-instruction-item {
    margin-bottom: 20px;
    padding: 16px 16px 16px 52px;
    background: var(--color-primary-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-primary-100);
    box-shadow: 0 1px 3px rgba(67, 56, 202, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.gameplay-instruction-item:hover {
    box-shadow: var(--shadow-2);
    border-color: var(--color-primary-soft);
    transform: translateX(4px);
    background: #FFFFFF;
}

.gameplay-instruction-item:last-child { margin-bottom: 0; }

.gameplay-instruction-item::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FBBF24 0%, #4338CA 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.18);
}

.instruction-title {
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.instruction-content {
    color: var(--color-text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--color-primary);
    margin-bottom: 0;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4338CA 0%, #0EA5E9 100%);
}

.section-title p {
    color: var(--color-text);
    font-size: 1.15rem;
    margin: 14px 0;
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    padding-left: 12px;
}

/* ============================================================
   RECOMMEND TITLE (Category section header)
   ============================================================ */
.ufbgcx-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: visible;
    border: 1px solid var(--color-border);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.ufbgcx-common-recommend-title:hover {
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
    border-color: var(--color-primary-100);
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(67, 56, 202, 0.18);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-icon:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 10px 24px rgba(67, 56, 202, 0.28);
}

.badge-icon svg {
    fill: #FFFFFF;
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.badge-icon-pink   { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); }
.badge-icon-purple { background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%); }
.badge-icon-orange { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }
.badge-icon-blue   { background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%); }
.badge-icon-green  { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.badge-icon-yellow { background: linear-gradient(135deg, #FBBF24 0%, #FCD34D 100%); }
.badge-icon-red    { background: linear-gradient(135deg, #EF4444 0%, #F87171 100%); }
.badge-indigo      { background: linear-gradient(135deg, #1E1B4B 0%, #4338CA 100%); }

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    color: var(--color-text);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.badge-subtitle {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.badge-more-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--color-primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(67, 56, 202, 0.10);
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid var(--color-primary-100);
}

.badge-more-btn:hover {
    background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
    color: #FFFFFF;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(67, 56, 202, 0.30);
    border-color: transparent;
}

.badge-more-btn:active { transform: translateX(2px) scale(1.02); }

.badge-more-btn svg { transition: transform 0.3s ease; }
.badge-more-btn:hover svg { transform: scale(1.2); }

/* ============================================================
   RECOMMEND CONTENT GRIDS
   ============================================================ */
.ufbgcx-common-recommend-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.ufbgcx-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.ufbgcx-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 20px;
    background: linear-gradient(180deg, #1B1A3A 0%, #1E1B4B 100%);
    color: #C7D2FE;
    text-align: center;
    margin-top: 40px;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 30px rgba(27, 26, 58, 0.20);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24, #4338CA);
}

.ufbgcx-footer-links a {
    font-size: 0.78em;
    color: #C7D2FE;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.ufbgcx-footer-links a:hover {
    color: #FBBF24;
    background: rgba(251, 191, 36, 0.08);
    transform: translateY(-1px);
}

footer .ufbgcx-copyright {
    font-size: 0.8em;
    color: #8B8DAB;
    margin: 10px 0;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
#back-top, #back-home {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#flow {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px;
    gap: 12px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(67, 56, 202, 0.20);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    z-index: 1000;
}

#flow:hover {
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(67, 56, 202, 0.28);
    transform: translateY(-3px);
}

#back-top, #back-home {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: none;
    border-radius: 10px;
    background: var(--color-primary-50);
    padding: 6px;
}

#back-top:hover, #back-home:hover {
    transform: scale(1.08);
    background: var(--color-primary-100);
}

/* ============================================================
   GAME DETAIL — Hero section (light, refined)
   ============================================================ */
.ufbgcx-game-detail-title {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px 2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2);
    margin: 20px;
    border: 1px solid var(--color-border);
}

.ufbgcx-game-detail-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.game-detail-wrapper {
    margin: 20px;
    position: relative;
}

.game-detail-hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    min-height: 520px;
}

.game-detail-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    z-index: 10;
}

.game-detail-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.game-detail-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-detail-hero-section:hover .game-detail-image-container img {
    transform: scale(1.05);
}

.image-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.game-detail-hero-section:hover .image-shine-effect {
    left: 100%;
}

.game-detail-content-container {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 5;
}

.game-detail-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #1B1A3A;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.30);
    width: fit-content;
}

.game-detail-main-title {
    color: var(--color-text);
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.15;
    background: linear-gradient(135deg, #1B1A3A 0%, #4338CA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-detail-main-desc {
    color: var(--color-text-soft);
    font-size: 1.12rem;
    margin: 0;
    line-height: 1.85;
    font-weight: 400;
}

.game-detail-cta-section {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.game-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
    border-radius: 14px;
    padding: 18px 42px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(67, 56, 202, 0.30);
    border: 1px solid #4338CA;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-detail-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.game-detail-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(67, 56, 202, 0.40);
}

.game-detail-cta-btn:hover::before { left: 100%; }

.game-detail-cta-btn:active { transform: translateY(-1px); }

.game-detail-cta-btn svg { transition: transform 0.3s ease; }
.game-detail-cta-btn:hover svg { transform: scale(1.1); }

.game-detail-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    border-radius: 14px;
    padding: 16px 28px;
    color: var(--color-primary);
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(67, 56, 202, 0.08);
}

.game-detail-share-btn:hover {
    background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(67, 56, 202, 0.30);
    border-color: transparent;
}

.game-detail-share-btn svg { transition: transform 0.3s ease; }
.game-detail-share-btn:hover svg { transform: scale(1.1); }

.game-detail-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-soft);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-item svg { color: var(--color-primary); }

/* ============================================================
   LEGACY GAME DETAIL CONTAINERS (kept for templates)
   ============================================================ */
.game-detail-container {
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
}

.game-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    z-index: 10;
}

.game-detail-main-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 2px;
    margin: 10px;
}

.game-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
    transition: transform 0.6s ease;
}

.game-detail-container:hover .game-detail-main-image img { transform: scale(1.02); }

.image-glow-effect {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle at center, rgba(67, 56, 202, 0.20), transparent 70%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.game-detail-info-panel {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.info-panel-header {
    position: relative;
    padding-bottom: 20px;
}

.info-panel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9);
    border-radius: 2px;
}

.game-detail-title-text {
    color: var(--color-text);
    font-size: 2.6rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.game-detail-description {
    color: var(--color-text-soft);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.8;
    font-weight: 400;
}

.game-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.game-detail-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
    border-radius: 14px;
    padding: 18px 40px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.22rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(67, 56, 202, 0.30);
    border: 1px solid #4338CA;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-detail-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(67, 56, 202, 0.40);
}

.game-detail-play-btn:active { transform: translateY(-1px); }

.game-detail-play-btn svg { transition: transform 0.3s ease; }
.game-detail-play-btn:hover svg { transform: scale(1.1); }

.game-detail-hero {
    margin: 20px;
    background: linear-gradient(135deg, #1B1A3A 0%, #312E81 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 32px rgba(30, 27, 75, 0.30);
    border: 1px solid rgba(99, 102, 241, 0.20);
    overflow: hidden;
    position: relative;
}

.game-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    z-index: 10;
}

.game-detail-hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.game-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.game-detail-hero:hover .game-detail-hero-image img { transform: scale(1.03); }

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(27, 26, 58, 0.95) 0%, rgba(27, 26, 58, 0.70) 50%, transparent 100%);
    pointer-events: none;
}

.game-detail-hero-content {
    padding: 30px 40px 40px;
    position: relative;
    z-index: 5;
}

.game-detail-hero-content .game-detail-title-text { color: #FFFFFF; }
.game-detail-hero-content .game-detail-description { color: #C7D2FE; }

.game-detail-iframe { width: 100%; }

.ufbgcx-game-detail-img {
    width: 100%;
    position: relative;
}

.ufbgcx-game-detail-img img {
    width: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.30);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ufbgcx-game-detail-img::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: radial-gradient(circle at center, rgba(67, 56, 202, 0.20), transparent 70%);
    border-radius: 4px;
    filter: blur(15px);
    z-index: 0;
    opacity: 0.6;
}

.ufbgcx-detail-info {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 20px;
    order: 1;
}

.ufbgcx-detail-info h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.ufbgcx-detail-info p {
    color: var(--color-text-soft);
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.6;
    font-weight: 400;
}

.ufbgcx-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

.ufbgcx-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    padding: 26px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--color-border);
    position: relative;
}

.ufbgcx-game-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9, #FBBF24);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.ufbgcx-game-instructions p {
    color: var(--color-text-soft);
    line-height: 1.6rem;
    font-size: 1rem;
    font-weight: 400;
}

.ufbgcx-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    border-radius: 14px;
    padding: 20px 40px;
    width: fit-content;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.30);
    border: 1px solid #F59E0B;
    position: relative;
    overflow: hidden;
    margin: 30px auto 0;
    transition: all 0.3s ease;
}

.ufbgcx-game-gameplay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.40);
}

.ufbgcx-game-gameplay-button img {
    width: 60px;
    height: 60px;
    transition: all 0.3s ease;
}

.ufbgcx-game-gameplay-button:hover img { transform: scale(1.05); }

.ufbgcx-game-gameplay-button p {
    color: #1B1A3A;
    margin: 0 15px 0 0;
    font-size: 1.25rem;
    font-weight: 800;
}

.ufbgcx-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
}

#iframe-menu-btn  {
    margin-top: 20px;
    margin-left: 60px;
    position: absolute;
    height: 40px;
    width: 40px;
}

#iframe-back-btn {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    height: 50px;
    width: 50px;
}

/* ============================================================
   LEGAL / NEWS DETAIL PAGE
   ============================================================ */
.ufbgcx-news-detail {
    color: var(--color-text);
    text-align: start;
    padding: 2.5rem;
    margin-top: 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFCFF 100%);
    border-radius: var(--radius-xl);
    margin-left: 20px;
    margin-right: 20px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-2);
    line-height: 1.85;
    position: relative;
    overflow: hidden;
}

.ufbgcx-news-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4338CA 0%, #0EA5E9 50%, #FBBF24 100%);
}

.ufbgcx-news-detail h3 {
    color: var(--color-text);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.ufbgcx-news-detail h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4338CA, #0EA5E9);
}

.ufbgcx-news-detail h4 {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 15px;
    position: relative;
}

.ufbgcx-news-detail h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #4338CA 0%, #0EA5E9 100%);
    border-radius: 2px;
}

.ufbgcx-news-detail p {
    color: var(--color-text-soft);
    font-size: 1.02rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.ufbgcx-news-detail strong {
    color: var(--color-text);
    font-weight: 700;
}

.ufbgcx-news-detail ul, .ufbgcx-news-detail ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    background: var(--color-primary-50);
    padding: 1.2rem 1.2rem 1.2rem 2.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--color-primary);
}

.ufbgcx-news-detail li {
    color: var(--color-text-soft);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.ufbgcx-news-detail ol li {
    padding-left: 8px;
}

.ufbgcx-news-detail a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: 600;
}

.ufbgcx-news-detail a:hover {
    color: var(--color-primary-soft);
    border-bottom-color: var(--color-primary-soft);
}

.ufbgcx-news-detail img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.ufbgcx-news-detail em {
    color: var(--color-text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .ufbgcx-news-detail {
        padding: 1.5rem;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: var(--radius-lg);
    }
    .ufbgcx-news-detail h3 { font-size: 1.5rem; }
    .ufbgcx-news-detail h4 { font-size: 1.15rem; }
    .ufbgcx-news-detail p, .ufbgcx-news-detail li { font-size: 1rem; }
}

@media (max-width: 480px) {
    .ufbgcx-news-detail {
        padding: 1.2rem;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 16px;
    }
    .ufbgcx-news-detail h3 { font-size: 1.3rem; }
    .ufbgcx-news-detail h4 { font-size: 1.05rem; margin-top: 1.5rem; }
    .ufbgcx-news-detail p, .ufbgcx-news-detail li { font-size: 0.95rem; line-height: 1.7; }
}

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--color-bg);
    min-height: 100vh;
    padding: 2rem 0;
}

.error-page h1 {
    font-size: 2em;
    color: var(--color-primary);
    background: linear-gradient(135deg, #1B1A3A, #4338CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page p {
    font-size: 1.3em;
    color: var(--color-text-soft);
    padding: 1rem;
}

.error-page img {
    width: 100%;
    max-width: 480px;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
}

/* ============================================================
   GAME MARKS / BADGES
   ============================================================ */
.ufbgcx-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0 0 10px 10px;
    top: -10px;
    left: -10px;
}

.ufbgcx-game-mark img {
    width: 50px;
    height: 25px;
}

.ufbgcx-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0 0 10px 10px;
    top: 0;
    left: -10px;
}

.ufbgcx-game-new img {
    width: 50px;
    height: 50px;
}

.ufbgcx-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0 10px;
}

#ufbgcx-game-body { margin-top: 30px; }

.iframe-menu {
    display: flex;
    width: 60%;
    flex-direction: column;
    gap: 35px;
    background: linear-gradient(180deg, #1B1A3A 0%, #312E81 100%);
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: 8;
    margin: 0;
    list-style-type: none;
    display: none;
    padding: 10px 10px;
    box-shadow: -5px 0 15px rgba(30, 27, 75, 0.30);
    border-left: 1px solid rgba(99, 102, 241, 0.30);
}

.iframe-menu.open {
    display: flex;
    flex-direction: column;
}

.iframe-menu li a {
    font-size: 1rem;
    color: #C7D2FE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.iframe-menu li a:hover {
    color: #FBBF24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.30);
}

.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: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.iframe-list-item a p {
    margin: 0 20px;
    position: relative;
    color: #FFFFFF;
}

.iframe-list-item-close a {
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: end;
    align-items: center;
}

.iframe-list-item-close img {
    margin: 0;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

#iframe-close-btn {
    right: 0;
    top: 0;
}

/* ============================================================
   TOUCH / HOVER FEEDBACK
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
    .ufbgcx-game-item:active {
        transform: translateY(-3px) scale(0.98);
        box-shadow: 0 0 20px rgba(67, 56, 202, 0.40);
    }
    .ufbgcx-game-cover img:active {
        transform: scale(1.05);
        filter: saturate(1.3) brightness(1.1);
    }
    .recommend-item-btn:active {
        transform: translateY(-2px) scale(0.95);
        box-shadow: 0 0 15px rgba(67, 56, 202, 0.40);
    }
    #back-top:active, #back-home:active { transform: scale(0.9); }
    .ufbgcx-common-recommend-title:active { transform: translateY(-2px); }
    .badge-icon:active { transform: scale(1.05); }
    .badge-more-btn:active { transform: translateX(3px) scale(1.05); }
}

@media (max-width: 768px) {
    .ufbgcx-common-recommend-title { padding: 12px 14px; margin-bottom: 12px; }
    .badge-icon { width: 42px; height: 42px; border-radius: 12px; }
    .badge-icon svg { width: 20px; height: 20px; }
    .badge-title { font-size: 1.4rem; }
    .badge-subtitle { font-size: 0.75rem; }
    .badge-more-btn { width: 36px; height: 36px; border-radius: 10px; }
    .badge-more-btn svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
    .ufbgcx-common-recommend-title { padding: 10px 12px; margin-bottom: 10px; border-radius: 16px; }
    .badge-card { gap: 10px; }
    .badge-icon { width: 38px; height: 38px; border-radius: 10px; }
    .badge-icon svg { width: 18px; height: 18px; }
    .badge-title { font-size: 1.25rem; }
    .badge-subtitle { font-size: 0.7rem; }
    .badge-more-btn { width: 32px; height: 32px; border-radius: 8px; }
    .badge-more-btn svg { width: 16px; height: 16px; }
}

.ufbgcx-game-item,
.recommend-item-btn,
.ufbgcx-common-recommend-title,
.ufbgcx-game-gameplay-button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

html { scroll-behavior: smooth; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .game-detail-wrapper { margin: 15px; }
    .game-detail-hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: var(--radius-xl);
    }
    .game-detail-image-container { min-height: 320px; height: 320px; }
    .game-detail-content-container { padding: 35px 30px; gap: 20px; }
    .detail-badge { font-size: 0.7rem; padding: 5px 14px; }
    .game-detail-main-title { font-size: 2.2rem; }
    .game-detail-main-desc { font-size: 1rem; line-height: 1.7; }
    .game-detail-cta-section { gap: 12px; }
    .game-detail-cta-btn { padding: 16px 32px; font-size: 1.15rem; width: 100%; justify-content: center; }
    .game-detail-share-btn { padding: 14px 24px; font-size: 1rem; width: 100%; justify-content: center; }
    .game-detail-stats { gap: 18px; padding-top: 12px; }
    .stat-item { font-size: 0.85rem; }
    .game-detail-hero { margin: 15px; border-radius: 20px; }
    .game-detail-hero-image { height: 280px; }
    .game-detail-hero-content { padding: 20px 25px 30px; }
    .game-detail-title-text { font-size: 1.8rem; }
    .game-detail-description { font-size: 0.95rem; margin-bottom: 25px; }
    .game-detail-play-btn { padding: 14px 28px; font-size: 1.05rem; }
    .game-detail-play-btn svg { width: 24px; height: 24px; }
    .game-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 15px;
        border-radius: 20px;
    }
    .game-detail-main-image { min-height: 300px; margin: 10px; }
    .game-detail-info-panel { padding: 0 30px 30px; gap: 20px; }
    .info-panel-header::after { width: 60px; height: 3px; }
    .game-detail-title-text { font-size: 2rem; }
    .game-detail-description { font-size: 1rem; line-height: 1.6; }
    .game-detail-play-btn { padding: 16px 32px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .game-detail-hero { margin: 10px; border-radius: 16px; }
    .game-detail-hero-image { height: 220px; }
    .game-detail-hero-content { padding: 15px 20px 25px; }
    .game-detail-title-text { font-size: 1.5rem; }
    .game-detail-description { font-size: 0.9rem; margin-bottom: 20px; }
    .game-detail-play-btn { padding: 12px 24px; font-size: 1rem; width: 100%; justify-content: center; }
    .game-detail-container { margin: 10px; border-radius: 16px; }
    .game-detail-main-image { min-height: 250px; margin: 8px; }
    .game-detail-info-panel { padding: 0 20px 25px; gap: 15px; }
    .info-panel-header::after { width: 50px; height: 3px; }
    .game-detail-title-text { font-size: 1.6rem; }
    .game-detail-description { font-size: 0.9rem; line-height: 1.5; }
    .game-detail-actions { flex-direction: column; }
    .game-detail-play-btn { padding: 14px 28px; font-size: 1rem; width: 100%; justify-content: center; }
}
