:root {
    --primary-main: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --primary-contrast: #FFFFFF;
    --secondary-main: #06B6D4;
    --secondary-light: #22D3EE;
    --secondary-dark: #0891B2;
    --secondary-contrast: #FFFFFF;
    --accent-gold: #F59E0B;
    --accent-amber: #FBBF24;
    --accent-emerald: #10B981;
    --accent-coral: #F43F5E;
    --bg-default: #F8FAFC;
    --bg-paper: #FFFFFF;
    --bg-surface: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border-light: rgba(226, 232, 240, 0.9);
    --border-interactive: rgba(99, 102, 241, 0.35);
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 10px 25px -5px rgba(99, 102, 241, 0.12), 0 8px 10px -6px rgba(99, 102, 241, 0.08);
    --shadow-hover: 0 20px 35px -10px rgba(99, 102, 241, 0.25), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.overnova-quest-theme {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.text-muted {
    color: #64748B !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====  ===== */
.overnova-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    z-index: 1030;
}

.overnova-header .navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #FFFFFF;
}

.overnova-header .header-logo {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.overnova-header .brand-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.2;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.overnova-header .navbar-nav {
    gap: 0.25rem;
}

.overnova-header .nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.overnova-header .nav-link:hover,
.overnova-header .nav-link:focus {
    color: #4F46E5;
    background-color: #F1F5F9;
}

.overnova-header .nav-link.active {
    color: #4F46E5;
    font-weight: 700;
    background-color: rgba(99, 102, 241, 0.08);
}

.overnova-header .custom-toggler {
    border: 1px solid rgba(226, 232, 240, 0.9);
    background-color: #F8FAFC;
    color: #0F172A;
    font-size: 1.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.overnova-header .custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    outline: none;
}

.overnova-header .custom-toggler .toggler-close-icon {
    display: none;
}

.overnova-header .custom-toggler[aria-expanded="true"] .toggler-open-icon {
    display: none;
}

.overnova-header .custom-toggler[aria-expanded="true"] .toggler-close-icon {
    display: inline-block;
}

.overnova-header .header-cta-btn {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: none;
    box-shadow: 0 6px 16px -2px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.overnova-header .header-cta-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -2px rgba(99, 102, 241, 0.55);
    filter: brightness(1.05);
}

.overnova-header .header-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .overnova-header .navbar-collapse {
        background-color: #FFFFFF;
        border-top: 1px solid rgba(226, 232, 240, 0.9);
        padding: 1rem 0;
        margin-top: 0.75rem;
    }

    .overnova-header .nav-link {
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
        border-radius: 8px;
    }

    .overnova-header .header-cta-wrapper {
        border-top: 1px dashed rgba(226, 232, 240, 0.9);
        margin-top: 0.75rem;
    }
}

/* =====  ===== */
.overnova-hero-section {
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, rgba(248, 250, 252, 0) 70%), #F8FAFC;
    min-height: 85vh;
    color: #0F172A;
}

.overnova-hero-section .overnova-hero-doodle {
    position: absolute;
    pointer-events: none;
    opacity: 0.7;
    z-index: 1;
}

.overnova-hero-section .doodle-1 {
    top: 8%;
    left: 5%;
    width: 65px;
    height: 65px;
    transform: rotate(-15deg);
}

.overnova-hero-section .doodle-2 {
    top: 12%;
    right: 6%;
    width: 55px;
    height: 55px;
    transform: rotate(20deg);
}

.overnova-hero-section .doodle-3 {
    bottom: 15%;
    left: 4%;
    width: 45px;
    height: 45px;
}

.overnova-hero-section .overnova-hero-svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(99, 102, 241, 0.35);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 6 6;
}

.overnova-hero-section .overnova-hero-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4F46E5;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
}

.overnova-hero-section .overnova-hero-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0F172A;
}

.overnova-hero-section .overnova-hero-desc {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #475569;
    max-width: 720px;
    line-height: 1.6;
}

.overnova-hero-section .overnova-hero-btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overnova-hero-section .overnova-hero-btn-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(99, 102, 241, 0.6);
}

.overnova-hero-section .overnova-hero-btn-secondary {
    background: #FFFFFF;
    color: #0F172A;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.overnova-hero-section .overnova-hero-btn-secondary:hover {
    color: #4F46E5;
    background: #F1F5F9;
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-2px);
}

.overnova-hero-section .overnova-hero-showcase {
    margin-top: 1rem;
    z-index: 2;
}

.overnova-hero-section .overnova-hero-cloud-frame {
    width: 100%;
    height: 380px;
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.2), 0 0 0 1px rgba(99, 102, 241, 0.15);
}

@media (min-width: 768px) {
    .overnova-hero-section .overnova-hero-cloud-frame {
        height: 460px;
        border-radius: 56px;
    }
}

.overnova-hero-section .overnova-hero-video {
    object-fit: cover;
}

.overnova-hero-section .overnova-hero-video-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.35) 100%);
    pointer-events: none;
}

.overnova-hero-section .overnova-hero-floating-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.9rem 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 30px -5px rgba(15, 23, 42, 0.12);
    z-index: 3;
}

.overnova-hero-section .card-left {
    bottom: 35px;
    left: -20px;
}

.overnova-hero-section .card-right {
    top: 35px;
    right: -20px;
}

.overnova-hero-section .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.overnova-hero-section .icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #0891B2;
}

.overnova-hero-section .icon-gold {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.overnova-hero-section .card-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0F172A;
    line-height: 1.2;
}

.overnova-hero-section .card-label {
    font-size: 0.78rem;
    color: #64748B;
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .overnova-hero-section .overnova-hero-title {
        font-size: 1.65rem;
    }

    .overnova-hero-section .overnova-hero-btn-primary,
    .overnova-hero-section .overnova-hero-btn-secondary {
        width: 100%;
    }
}

/* =====  ===== */
.games-grid-section {
    background-color: #F8FAFC;
}

.games-grid-section__badge {
    background-color: rgba(99, 102, 241, 0.12);
    color: #4F46E5;
    font-size: 0.875rem;
    font-weight: 600;
}

.games-grid-section__heading {
    color: #0F172A;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.25;
}

.games-grid-section__subheading {
    color: #475569;
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.6;
}

.games-grid-section__card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.games-grid-section__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px -10px rgba(99, 102, 241, 0.25);
}

.games-grid-section__thumb-wrap {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    aspect-ratio: 16 / 10;
    background-color: #E2E8F0;
}

.games-grid-section__img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.games-grid-section__card:hover .games-grid-section__img {
    transform: scale(1.05);
}

.games-grid-section__tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
    pointer-events: none;
}

.games-grid-section__card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.games-grid-section__title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.games-grid-section__title-link:hover {
    color: #4F46E5;
}

.games-grid-section__card-desc {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
}

.games-grid-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    border: none;
}

.games-grid-section__btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(99, 102, 241, 0.55);
    filter: brightness(1.05);
}

@media (max-width: 767.98px) {
    .games-grid-section__heading {
        font-size: 1.25rem;
    }

    .games-grid-section__card-title {
        font-size: 1rem;
    }
}

/* =====  ===== */
.overnova-leaderboard-section {
    background-color: #F8FAFC;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
}

.overnova-leaderboard-section__badge {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #4F46E5;
    font-size: 0.85rem;
    font-weight: 600;
}

.overnova-leaderboard-section__gold-icon {
    color: #F59E0B;
}

.overnova-leaderboard-section__title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
    line-height: 1.25;
}

.overnova-leaderboard-section__lead {
    color: #475569;
    max-width: 680px;
    margin-inline: auto;
    line-height: 1.6;
}

.overnova-leaderboard-section__filter-bar {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.overnova-leaderboard-section__tab-btn {
    border: none;
    background: transparent;
    color: #475569;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    transition: all 0.25s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.overnova-leaderboard-section__tab-btn:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #4F46E5;
}

.overnova-leaderboard-section__tab-btn.active {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 14px -2px rgba(99, 102, 241, 0.4);
}

.overnova-leaderboard-section__podium-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.overnova-leaderboard-section__podium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.15);
}

.overnova-leaderboard-section__podium-card--rank-1 {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBEB 100%);
    border: 2px solid #FDE68A;
    box-shadow: 0 8px 24px -4px rgba(245, 158, 11, 0.18);
}

.overnova-leaderboard-section__rank-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    gap: 2px;
}

.overnova-leaderboard-section__rank-badge--gold {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
    width: 44px;
    height: 44px;
}

.overnova-leaderboard-section__rank-badge--silver {
    background: linear-gradient(135deg, #94A3B8 0%, #64748B 100%);
}

.overnova-leaderboard-section__rank-badge--bronze {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
}

.overnova-leaderboard-section__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overnova-leaderboard-section__avatar--gold {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.overnova-leaderboard-section__player-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0F172A;
}

.overnova-leaderboard-section__game-tag {
    color: #64748B;
    font-weight: 500;
}

.overnova-leaderboard-section__stats-box {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.overnova-leaderboard-section .text-muted-custom {
    color: #64748B;
}

.overnova-leaderboard-section .text-primary-custom {
    color: #4F46E5;
}

.overnova-leaderboard-section .text-warning-custom {
    color: #D97706;
}

.overnova-leaderboard-section .text-success-custom {
    color: #10B981;
}

.overnova-leaderboard-section__table-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.overnova-leaderboard-section__table {
    color: #0F172A;
}

.overnova-leaderboard-section__table th {
    font-weight: 700;
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E2E8F0;
    padding: 1rem 0.75rem;
}

.overnova-leaderboard-section__table td {
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #F1F5F9;
}

.overnova-leaderboard-section__table-rank {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    background: #F1F5F9;
    color: #475569;
}

.overnova-leaderboard-section__table-rank--1 {
    background: #FEF3C7;
    color: #D97706;
}

.overnova-leaderboard-section__table-rank--2 {
    background: #E2E8F0;
    color: #475569;
}

.overnova-leaderboard-section__table-rank--3 {
    background: #FFEDD5;
    color: #C2410C;
}

.overnova-leaderboard-section__mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.overnova-leaderboard-section__tbl-nick {
    color: #0F172A;
    font-size: 0.95rem;
}

.overnova-leaderboard-section__tbl-game {
    color: #334155;
    font-size: 0.9rem;
}

.overnova-leaderboard-section__score-badge {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.overnova-leaderboard-section__play-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #4F46E5;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    transition: all 0.2s ease;
}

.overnova-leaderboard-section__play-link:hover {
    background: #4F46E5;
    color: #FFFFFF;
}

.overnova-leaderboard-section__btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.45);
    transition: all 0.3s ease;
}

.overnova-leaderboard-section__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -4px rgba(99, 102, 241, 0.6);
    color: #FFFFFF;
}

.overnova-leaderboard-section__btn-secondary {
    background: #FFFFFF;
    color: #4F46E5;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.overnova-leaderboard-section__btn-secondary:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #4F46E5;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .overnova-leaderboard-section__title {
        font-size: 1.5rem;
    }

    .overnova-leaderboard-section__tab-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.85rem;
    }

    .overnova-leaderboard-section__table th,
    .overnova-leaderboard-section__table td {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
}

/* =====  ===== */
.player-tips-section {
    background-color: #F8FAFC;
    color: #0F172A;
    position: relative;
    overflow: hidden;
}

.player-tips-section .player-tips-section__badge {
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.player-tips-section .player-tips-section__title {
    color: #0F172A;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.25;
}

.player-tips-section .player-tips-section__subtitle {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 680px;
}

.player-tips-section .player-tips-section__tab {
    background: #FFFFFF;
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.player-tips-section .player-tips-section__tab:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #4F46E5;
    border-color: rgba(99, 102, 241, 0.3);
}

.player-tips-section .player-tips-section__tab.active {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.player-tips-section .player-tips-section__card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.player-tips-section .player-tips-section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px -8px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.player-tips-section .player-tips-section__card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player-tips-section .player-tips-section__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.player-tips-section .player-tips-section__card-icon--indigo {
    background: rgba(99, 102, 241, 0.12);
    color: #4F46E5;
}

.player-tips-section .player-tips-section__card-icon--amber {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.player-tips-section .player-tips-section__card-icon--cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #0891B2;
}

.player-tips-section .player-tips-section__card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background: #F1F5F9;
    color: #475569;
}

.player-tips-section .player-tips-section__card-title {
    color: #0F172A;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.player-tips-section .player-tips-section__card-text {
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.6;
}

.player-tips-section .player-tips-section__card-meta {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.player-tips-section .player-tips-section__meta-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748B;
}

.player-tips-section .player-tips-section__cta {
    background: linear-gradient(135deg, #FFFFFF 0%, #EEF2FF 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1);
}

.player-tips-section .player-tips-section__cta-heading {
    color: #0F172A;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.player-tips-section .player-tips-section__cta-subheading {
    color: #475569;
    font-size: 0.95rem;
}

.player-tips-section .player-tips-section__btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 18px -4px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player-tips-section .player-tips-section__btn-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px -4px rgba(99, 102, 241, 0.55);
}

.player-tips-section .player-tips-section__btn-secondary {
    background: rgba(99, 102, 241, 0.08);
    color: #4F46E5;
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.player-tips-section .player-tips-section__btn-secondary:hover {
    background: rgba(99, 102, 241, 0.16);
    color: #4338CA;
}

@media (max-width: 767.98px) {
    .player-tips-section .player-tips-section__title {
        font-size: 1.25rem;
    }

    .player-tips-section .player-tips-section__card-title {
        font-size: 1.05rem;
    }

    .player-tips-section .player-tips-section__cta-heading {
        font-size: 1.1rem;
    }

    .player-tips-section .player-tips-section__cta-text {
        text-align: center;
    }
}

/* =====  ===== */
.difficulty-rating-section {
    background-color: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.difficulty-rating-section .max-w-750 {
    max-width: 750px;
}

.difficulty-rating-section .difficulty-badge {
    background-color: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.difficulty-rating-section .section-title {
    color: #0F172A;
    line-height: 1.25;
}

.difficulty-rating-section .section-subtitle {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.difficulty-rating-section .filter-btn {
    background-color: #FFFFFF;
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.6rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.05);
}

.difficulty-rating-section .filter-btn:hover {
    background-color: #F1F5F9;
    color: #0F172A;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.difficulty-rating-section .filter-btn.active {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-color: #4F46E5;
    box-shadow: 0 8px 18px -4px rgba(99, 102, 241, 0.45);
}

.difficulty-rating-section .difficulty-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.difficulty-rating-section .difficulty-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px -8px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.35);
}

.difficulty-rating-section .card-thumb-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #F1F5F9;
}

.difficulty-rating-section .card-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.difficulty-rating-section .difficulty-card:hover .card-game-img {
    transform: scale(1.05);
}

.difficulty-rating-section .difficulty-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.difficulty-rating-section .tag-easy {
    background: rgba(16, 185, 129, 0.9);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.difficulty-rating-section .tag-medium {
    background: rgba(245, 158, 11, 0.9);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.difficulty-rating-section .tag-hard {
    background: rgba(244, 63, 94, 0.9);
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.difficulty-rating-section .xp-tag {
    background: rgba(15, 23, 42, 0.75);
    color: #FBBF24;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.difficulty-rating-section .meter-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
}

.difficulty-rating-section .text-easy {
    color: #10B981;
}

.difficulty-rating-section .text-medium {
    color: #F59E0B;
}

.difficulty-rating-section .text-hard {
    color: #F43F5E;
}

.difficulty-rating-section .meter-bar {
    width: 100%;
    height: 6px;
    background-color: #F1F5F9;
    overflow: hidden;
}

.difficulty-rating-section .meter-fill {
    height: 100%;
    border-radius: 999px;
}

.difficulty-rating-section .fill-easy {
    background: #10B981;
}

.difficulty-rating-section .fill-medium {
    background: #F59E0B;
}

.difficulty-rating-section .fill-hard {
    background: #F43F5E;
}

.difficulty-rating-section .game-title-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.difficulty-rating-section .game-title-link:hover {
    color: #4F46E5;
}

.difficulty-rating-section .card-desc-text {
    color: #475569;
    font-size: 0.925rem;
    line-height: 1.55;
}

.difficulty-rating-section .quest-action-btn {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.925rem;
    box-shadow: 0 6px 16px -3px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.difficulty-rating-section .quest-action-btn:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -3px rgba(99, 102, 241, 0.55);
    filter: brightness(1.05);
}

.difficulty-rating-section .difficulty-info-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.1);
}

.difficulty-rating-section .info-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-size: 1.75rem;
    box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.4);
}

.difficulty-rating-section .info-banner-heading {
    color: #0F172A;
}

.difficulty-rating-section .info-banner-sub {
    color: #475569;
    font-size: 0.95rem;
}

.difficulty-rating-section .guide-banner-btn {
    background: #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px -2px rgba(15, 23, 42, 0.25);
    border: none;
}

.difficulty-rating-section .guide-banner-btn:hover {
    background: #4F46E5;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(79, 70, 229, 0.4);
}

@media (max-width: 767.98px) {
    .difficulty-rating-section .section-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .difficulty-rating-section .card-title-text {
        font-size: 1.15rem;
    }

    .difficulty-rating-section .difficulty-info-banner {
        text-align: center;
    }

    .difficulty-rating-section .difficulty-info-banner .d-flex {
        flex-direction: column;
        align-items: center;
    }
}

/* =====  ===== */
.on-footer-section {
    background-color: #0F172A;
    color: #CBD5E1;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.on-footer-section .on-footer-main {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.on-footer-section .on-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.on-footer-section .on-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.on-footer-section .on-footer-logo {
    max-width: 48px;
    height: auto;
    object-fit: contain;
}

.on-footer-section .on-footer-brand-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.on-footer-section .on-footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

.on-footer-section .on-footer-wa-block {
    display: flex;
    margin-top: 0.5rem;
}

.on-footer-section .on-footer-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #10B981;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.35rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.on-footer-section .on-footer-wa-btn:hover {
    background-color: #059669;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}

.on-footer-section .on-footer-col-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.on-footer-section .on-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: #6366F1;
    border-radius: 2px;
}

.on-footer-section .on-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.on-footer-section .on-footer-link {
    color: #CBD5E1;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.on-footer-section .on-footer-link:hover {
    color: #818CF8;
    padding-left: 4px;
}

.on-footer-section .on-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.on-footer-section .on-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #CBD5E1;
}

.on-footer-section .on-footer-contact-icon {
    color: #6366F1;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.on-footer-section .on-footer-contact-text {
    color: #CBD5E1;
    word-break: break-word;
}

.on-footer-section .on-footer-contact-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.on-footer-section .on-footer-contact-link:hover {
    color: #818CF8;
}

.on-footer-section .on-footer-map-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.on-footer-section .on-footer-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.on-footer-section .on-footer-bottom {
    padding-top: 2rem;
}

.on-footer-section .on-footer-copyright {
    font-size: 0.875rem;
    color: #94A3B8;
    margin: 0;
}

.on-footer-section .on-footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.on-footer-section .on-footer-legal-link {
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.on-footer-section .on-footer-legal-link:hover {
    color: #FFFFFF;
}

.on-footer-section .on-footer-legal-separator {
    font-size: 0.75rem;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .on-footer-section {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }

    .on-footer-section .on-footer-col-title {
        font-size: 14px;
        margin-bottom: 0.85rem;
    }

    .on-footer-section .on-footer-brand-name {
        font-size: 1.3rem;
    }

    .on-footer-section .on-footer-legal-list {
        justify-content: center;
    }
}

/* ===== PAGE: about ===== */
.overnova-about-section { background-color: #F8FAFC; color: #0F172A; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.overnova-about-section .overnova-about-badge { background: rgba(99, 102, 241, 0.1); color: #4F46E5; padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 600; border: 1px solid rgba(99, 102, 241, 0.25); }
.overnova-about-section .overnova-about-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.25; color: #0F172A; }
.overnova-about-section .overnova-about-lead { font-size: 1.1rem; line-height: 1.6; color: #475569; }
.overnova-about-section .overnova-btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); color: #FFFFFF; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 999px; text-decoration: none; border: none; box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.45); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.overnova-about-section .overnova-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -4px rgba(99, 102, 241, 0.6); color: #FFFFFF; }
.overnova-about-section .overnova-btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(99, 102, 241, 0.08); color: #4F46E5; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 999px; text-decoration: none; border: 1px solid rgba(99, 102, 241, 0.25); transition: background-color 0.25s ease, transform 0.25s ease; }
.overnova-about-section .overnova-btn-ghost:hover { background: rgba(99, 102, 241, 0.16); color: #4F46E5; transform: translateY(-2px); }
.overnova-about-section .overnova-image-wrapper { position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.15); border: 1px solid rgba(226, 232, 240, 0.9); }
.overnova-about-section .overnova-main-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.overnova-about-section .overnova-stat-float { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(8px); padding: 1rem 1.25rem; border-radius: 16px; border: 1px solid rgba(99, 102, 241, 0.25); box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.1); }
.overnova-about-section .overnova-stat-num { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: #4F46E5; line-height: 1; }
.overnova-about-section .overnova-stat-lbl { font-size: 0.8rem; font-weight: 600; color: #475569; margin-top: 0.25rem; }
.overnova-about-section .overnova-feature-card { background: #FFFFFF; border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 20px; padding: 1.75rem; box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.overnova-about-section .overnova-feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.15); }
.overnova-about-section .overnova-icon-box { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%); display: flex; align-items: center; justify-content: center; color: #4F46E5; font-size: 1.5rem; }
.overnova-about-section .overnova-card-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; }
.overnova-about-section .overnova-card-text { font-size: 0.95rem; color: #475569; line-height: 1.55; margin: 0; }
.overnova-about-section .overnova-interactive-container { background: #FFFFFF; border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 24px; box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06); }
.overnova-about-section .overnova-subheading { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 700; color: #0F172A; }
.overnova-about-section .overnova-body-text { font-size: 1rem; color: #475569; line-height: 1.6; }
.overnova-about-section .overnova-tab-btn { width: 100%; display: flex; align-items: center; gap: 0.75rem; padding: 0.9rem 1.25rem; background: #F8FAFC; border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 14px; font-weight: 600; color: #475569; text-align: left; cursor: pointer; transition: all 0.25s ease; }
.overnova-about-section .overnova-tab-btn:hover { background: #F1F5F9; color: #4F46E5; }
.overnova-about-section .overnova-tab-btn.active { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); color: #FFFFFF; border-color: #4F46E5; box-shadow: 0 6px 16px -2px rgba(99, 102, 241, 0.35); }
.overnova-about-section .overnova-tab-content-box { background: #F8FAFC; border-radius: 20px; padding: 1.75rem; height: 100%; border: 1px solid rgba(226, 232, 240, 0.9); display: flex; align-items: center; }
.overnova-about-section .overnova-pane-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: #0F172A; }
.overnova-about-section .overnova-pane-text { font-size: 0.95rem; color: #475569; line-height: 1.6; }
.overnova-about-section .overnova-list { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; color: #334155; }
.overnova-about-section .overnova-cta-banner { background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); border: 1px solid rgba(99, 102, 241, 0.25); }
.overnova-about-section .overnova-cta-title { font-family: 'Outfit', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; color: #1E1B4B; }
.overnova-about-section .overnova-cta-desc { font-size: 1rem; color: #4338CA; max-width: 650px; line-height: 1.6; }

/* ===== PAGE: games ===== */
.overnova-games-section {
  background-color: #F8FAFC;
  min-height: 80vh;
}
.overnova-games-section .overnova-badge {
  background: rgba(99, 102, 241, 0.1);
  color: #4F46E5;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.overnova-games-section .overnova-page-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #0F172A;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
}
.overnova-games-section .overnova-page-lead {
  color: #475569;
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.6;
}
.overnova-games-section .overnova-controls-panel {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  max-width: 980px;
}
.overnova-games-section .overnova-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 1.1rem;
  pointer-events: none;
}
.overnova-games-section .overnova-search-input {
  padding-left: 2.75rem;
  padding-right: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background-color: #F8FAFC;
  color: #0F172A;
  font-size: 0.95rem;
}
.overnova-games-section .overnova-search-input:focus {
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  background-color: #FFFFFF;
}
.overnova-games-section .overnova-search-input::placeholder {
  color: #94A3B8;
}
.overnova-games-section .overnova-filter-btn {
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  background-color: #F1F5F9;
  color: #475569;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.overnova-games-section .overnova-filter-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}
.overnova-games-section .overnova-filter-scroll::-webkit-scrollbar {
  height: 5px;
}
.overnova-games-section .overnova-filter-scroll::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.4);
  border-radius: 999px;
}
@media (max-width: 767.98px) {
  .overnova-games-section .overnova-filter-scroll {
    overflow-x: auto;
    justify-content: flex-start !important;
    margin: 0 -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}
.overnova-games-section .overnova-filter-btn:hover,
.overnova-games-section .overnova-filter-btn.active {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.overnova-games-section .overnova-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.overnova-games-section .overnova-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -8px rgba(99, 102, 241, 0.2);
}
.overnova-games-section .overnova-img-wrapper {
  aspect-ratio: 16 / 10;
  background-color: #E2E8F0;
}
.overnova-games-section .overnova-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.overnova-games-section .overnova-card:hover .overnova-card-img {
  transform: scale(1.05);
}
.overnova-games-section .overnova-xp-badge {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}
.overnova-games-section .overnova-category-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4F46E5;
}
.overnova-games-section .overnova-platform-tag {
  font-size: 0.75rem;
  color: #94A3B8;
  background: #F1F5F9;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
}
.overnova-games-section .overnova-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.overnova-games-section .overnova-card-title a {
  color: #0F172A;
  transition: color 0.2s ease;
}
.overnova-games-section .overnova-card-title a:hover {
  color: #4F46E5;
}
.overnova-games-section .overnova-card-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.5;
}
.overnova-games-section .overnova-play-btn {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border: none;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
  transition: all 0.25s ease;
}
.overnova-games-section .overnova-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.5);
  color: #FFFFFF;
}

/* ===== PAGE: daily ===== */
.daily-tasks-section {
  background-color: #F8FAFC;
  min-height: 60vh;
}

.daily-tasks-section__badge {
  background-color: rgba(99, 102, 241, 0.1);
  font-size: 0.875rem;
}

.daily-tasks-section__title {
  color: #0F172A;
  line-height: 1.25;
}

.daily-tasks-section__subtitle {
  max-width: 680px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.6;
}

.daily-tasks-section__controls {
  background-color: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.daily-tasks-section__search-group .form-control {
  color: #0F172A;
  border-color: #E2E8F0;
}

.daily-tasks-section__search-group .form-control::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.daily-tasks-section__tab-btn {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background-color: #FFFFFF;
  color: #475569;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.daily-tasks-section__tab-btn:hover {
  background-color: rgba(99, 102, 241, 0.08);
  color: #4F46E5;
  border-color: rgba(99, 102, 241, 0.3);
}

.daily-tasks-section__tab-btn.active {
  background-color: #6366F1;
  color: #FFFFFF;
  border-color: #6366F1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.daily-tasks-section__card {
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.85) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.daily-tasks-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(99, 102, 241, 0.15) !important;
}

.daily-tasks-section__progress {
  height: 8px;
  border-radius: 999px;
  background-color: #E2E8F0;
}

.daily-tasks-section__link {
  transition: transform 0.2s ease;
}

.daily-tasks-section__link:hover {
  transform: translateX(3px);
  color: #4338CA !important;
}

.daily-tasks-section__info-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-color: rgba(99, 102, 241, 0.2) !important;
}

@media (max-width: 767.98px) {
  .daily-tasks-section__title {
    font-size: 1.75rem;
  }
  .daily-tasks-section__subtitle {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: guide ===== */
.overnova-guide-section {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.overnova-guide-section .overnova-badge {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #4F46E5;
  font-size: 0.875rem;
}

.overnova-guide-section .overnova-heading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F172A;
  line-height: 1.25;
}

.overnova-guide-section .overnova-subheading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F172A;
  line-height: 1.3;
}

.overnova-guide-section .overnova-lead-text {
  max-width: 780px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.overnova-guide-section .overnova-image-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.overnova-guide-section .overnova-guide-img {
  max-height: 380px;
  object-fit: cover;
}

.overnova-guide-section .overnova-feature-box {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overnova-guide-section .overnova-feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
}

.overnova-guide-section .overnova-icon-circle {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.overnova-guide-section .overnova-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overnova-guide-section .overnova-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -8px rgba(99, 102, 241, 0.15);
}

.overnova-guide-section .overnova-step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(99, 102, 241, 0.35);
}

.overnova-guide-section .overnova-interactive-wrapper {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.overnova-guide-section .overnova-tab-btn {
  background: #FFFFFF;
  color: #475569;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.overnova-guide-section .overnova-tab-btn:hover {
  background: #F8FAFC;
  color: #6366F1;
  border-color: #6366F1;
}

.overnova-guide-section .overnova-tab-btn.active {
  background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

.overnova-guide-section .accordion-item {
  background-color: #FFFFFF;
}

.overnova-guide-section .accordion-button:not(.collapsed) {
  color: #4F46E5;
  background-color: rgba(99, 102, 241, 0.05);
}

.overnova-guide-section .overnova-cta-banner {
  background: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #0891B2 100%);
}

.overnova-guide-section .max-w-600 {
  max-width: 600px;
}

.overnova-guide-section .overnova-action-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overnova-guide-section .overnova-action-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .overnova-guide-section .overnova-heading {
    font-size: 1.125rem;
  }
  .overnova-guide-section .overnova-subheading {
    font-size: 1rem;
  }
  .overnova-guide-section h3 {
    font-size: 0.875rem;
  }
  .overnova-guide-section .overnova-lead-text {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: hall ===== */
.overnova-hall-section { background-color: #F8FAFC; color: #0F172A; min-height: 80vh; }
.overnova-hall-section .overnova-hall-pill { background-color: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); }
.overnova-hall-section .overnova-hall-title { color: #0F172A; font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.overnova-hall-section .overnova-hall-subtitle { max-width: 680px; font-size: 1.05rem; line-height: 1.6; }
.overnova-hall-section .overnova-filter-btn { background-color: #FFFFFF; color: #475569; border: 1px solid #E2E8F0; padding: 0.5rem 1.25rem; font-weight: 500; transition: all 0.25s ease; }
.overnova-hall-section .overnova-filter-btn:hover { background-color: #F1F5F9; color: #0F172A; }
.overnova-hall-section .overnova-filter-btn.active { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); color: #FFFFFF; border-color: transparent; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); }
.overnova-hall-section .overnova-search-box .form-control { background-color: #FFFFFF; border-color: #E2E8F0; color: #0F172A; padding: 0.6rem 1rem; }
.overnova-hall-section .overnova-search-box .form-control::placeholder { color: #94A3B8; }
.overnova-hall-section .overnova-podium-card { background: #FFFFFF; border-radius: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.overnova-hall-section .overnova-podium-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15) !important; }
.overnova-hall-section .podium-rank-1 { border: 2px solid #F59E0B !important; background: linear-gradient(180deg, #FFFFFF 0%, #FEFCE8 100%); }
.overnova-hall-section .podium-rank-2 { border: 1px solid #CBD5E1; }
.overnova-hall-section .podium-rank-3 { border: 1px solid #E2E8F0; }
.overnova-hall-section .overnova-podium-avatar { object-fit: cover; border: 3px solid #FFFFFF; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.overnova-hall-section .champion-glow { border: 4px solid #F59E0B; box-shadow: 0 0 20px rgba(245, 158, 11, 0.4); }
.overnova-hall-section .overnova-podium-badge { position: absolute; bottom: 0; right: 0; font-size: 0.85rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; color: #FFFFFF; }
.overnova-hall-section .badge-gold { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.overnova-hall-section .badge-silver { background: linear-gradient(135deg, #94A3B8, #64748B); }
.overnova-hall-section .badge-bronze { background: linear-gradient(135deg, #D97706, #B45309); }
.overnova-hall-section .overnova-progress { height: 8px; border-radius: 4px; background-color: #F1F5F9; }
.overnova-hall-section .overnova-table-progress { width: 100px; height: 6px; border-radius: 3px; background-color: #F1F5F9; }
.overnova-hall-section .rank-circle { width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.overnova-hall-section .overnova-leaderboard-table th { background-color: #F8FAFC; color: #475569; font-weight: 600; font-size: 0.9rem; }
.overnova-hall-section .overnova-card-icon-box { width: 54px; height: 54px; border-radius: 14px; background-color: rgba(99, 102, 241, 0.1); display: flex; align-items: center; justify-content: center; }
.overnova-hall-section .overnova-info-card { transition: transform 0.25s ease; }
.overnova-hall-section .overnova-info-card:hover { transform: translateY(-4px); }

/* ===== PAGE: contact ===== */
.overnova-contact-section { background-color: #F8FAFC; color: #0F172A; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.overnova-contact-section .overnova-badge { background: rgba(99, 102, 241, 0.1); color: #4F46E5; font-size: 0.8125rem; font-weight: 700; padding: 0.35rem 1rem; border-radius: 999px; border: 1px solid rgba(99, 102, 241, 0.25); }
.overnova-contact-section .overnova-main-heading { font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: #0F172A; line-height: 1.25; }
.overnova-contact-section .overnova-lead-text { color: #475569; font-size: 1rem; line-height: 1.6; }
.overnova-contact-section .overnova-info-card, .overnova-contact-section .overnova-form-card { background: #FFFFFF; border-radius: 20px; border: 1px solid rgba(226, 232, 240, 0.9); box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06); }
.overnova-contact-section .overnova-section-title { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 700; color: #0F172A; line-height: 1.3; }
.overnova-contact-section .overnova-icon-box { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(79, 70, 229, 0.18)); color: #4F46E5; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.overnova-contact-section .overnova-icon-box-wa { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.overnova-contact-section .overnova-item-title { font-size: 1rem; font-weight: 600; color: #0F172A; }
.overnova-contact-section .overnova-item-desc { color: #475569; font-size: 0.9375rem; line-height: 1.5; }
.overnova-contact-section .overnova-contact-link { color: #4F46E5; text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.overnova-contact-section .overnova-contact-link:hover { color: #4338CA; text-decoration: underline; }
.overnova-contact-section .overnova-wa-link { color: #059669; }
.overnova-contact-section .overnova-wa-link:hover { color: #047857; }
.overnova-contact-section .overnova-form-group { margin-bottom: 0.25rem; }
.overnova-contact-section .overnova-form-label { font-size: 0.875rem; font-weight: 600; color: #0F172A; margin-bottom: 0.375rem; display: block; }
.overnova-contact-section .overnova-input-icon { background: #F1F5F9; border: 1px solid #CBD5E1; border-right: none; color: #64748B; border-top-left-radius: 10px; border-bottom-left-radius: 10px; font-size: 1.1rem; }
.overnova-contact-section .overnova-form-input, .overnova-contact-section .overnova-form-select, .overnova-contact-section .overnova-form-textarea { background-color: #FFFFFF; border: 1px solid #CBD5E1; color: #0F172A; font-size: 0.9375rem; padding: 0.65rem 0.85rem; border-radius: 10px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.overnova-contact-section .input-group > .overnova-form-input, .overnova-contact-section .input-group > .overnova-form-select { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.overnova-contact-section .overnova-form-input:focus, .overnova-contact-section .overnova-form-select:focus, .overnova-contact-section .overnova-form-textarea:focus { background-color: #FFFFFF; border-color: #6366F1; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2); outline: none; color: #0F172A; }
.overnova-contact-section .overnova-form-input::placeholder, .overnova-contact-section .overnova-form-textarea::placeholder { color: #94A3B8; opacity: 1; }
.overnova-contact-section .overnova-check-label { font-size: 0.8125rem; color: #475569; line-height: 1.4; }
.overnova-contact-section .overnova-btn-primary { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); color: #FFFFFF; border: none; border-radius: 999px; padding: 0.85rem 1.75rem; font-size: 1rem; font-weight: 600; box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.45); cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.overnova-contact-section .overnova-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -4px rgba(99, 102, 241, 0.6); color: #FFFFFF; }
@media (max-width: 767.98px) { .overnova-contact-section .overnova-main-heading { font-size: 18px; hyphens: auto; } .overnova-contact-section .overnova-section-title { font-size: 16px; hyphens: auto; } .overnova-contact-section .overnova-item-title { font-size: 14px; hyphens: auto; } }

/* ===== PAGE: privacy ===== */
.privacy-policy-section { background-color: #F8FAFC; color: #0F172A; min-height: 100vh; } .privacy-policy-section .privacy-header-card { background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%); border: 1px solid rgba(226, 232, 240, 0.9); border-radius: 24px; box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.08); } .privacy-policy-section .privacy-badge { background: rgba(99, 102, 241, 0.1); color: #4F46E5; font-weight: 600; font-size: 0.875rem; border: 1px solid rgba(99, 102, 241, 0.2); } .privacy-policy-section .privacy-main-title { color: #0F172A; font-family: 'Outfit', sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.25; } .privacy-policy-section .privacy-subtitle { max-width: 720px; color: #475569; font-size: 1.05rem; line-height: 1.6; } .privacy-policy-section .sidebar-card { background: #FFFFFF; border: 1px solid rgba(226, 232, 240, 0.9); position: sticky; top: 90px; } .privacy-policy-section .sidebar-title { color: #0F172A; font-family: 'Outfit', sans-serif; } .privacy-policy-section .privacy-nav-list .list-group-item { border: none; font-size: 0.9rem; font-weight: 500; color: #475569; background: transparent; transition: all 0.25s ease; text-decoration: none; } .privacy-policy-section .privacy-nav-list .list-group-item:hover { background-color: #F1F5F9; color: #4F46E5; transform: translateX(3px); } .privacy-policy-section .privacy-nav-list .list-group-item.active { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); color: #FFFFFF; font-weight: 600; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25); } .privacy-policy-section .quick-contact-box { background: #F8FAFC; border: 1px dashed rgba(99, 102, 241, 0.3); } .privacy-policy-section .policy-block { background: #FFFFFF; border: 1px solid rgba(226, 232, 240, 0.85); box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; } .privacy-policy-section .policy-block:hover { border-color: rgba(99, 102, 241, 0.3); } .privacy-policy-section .icon-box { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 14px; flex-shrink: 0; } .privacy-policy-section .bg-primary-subtle { background-color: #EEF2FF !important; } .privacy-policy-section .bg-info-subtle { background-color: #ECFEFF !important; } .privacy-policy-section .bg-warning-subtle { background-color: #FFFBEB !important; } .privacy-policy-section .bg-danger-subtle { background-color: #FFF1F2 !important; } .privacy-policy-section .bg-success-subtle { background-color: #ECFDF5 !important; } .privacy-policy-section .info-card { background: #F8FAFC; border-color: #E2E8F0 !important; } .privacy-policy-section .security-feature { background: #F8FAFC; border: 1px solid #E2E8F0; } .privacy-policy-section .right-item { background: #F8FAFC; border-color: #E2E8F0 !important; } .privacy-policy-section .btn-primary { background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%); border: none; box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35); transition: all 0.25s ease; } .privacy-policy-section .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45); } .privacy-policy-section .btn-outline-primary { border-color: #6366F1; color: #4F46E5; } .privacy-policy-section .btn-outline-primary:hover { background: #EEF2FF; border-color: #4F46E5; color: #4F46E5; } @media (max-width: 767.98px) { .privacy-policy-section .privacy-main-title { font-size: 1.35rem; hyphens: auto; } .privacy-policy-section .policy-block h2 { font-size: 1.15rem; } }

/* ===== PAGE: terms ===== */
.overnova-terms-section{background-color:#F8FAFC;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;color:#0F172A}.overnova-terms-header-card{background:linear-gradient(135deg,#FFFFFF 0%,#F1F5F9 100%);border-radius:24px;border:1px solid rgba(99,102,241,0.2);box-shadow:0 10px 25px -5px rgba(99,102,241,0.12)}.overnova-terms-pill{display:inline-flex;align-items:center;background:rgba(99,102,241,0.12);color:#4F46E5;font-weight:700;font-size:0.875rem;padding:0.35rem 0.85rem;border-radius:999px;border:1px solid rgba(99,102,241,0.25)}.overnova-terms-date{font-size:0.875rem;color:#475569;font-weight:500;display:inline-flex;align-items:center}.overnova-terms-main-title{font-family:'Outfit',-apple-system,BlinkMacSystemFont,sans-serif;font-weight:800;color:#0F172A;font-size:clamp(1.5rem,3vw,2.25rem);line-height:1.2}.overnova-terms-intro{color:#475569;font-size:1.05rem;line-height:1.6;max-width:900px}.overnova-terms-search-box .input-group{border-radius:999px;background:#FFFFFF;border:1px solid rgba(99,102,241,0.3);overflow:hidden;box-shadow:0 4px 15px rgba(15,23,42,0.04)}.overnova-search-icon-wrap{background:#FFFFFF;border:none;color:#6366F1;padding-left:1.25rem;font-size:1.15rem}.overnova-terms-search-input{border:none;box-shadow:none!important;background:#FFFFFF;color:#0F172A;font-size:0.95rem;padding:0.75rem 0.75rem}.overnova-terms-search-input::placeholder{color:#94A3B8}.overnova-terms-clear-btn{background:#F1F5F9;color:#475569;border:none;font-weight:600;padding:0.5rem 1.25rem;font-size:0.875rem;transition:all 0.2s ease}.overnova-terms-clear-btn:hover{background:#E2E8F0;color:#0F172A}.overnova-terms-nav-panel{background:#FFFFFF;border-radius:20px;border:1px solid rgba(226,232,240,0.9);box-shadow:0 4px 20px -2px rgba(15,23,42,0.06);top:1.5rem}.overnova-terms-nav-title{font-family:'Outfit',-apple-system,BlinkMacSystemFont,sans-serif;font-size:1.15rem;font-weight:700;color:#0F172A}.overnova-nav-item{color:#475569;font-weight:500;padding:0.6rem 0.85rem;border-radius:12px;transition:all 0.25s ease;font-size:0.925rem;display:flex;align-items:center}.overnova-nav-item:hover{background:rgba(99,102,241,0.08);color:#4F46E5;transform:translateX(3px)}.overnova-nav-item.active{background:linear-gradient(135deg,#6366F1 0%,#4F46E5 100%);color:#FFFFFF;box-shadow:0 4px 12px rgba(99,102,241,0.3)}.overnova-related-box{background:#F8FAFC;border-radius:14px;border:1px dashed rgba(99,102,241,0.3)}.overnova-related-title{font-family:'Outfit',-apple-system,BlinkMacSystemFont,sans-serif;font-size:1rem;font-weight:700;color:#0F172A}.overnova-sublink{color:#475569;text-decoration:none;font-weight:500;font-size:0.9rem;transition:color 0.2s ease}.overnova-sublink:hover{color:#6366F1;text-decoration:underline}.overnova-term-card{background:#FFFFFF;border-radius:20px;border:1px solid rgba(226,232,240,0.9);box-shadow:0 4px 20px -2px rgba(15,23,42,0.06);transition:all 0.3s ease;scroll-margin-top:2rem}.overnova-term-card:hover{border-color:rgba(99,102,241,0.4);box-shadow:0 10px 25px -5px rgba(99,102,241,0.12)}.overnova-term-icon{width:44px;height:44px;border-radius:12px;background:rgba(99,102,241,0.1);color:#4F46E5;display:flex;align-items:center;justify-content:center;font-size:1.35rem;flex-shrink:0}.overnova-term-heading{font-family:'Outfit',-apple-system,BlinkMacSystemFont,sans-serif;font-size:clamp(1.15rem,2vw,1.35rem);font-weight:700;color:#0F172A}.overnova-term-text{color:#475569;line-height:1.65;font-size:0.975rem}.overnova-term-checklist{font-size:0.95rem;color:#334155;background:#F8FAFC;padding:1rem;border-radius:12px;border:1px solid rgba(226,232,240,0.8)}.overnova-term-list{padding-left:1.25rem;color:#475569;font-size:0.95rem;line-height:1.6}.overnova-inline-link{color:#6366F1;font-weight:600;text-decoration:underline}.overnova-inline-link:hover{color:#4F46E5}.overnova-contact-cta{background:linear-gradient(135deg,rgba(99,102,241,0.08) 0%,rgba(6,182,212,0.08) 100%);border-radius:14px;border:1px solid rgba(99,102,241,0.2)}.overnova-cta-text{font-weight:600;color:#0F172A;font-size:0.95rem}.overnova-btn-primary{background:linear-gradient(135deg,#6366F1 0%,#4F46E5 100%);color:#FFFFFF!important;border-radius:999px;padding:0.65rem 1.5rem;font-weight:600;font-size:0.9rem;border:none;box-shadow:0 6px 16px -3px rgba(99,102,241,0.4);transition:all 0.25s ease}.overnova-btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 22px -3px rgba(99,102,241,0.55)}@media (max-width:767.98px){.overnova-terms-main-title{font-size:18px}.overnova-terms-nav-title{font-size:16px}.overnova-term-heading{font-size:16px}.overnova-related-title{font-size:14px}.overnova-terms-section{padding-top:1.5rem!important;padding-bottom:1.5rem!important}}

/* ===== PAGE: disclaimer ===== */
.overnova-disclaimer-section{background-color:#F8FAFC;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif;color:#475569;overflow:hidden}.overnova-disclaimer-section .overnova-disclaimer-card{background:linear-gradient(135deg,#FFFFFF 0%,#F1F5F9 100%);border-radius:24px;border:1px solid rgba(99,102,241,0.2);box-shadow:0 10px 25px -5px rgba(99,102,241,0.12)}.overnova-disclaimer-section .overnova-alert-icon-box{width:64px;height:64px;border-radius:18px;background:linear-gradient(135deg,#6366F1 0%,#4F46E5 100%);display:flex;align-items:center;justify-content:center;color:#FFFFFF;font-size:32px;box-shadow:0 8px 20px -4px rgba(99,102,241,0.45)}.overnova-disclaimer-section .overnova-badge-amber{background-color:#FEF3C7;color:#D97706;font-size:0.75rem;font-weight:700;padding:6px 14px;border-radius:999px;display:inline-block}.overnova-disclaimer-section .overnova-main-title{font-family:'Outfit',sans-serif;color:#0F172A;font-weight:800;font-size:clamp(1.5rem,3vw,2.25rem);line-height:1.2}.overnova-disclaimer-section .overnova-lead-text{font-size:1rem;color:#475569;line-height:1.6}.overnova-disclaimer-section .overnova-toc-card{background:#FFFFFF;border-radius:20px;border:1px solid rgba(226,232,240,0.9);box-shadow:0 4px 20px -2px rgba(15,23,42,0.06);top:24px}.overnova-disclaimer-section .overnova-toc-title{font-family:'Outfit',sans-serif;color:#0F172A;font-size:1.15rem;font-weight:700;display:flex;align-items:center}.overnova-disclaimer-section .overnova-toc-link{color:#475569;padding:10px 14px;border-radius:12px;text-decoration:none;font-size:0.925rem;font-weight:500;transition:all 0.25s ease;display:flex;align-items:center}.overnova-disclaimer-section .overnova-toc-link:hover,.overnova-disclaimer-section .overnova-toc-link.active{background:rgba(99,102,241,0.08);color:#4F46E5;transform:translateX(4px)}.overnova-disclaimer-section .overnova-support-box{background:#F8FAFC;border-radius:16px;border:1px dashed rgba(99,102,241,0.3)}.overnova-disclaimer-section .overnova-box-heading{font-family:'Outfit',sans-serif;font-size:1rem;font-weight:700;color:#0F172A}.overnova-disclaimer-section .overnova-box-text{font-size:0.85rem;color:#64748B;line-height:1.4}.overnova-disclaimer-section .overnova-content-block{background:#FFFFFF;border-radius:24px;border:1px solid rgba(226,232,240,0.9);box-shadow:0 4px 20px -2px rgba(15,23,42,0.06)}.overnova-disclaimer-section .overnova-icon-badge{width:38px;height:38px;border-radius:12px;background:rgba(99,102,241,0.1);color:#4F46E5;display:flex;align-items:center;justify-content:center;font-size:1.25rem}.overnova-disclaimer-section .overnova-section-title{font-family:'Outfit',sans-serif;color:#0F172A;font-size:1.35rem;font-weight:700;line-height:1.3}.overnova-disclaimer-section .overnova-body-text{color:#475569;font-size:0.975rem;line-height:1.7}.overnova-disclaimer-section .overnova-notice-box{background:#FFFBEB;border:1px solid #FDE68A;border-radius:14px;color:#92400E;font-size:0.925rem;line-height:1.5}.overnova-disclaimer-section .overnova-custom-list{list-style:none;padding-left:0}.overnova-disclaimer-section .overnova-custom-list li{display:flex;align-items:flex-start;font-size:0.95rem;color:#475569;line-height:1.6}.overnova-disclaimer-section .overnova-text-link{color:#4F46E5;font-weight:600;text-decoration:underline}.overnova-disclaimer-section .overnova-text-link:hover{color:#6366F1}.overnova-disclaimer-section .overnova-btn-primary{background:linear-gradient(135deg,#6366F1 0%,#4F46E5 100%);color:#FFFFFF;border-radius:999px;padding:0.75rem 1.5rem;font-weight:600;border:none;box-shadow:0 8px 20px -4px rgba(99,102,241,0.45);transition:all 0.25s ease;display:inline-flex;align-items:center;justify-content:center;text-decoration:none}.overnova-disclaimer-section .overnova-btn-primary:hover{color:#FFFFFF;transform:translateY(-2px);box-shadow:0 12px 24px -4px rgba(99,102,241,0.6)}.overnova-disclaimer-section .overnova-btn-ghost{background:rgba(99,102,241,0.08);color:#4F46E5;border:1px solid rgba(99,102,241,0.25);border-radius:999px;padding:0.75rem 1.5rem;font-weight:600;transition:all 0.25s ease;display:inline-flex;align-items:center;justify-content:center;text-decoration:none}.overnova-disclaimer-section .overnova-btn-ghost:hover{background:rgba(99,102,241,0.15);color:#4F46E5;transform:translateY(-2px)}@media (max-width:767.98px){.overnova-disclaimer-section .overnova-main-title{font-size:18px}.overnova-disclaimer-section .overnova-section-title{font-size:16px}.overnova-disclaimer-section .overnova-toc-title{font-size:14px}.overnova-disclaimer-section .overnova-toc-card{position:static;margin-bottom:1.5rem}}

.quest-comment-card {
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 20px;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0F172A
}

.quest-comment-card:hover {
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.35)
}

.quest-avatar {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 2px solid #6366F1
}

.quest-level-badge {
    top: 90%;
    left: 50%;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.45);
    white-space: nowrap
}

.quest-user-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A
}

.quest-role-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, 0.2)
}

.quest-time-text {
    font-size: 0.8rem;
    color: #94A3B8
}

.quest-rating-stars {
    display: flex;
    align-items: center;
    font-size: 0.95rem
}

.quest-xp-reward {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 185, 129, 0.25)
}

.quest-comment-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569
}

.quest-comment-actions .quest-action-btn {
    background: #F1F5F9;
    color: #475569;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease
}

.quest-comment-actions .quest-action-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #4F46E5;
    border-color: rgba(99, 102, 241, 0.25)
}

.quest-comment-reply-wrapper {
    border-left: 2px dashed rgba(99, 102, 241, 0.3);
    position: relative
}

.quest-comment-card.reply-comment {
    background: #F8FAFC;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    box-shadow: 0 2px 10px -2px rgba(15, 23, 42, 0.04)
}

.quest-avatar-reply {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 2px solid #06B6D4
}

.quest-level-badge-reply {
    top: 90%;
    left: 50%;
    background: linear-gradient(135deg, #22D3EE 0%, #06B6D4 100%);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.35);
    white-space: nowrap
}

.quest-reply-badge {
    background: rgba(6, 182, 212, 0.1);
    color: #0891B2;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(6, 182, 212, 0.2)
}


/* ===== PAGE TEMPLATE: games ===== */
.on-header-section {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
}

.on-header-section .on-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.on-header-section .on-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.on-header-section .on-header-brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: #0F172A;
    letter-spacing: -0.5px;
}

.on-header-section .on-header-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.on-header-section .on-header-nav-link {
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.on-header-section .on-header-nav-link:hover,
.on-header-section .on-header-nav-link.active {
    color: #6366F1;
}

.on-header-section .on-quest-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.on-header-section .on-quest-btn-primary:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.45);
}

.on-game-detail-page {
    background: #F8FAFC;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-bottom: 4rem;
}

.on-game-stage-section {
    padding: 2rem 0 1.5rem 0;
}

.on-game-stage-wrapper {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.08);
    overflow: hidden;
    padding: 1.25rem;
}

.on-game-top-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.on-game-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.on-game-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366F1;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    width: fit-content;
}

.on-game-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.25;
}

.on-game-controls {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.on-game-control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #F1F5F9;
    color: #0F172A;
    cursor: pointer;
    transition: all 0.2s ease;
}

.on-game-control-btn:hover {
    background: #E2E8F0;
    transform: translateY(-1px);
}

.on-game-control-btn.on-fullscreen-btn {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.on-game-control-btn.on-fullscreen-btn:hover {
    background: linear-gradient(135deg, #4F46E5 0%, #4338CA 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.45);
}

.on-iframe-container {
    position: relative;
    width: 100%;
    height: 560px;
    max-height: 75vh;
    min-height: 400px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.on-iframe-container .on-game-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.on-iframe-container .on-exit-fullscreen-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.9);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.on-iframe-container:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
}

.on-iframe-container:-webkit-full-screen {
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
}

.on-iframe-container:fullscreen .on-exit-fullscreen-btn,
.on-iframe-container:-webkit-full-screen .on-exit-fullscreen-btn {
    display: inline-flex;
}

.on-game-status-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.on-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
    background: #F8FAFC;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.on-game-info-section {
    padding: 1.5rem 0 2rem 0;
}

.on-detail-card,
.on-sidebar-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    padding: 1.75rem;
    height: 100%;
}

.on-section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.on-sub-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F172A;
    margin: 1.5rem 0 0.75rem 0;
}

.on-game-lead-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #334155;
    font-weight: 500;
    margin-bottom: 1rem;
}

.on-rich-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.on-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.on-features-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.5;
}

.on-features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.on-sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.on-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.on-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(226, 232, 240, 0.8);
    font-size: 0.9rem;
}

.on-spec-label {
    color: #64748B;
    font-weight: 500;
}

.on-spec-value {
    color: #0F172A;
    font-weight: 600;
    text-align: right;
}

.on-sidebar-action-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.on-quest-btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #0F172A;
    font-weight: 700;
    font-size: 0.925rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.on-quest-btn-accent:hover {
    color: #0F172A;
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.on-quest-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.08);
    color: #4F46E5;
    font-weight: 600;
    font-size: 0.925rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, 0.25);
    transition: background-color 0.2s ease;
}

.on-quest-btn-outline:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #4338CA;
}

.on-suggested-section {
    padding: 1.5rem 0 3rem 0;
}

.on-suggested-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.on-view-all-link {
    color: #6366F1;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: transform 0.2s ease;
}

.on-view-all-link:hover {
    transform: translateX(3px);
    color: #4F46E5;
}

.on-mini-game-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.on-mini-game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px -4px rgba(99, 102, 241, 0.15);
}

.on-mini-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #0F172A;
}

.on-mini-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.on-mini-game-card:hover .on-mini-card-img {
    transform: scale(1.05);
}

.on-mini-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.75);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.on-mini-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 0.65rem;
}

.on-mini-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.on-mini-card-link {
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.on-mini-card-link:hover {
    color: #6366F1;
}

.on-mini-card-tag {
    font-size: 0.8rem;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 991.98px) {
    .on-header-section .on-header-nav {
        display: none;
    }

    .on-iframe-container {
        height: 460px;
    }
}

@media (max-width: 767.98px) {
    .on-game-stage-wrapper {
        padding: 0.85rem;
        border-radius: 18px;
    }

    .on-iframe-container {
        height: 380px;
        min-height: 300px;
        border-radius: 12px;
    }

    .on-game-main-title {
        font-size: 18px;
    }

    .on-section-heading {
        font-size: 16px;
    }

    .on-sub-heading,
    .on-sidebar-title {
        font-size: 14px;
    }

    .on-game-status-bar {
        gap: 0.5rem;
    }

    .on-status-pill {
        font-size: 0.8rem;
        width: 100%;
        justify-content: flex-start;
    }
}

.on-footer-section {
    background-color: #0F172A;
    color: #CBD5E1;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.on-footer-section .on-footer-main {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.on-footer-section .on-footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.on-footer-section .on-footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.on-footer-section .on-footer-logo {
    max-width: 48px;
    height: auto;
    object-fit: contain;
}

.on-footer-section .on-footer-brand-name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.on-footer-section .on-footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

.on-footer-section .on-footer-wa-block {
    display: flex;
    margin-top: 0.5rem;
}

.on-footer-section .on-footer-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #10B981;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.35rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.on-footer-section .on-footer-wa-btn:hover {
    background-color: #059669;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}

.on-footer-section .on-footer-col-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.on-footer-section .on-footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: #6366F1;
    border-radius: 2px;
}

.on-footer-section .on-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.on-footer-section .on-footer-link {
    color: #CBD5E1;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.on-footer-section .on-footer-link:hover {
    color: #818CF8;
    padding-left: 4px;
}

.on-footer-section .on-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.on-footer-section .on-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #CBD5E1;
}

.on-footer-section .on-footer-contact-icon {
    color: #6366F1;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.on-footer-section .on-footer-contact-text {
    color: #CBD5E1;
    word-break: break-word;
}

.on-footer-section .on-footer-contact-link {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-all;
}

.on-footer-section .on-footer-contact-link:hover {
    color: #818CF8;
}

.on-footer-section .on-footer-map-wrapper {
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.on-footer-section .on-footer-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.on-footer-section .on-footer-bottom {
    padding-top: 2rem;
}

.on-footer-section .on-footer-copyright {
    font-size: 0.875rem;
    color: #94A3B8;
    margin: 0;
}

.on-footer-section .on-footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.on-footer-section .on-footer-legal-link {
    font-size: 0.875rem;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.on-footer-section .on-footer-legal-link:hover {
    color: #FFFFFF;
}

.on-footer-section .on-footer-legal-separator {
    font-size: 0.75rem;
    color: #64748B;
}

@media (max-width: 767.98px) {
    .on-footer-section {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }

    .on-footer-section .on-footer-col-title {
        font-size: 14px;
        margin-bottom: 0.85rem;
    }

    .on-footer-section .on-footer-brand-name {
        font-size: 1.3rem;
    }

    .on-footer-section .on-footer-legal-list {
        justify-content: center;
    }
}