:root {
    --primary: #FFD700;
    --secondary: #FF5733;
    --accent: #4CAF50;
    --background-main: #FFFBF2;
    --background-alt: #F0F8FF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --border-color: #1A1A1A;
    --card-shadow: 8px 8px 0px #1A1A1A;
    --button-shadow: 4px 4px 0px #1A1A1A;
}

* {
    box-sizing: border-box;
}

.cartoon-arena-theme {
    background-color: var(--background-main);
    color: var(--text-primary);
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.text-muted {
    color: #6c757d !important;
}

.cartoon-border {
    border: 3px solid var(--border-color) !important;
}

.cartoon-shadow {
    box-shadow: var(--card-shadow);
}

.btn-cartoon {
    border: 3px solid var(--border-color);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    top: 0;
    left: 0;
}

.btn-cartoon:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px transparent !important;
}

.section-spacing {
    padding: 5rem 0;
}

.img-sticker {
    filter: drop-shadow(4px 4px 0px rgba(26, 26, 26, 0.2));
}

/* ===== header ===== */
.troviquecoid-header {
    background-color: #FFFBF2;
    border-bottom: 4px solid #1A1A1A;
    z-index: 1050;
}

.troviquecoid-header .header-top-bar {
    background-color: #1A1A1A;
    padding: 4px 0;
}

.troviquecoid-header .disclaimer-text {
    color: #FFFFFF;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.troviquecoid-header .navbar {
    padding: 0.75rem 0;
}

.troviquecoid-header .header-logo-img {
    max-width: 45px;
    height: auto;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.troviquecoid-header .navbar-brand:hover .header-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.troviquecoid-header .header-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 1.25rem;
    margin-top: 4px;
    line-height: 1;
}

.troviquecoid-header .nav-link {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #1A1A1A !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.troviquecoid-header .nav-link:hover {
    color: #FF5733 !important;
    transform: translateY(-2px);
}

.troviquecoid-header .dropdown-toggle::after {
    vertical-align: middle;
    border-top-width: 0.4em;
}

.troviquecoid-header .dropdown-menu {
    background-color: #FFFBF2;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    box-shadow: 6px 6px 0px #1A1A1A;
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.troviquecoid-header .dropdown-item {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    padding: 0.6rem 1.5rem;
    transition: background 0.2s;
}

.troviquecoid-header .dropdown-item:hover {
    background-color: #FFD700;
    color: #1A1A1A;
}

.troviquecoid-header .header-cta-btn {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    transition: all 0.2s ease;
}

.troviquecoid-header .header-cta-btn:hover {
    background-color: #FFC400;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.troviquecoid-header .navbar-toggler {
    border: 3px solid #1A1A1A;
    background-color: #FFD700;
    box-shadow: 3px 3px 0px #1A1A1A;
    padding: 6px 10px;
    border-radius: 10px;
    color: #1A1A1A;
}

.troviquecoid-header .navbar-toggler:focus {
    box-shadow: 1px 1px 0px #1A1A1A;
    outline: none;
}

@media (max-width: 991.98px) {
    .troviquecoid-header .navbar-collapse {
        background-color: #FFFBF2;
        padding: 1.5rem;
        border-top: 3px solid #1A1A1A;
        margin-top: 0.75rem;
        border-radius: 0 0 12px 12px;
    }

    .troviquecoid-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .troviquecoid-header .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        background: rgba(0, 0, 0, 0.02);
    }
}

/* ===== herosection ===== */
#hero-section {
    min-height: 80vh;
    padding: 5rem 0;
    background-color: #FFFBF2;
    display: flex;
    align-items: center;
}

#hero-section .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

#hero-section .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

#hero-section .hero-content-wrapper {
    z-index: 2;
}

#hero-section .hero-disclaimer-badge {
    display: inline-block;
    background: #FF5733;
    border: 3px solid #1A1A1A;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 4px 4px 0px #1A1A1A;
}

#hero-section .hero-disclaimer-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero-section .hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 4px 4px 0px #1A1A1A;
    line-height: 1.1;
}

@media (min-width: 768px) {
    #hero-section .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    #hero-section .hero-title {
        font-size: 18px !important;
    }

    #hero-section .hero-subtitle {
        font-size: 14px;
    }
}

#hero-section .hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 600px;
    line-height: 1.6;
}

#hero-section .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #FFD700;
    color: #1A1A1A;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1A1A1A;
    text-decoration: none;
    transition: all 0.2s ease;
}

#hero-section .hero-btn-primary:hover {
    background-color: #FFC400;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #1A1A1A;
}

#hero-section .hero-btn-primary:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px #1A1A1A;
}

#hero-section .hero-character-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hero-float 6s ease-in-out infinite;
}

#hero-section .hero-character-img {
    filter: drop-shadow(10px 10px 0px #1A1A1A);
    max-width: 90%;
}

#hero-section .hero-floating-item {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0px #1A1A1A);
}

#hero-section .item-1 {
    top: 10%;
    left: 0;
    animation: hero-float 4s ease-in-out infinite alternate;
}

#hero-section .item-2 {
    bottom: 10%;
    right: 0;
    animation: hero-float 5s ease-in-out infinite alternate-reverse;
}

@keyframes hero-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===== ourgames ===== */
.games-showcase {
    background-color: #FFFBF2;
    font-family: 'Quicksand', sans-serif;
    overflow-x: hidden;
}

.games-showcase__title {
    font-family: 'Fredoka', sans-serif;
    color: #1A1A1A;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-showcase__subtitle {
    color: #4A4A4A;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.games-showcase__filter-btn {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 50px;
    padding: 10px 24px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s ease;
    cursor: pointer;
}

.games-showcase__filter-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #1A1A1A;
    background-color: #FFD700;
}

.games-showcase__filter-btn.active {
    background-color: #FFD700;
    box-shadow: 2px 2px 0px #1A1A1A;
    transform: translate(2px, 2px);
}

.games-showcase__card {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.games-showcase__card:hover {
    transform: scale(1.03) translateY(-5px);
}

.games-showcase__img-wrapper {
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid #1A1A1A;
}

.games-showcase__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.games-showcase__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.games-showcase__card-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.games-showcase__card-text {
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.games-showcase__btn {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    text-align: center;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s ease;
    display: block;
}

.games-showcase__btn:hover {
    background-color: #FF5733;
    color: #FFFFFF;
    box-shadow: 6px 6px 0px #1A1A1A;
    transform: translate(-2px, -2px);
}

.games-showcase__btn:active {
    box-shadow: 0px 0px 0px #1A1A1A;
    transform: translate(4px, 4px);
}

@media (max-width: 767.98px) {
    .games-showcase__title {
        font-size: 16px !important;
    }

    .games-showcase__card-title {
        font-size: 14px !important;
    }

    .games-showcase__subtitle {
        font-size: 0.9rem;
    }

    .games-showcase__filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .games-showcase {
        hyphens: auto;
    }
}

/* ===== platformfeatures ===== */
.features-section {
    background-color: #FFFBF2;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

.features-section .features-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 2.75rem;
    color: #1A1A1A;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.features-section .features-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    max-width: 700px;
}

.features-section .feature-card {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.features-section .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 12px 12px 0px #1A1A1A;
}

.features-section .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 16px;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.features-section .feature-icon-wrapper.color-alt-1 {
    background-color: #FF5733;
    color: #FFFFFF;
}

.features-section .feature-icon-wrapper.color-alt-2 {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.features-section .feature-icon-wrapper.color-alt-3 {
    background-color: #F0F8FF;
    border-color: #1A1A1A;
}

.features-section .feature-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.features-section .feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 0;
}

.features-section .js-feature-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.features-section .js-feature-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .features-section .features-title {
        font-size: 1.75rem;
    }

    .features-section .features-subtitle {
        font-size: 1rem;
    }

    .features-section .feature-card {
        margin-bottom: 10px;
    }
}

/* ===== abouttroviquecoid ===== */
.about-preview {
    padding: 5rem 0;
    background-color: #FFFBF2;
    overflow: hidden;
}

.about-preview__title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.about-preview__text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-preview__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-preview__feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-preview__icon-box {
    width: 48px;
    height: 48px;
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0px #1A1A1A;
    flex-shrink: 0;
}

.about-preview__icon-box i {
    font-size: 1.5rem;
    color: #1A1A1A;
}

.about-preview__feature-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1A1A1A;
}

.about-preview__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border: 3px solid #1A1A1A;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-preview__btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
    background-color: #FFD700;
    color: #1A1A1A;
}

.about-preview__image-wrapper {
    position: relative;
    padding: 10px;
}

.about-preview__image {
    width: 100%;
    height: auto;
    border: 3px solid #1A1A1A;
    border-radius: 24px;
    box-shadow: 12px 12px 0px #1A1A1A;
    object-fit: cover;
    display: block;
}

.about-preview__badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: #FF5733;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: 3px solid #1A1A1A;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 4px 4px 0px #1A1A1A;
    transform: rotate(5deg);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-preview {
        padding: 3rem 0;
    }

    .about-preview__title {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-preview__text {
        font-size: 1rem;
        text-align: center;
    }

    .about-preview__actions {
        display: flex;
        justify-content: center;
    }

    .about-preview__image-wrapper {
        margin-bottom: 2rem;
    }

    .about-preview__badge {
        right: 10px;
        bottom: 0;
        font-size: 0.9rem;
    }
}

/* ===== footer ===== */
.footer-block {
    background-color: #FFFBF2;
    border-top: 5px solid #1A1A1A;
    font-family: 'Quicksand', sans-serif;
    color: #1A1A1A;
}

.footer-block .footer-block__disclaimer {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
}

.footer-block .footer-block__disclaimer-icon {
    font-size: 3rem;
    color: #1A1A1A;
}

.footer-block .footer-block__disclaimer-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A1A1A;
}

.footer-block .footer-block__disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #1A1A1A;
}

.footer-block .footer-block__partner-img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-block .footer-block__partner-link:hover .footer-block__partner-img {
    transform: scale(1.1) rotate(2deg);
}

.footer-block .footer-block__18-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-block .footer-block__logo {
    max-width: 50px;
    border: 2px solid #1A1A1A;
    border-radius: 10px;
}

.footer-block .footer-block__name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #1A1A1A;
}

.footer-block .footer-block__nav-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FF5733;
}

.footer-block .footer-block__nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 600;
    transition: color 0.2s ease;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-block .footer-block__nav-link:hover {
    color: #FF5733;
    text-decoration: underline;
}

.footer-block .footer-block__social-statement {
    font-size: 0.95rem;
    color: #4A4A4A;
}

.footer-block .footer-block__copyright {
    font-size: 0.85rem;
    color: #4A4A4A;
}

.footer-block .footer-block__age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.footer-block .footer-block__age-content {
    background-color: #FFFBF2;
    border: 4px solid #1A1A1A;
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 12px 12px 0px #1A1A1A;
}

.footer-block .footer-block__age-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.footer-block .footer-block__age-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4A4A4A;
}

.footer-block .footer-block__age-btn {
    border: 3px solid #1A1A1A;
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.footer-block .footer-block__age-btn--yes {
    background-color: #FFD700;
    color: #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.footer-block .footer-block__age-btn--yes:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #1A1A1A;
}

.footer-block .footer-block__age-btn--no {
    background-color: #FF5733;
    color: #FFFFFF;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.footer-block .footer-block__age-btn--no:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0px #1A1A1A;
}

@media (max-width: 768px) {
    .footer-block .footer-block__age-content {
        padding: 25px;
    }

    .footer-block .footer-block__age-title {
        font-size: 1.75rem;
    }
}

.troviquecoid-header {
    background-color: #FFFBF2;
    border-bottom: 4px solid #1A1A1A;
    z-index: 1050;
}

.troviquecoid-header .header-top-bar {
    background-color: #1A1A1A;
    padding: 4px 0;
}

.troviquecoid-header .disclaimer-text {
    color: #FFFFFF;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.troviquecoid-header .navbar {
    padding: 0.75rem 0;
}

.troviquecoid-header .header-logo-img {
    max-width: 45px;
    height: auto;
    filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.troviquecoid-header .navbar-brand:hover .header-logo-img {
    transform: scale(1.1) rotate(5deg);
}

.troviquecoid-header .header-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 1.25rem;
    margin-top: 4px;
    line-height: 1;
}

.troviquecoid-header .nav-link {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #1A1A1A !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.troviquecoid-header .nav-link:hover {
    color: #FF5733 !important;
    transform: translateY(-2px);
}

.troviquecoid-header .dropdown-menu {
    background-color: #FFFBF2;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    box-shadow: 6px 6px 0px #1A1A1A;
    padding: 0.5rem 0;
    margin-top: 10px !important;
}

.troviquecoid-header .dropdown-item {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    padding: 0.6rem 1.5rem;
    transition: background 0.2s;
}

.troviquecoid-header .header-cta-btn {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    transition: all 0.2s ease;
}

.troviquecoid-header .navbar-toggler {
    border: 3px solid #1A1A1A;
    background-color: #FFD700;
    box-shadow: 3px 3px 0px #1A1A1A;
    padding: 6px 10px;
    border-radius: 10px;
    color: #1A1A1A;
}

#hero-section {
    min-height: 60vh;
    padding: 5rem 0;
    background-color: #FFFBF2;
    display: flex;
    align-items: center;
}

#hero-section .hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

#hero-section .hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

#hero-section .hero-content-wrapper {
    z-index: 2;
}

#hero-section .hero-disclaimer-badge {
    display: inline-block;
    background: #FF5733;
    border: 3px solid #1A1A1A;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 4px 4px 0px #1A1A1A;
}

#hero-section .hero-disclaimer-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero-section .hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 4px 4px 0px #1A1A1A;
    line-height: 1.1;
}

@media (max-width: 767.98px) {
    #hero-section .hero-title {
        font-size: 18px !important;
    }

    #hero-section .hero-subtitle {
        font-size: 14px;
    }
}

#hero-section .hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    color: #FFFFFF;
    max-width: 600px;
    line-height: 1.6;
}

#hero-section .hero-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: #FFD700;
    color: #1A1A1A;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 6px 6px 0px #1A1A1A;
    text-decoration: none;
    transition: all 0.2s ease;
}

#hero-section .hero-character-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hero-float 6s ease-in-out infinite;
}

#hero-section .hero-character-img {
    filter: drop-shadow(10px 10px 0px #1A1A1A);
    max-width: 90%;
}

#hero-section .hero-floating-item {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(4px 4px 0px #1A1A1A);
}

#hero-section .item-1 {
    top: 10%;
    left: 0;
    animation: hero-float 4s ease-in-out infinite alternate;
}

#hero-section .item-2 {
    bottom: 10%;
    right: 0;
    animation: hero-float 5s ease-in-out infinite alternate-reverse;
}

@keyframes hero-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.catalog-page-wrapper {
    background-color: #FFFBF2;
}

.catalog-main-section .catalog-main-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 2.75rem;
}

.catalog-main-section .catalog-intro-text {
    font-family: 'Quicksand', sans-serif;
    color: #4A4A4A;
    max-width: 800px;
    font-size: 1.1rem;
}

.catalog-main-section .catalog-controls {
    background-color: #F0F8FF;
    border: 3px solid #1A1A1A;
    border-radius: 25px;
    box-shadow: 8px 8px 0px #1A1A1A;
}

.catalog-main-section .search-wrapper {
    position: relative;
}

.catalog-main-section .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #1A1A1A;
}

.catalog-main-section .js-search-input {
    padding-left: 50px;
    height: 55px;
    border: 3px solid #1A1A1A;
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    background-color: #FFFFFF;
}

.catalog-main-section .js-search-input::placeholder {
    color: #4A4A4A;
    opacity: 0.6;
}

.catalog-main-section .js-filter-btn {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s ease;
}

.catalog-main-section .js-filter-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.catalog-main-section .js-filter-btn.active {
    background-color: #FF5733;
    color: #FFFFFF;
    box-shadow: 2px 2px 0px #1A1A1A;
    transform: translate(2px, 2px);
}

.catalog-main-section .catalog-card {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.catalog-main-section .catalog-card:hover {
    transform: translateY(-8px);
}

.catalog-main-section .catalog-card__img-container {
    height: 200px;
    border-bottom: 3px solid #1A1A1A;
}

.catalog-main-section .catalog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-main-section .catalog-card__content {
    padding: 1.5rem;
}

.catalog-main-section .catalog-card__title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.catalog-main-section .catalog-card__badge {
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border: 2px solid #1A1A1A;
}

.catalog-main-section .catalog-card__btn {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s ease;
}

.catalog-main-section .catalog-card__btn:hover {
    background-color: #FFC400;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.footer-block {
    background-color: #FFFBF2;
    border-top: 5px solid #1A1A1A;
    font-family: 'Quicksand', sans-serif;
    color: #1A1A1A;
}

.footer-block .footer-block__disclaimer {
    background-color: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
}

.footer-block .footer-block__disclaimer-icon {
    font-size: 3rem;
    color: #1A1A1A;
}

.footer-block .footer-block__disclaimer-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-block .footer-block__partner-img {
    max-width: 130px;
    height: auto;
    transition: transform 0.2s;
}

.footer-block .footer-block__logo {
    max-width: 50px;
    border: 2px solid #1A1A1A;
    border-radius: 10px;
}

.footer-block .footer-block__name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
}

.footer-block .footer-block__nav-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #FF5733;
}

.footer-block .footer-block__nav-link {
    text-decoration: none;
    color: #4A4A4A;
    font-weight: 600;
}

.footer-block .footer-block__age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.footer-block .footer-block__age-content {
    background-color: #FFFBF2;
    border: 4px solid #1A1A1A;
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 12px 12px 0px #1A1A1A;
}

.footer-block .footer-block__age-btn {
    border: 3px solid #1A1A1A;
    border-radius: 15px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
}

.footer-block .footer-block__age-btn--yes {
    background: #FFD700;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.footer-block .footer-block__age-btn--no {
    background: #FF5733;
    color: #FFF;
    box-shadow: 4px 4px 0px #1A1A1A;
}


/* ===== PAGE: about ===== */
.about-mission-section {
  padding: 5rem 0;
  background-color: #FFFBF2;
  overflow: hidden;
}

.about-mission-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-mission-img {
  border: 4px solid #1A1A1A;
  border-radius: 30px;
  box-shadow: 12px 12px 0px #1A1A1A;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.about-mission-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-mission-sticker-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #FF5733;
  border: 3px solid #1A1A1A;
  padding: 10px 20px;
  border-radius: 50px;
  transform: rotate(10deg);
  box-shadow: 4px 4px 0px #1A1A1A;
}

.about-mission-badge-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.2rem;
}

.about-mission-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-mission-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  color: #4A4A4A;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-mission-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.about-mission-stat-item {
  display: flex;
  flex-direction: column;
}

.about-mission-stat-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FF5733;
  line-height: 1;
}

.about-mission-stat-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1A1A1A;
}

.about-why-us-section {
  padding: 5rem 0;
  background-color: #F0F8FF;
}

.about-why-us-header {
  margin-bottom: 4rem;
}

.about-why-us-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.about-why-us-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  color: #4A4A4A;
}

.about-why-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 8px 8px 0px #1A1A1A;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 12px 12px 0px #1A1A1A;
}

.about-why-icon-box {
  width: 80px;
  height: 80px;
  background: #FFD700;
  border: 3px solid #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 4px 4px 0px #1A1A1A;
}

.about-why-icon {
  font-size: 2.5rem;
  color: #1A1A1A;
}

.about-why-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.about-why-card-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.about-why-cta-wrapper {
  margin-top: 4rem;
}

.about-btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  border: 3px solid #1A1A1A;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 4px 4px 0px #1A1A1A;
  transition: all 0.2s ease;
}

.about-btn-primary:hover {
  background: #FFC400;
  color: #1A1A1A;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #1A1A1A;
}

@media (max-width: 991px) {
  .about-mission-title {
    font-size: 2.25rem;
  }
  .about-mission-image-wrapper {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .about-mission-title {
    font-size: 1.5rem;
  }
  .about-why-us-title {
    font-size: 1.5rem;
  }
  .about-why-card {
    padding: 1.5rem;
  }
}

/* ===== PAGE: history ===== */
.history-list-section {
  padding: 5rem 0;
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
}

.history-list-section .history-filter-wrapper {
  background: #FFFFFF;
  padding: 2rem;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
}

.history-list-section .search-box input {
  font-weight: 600;
  color: #1A1A1A;
}

.history-list-section .search-box .input-group-text {
  color: #1A1A1A;
  font-size: 1.25rem;
}

.history-list-section .js-filter-btn {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: #1A1A1A;
  box-shadow: 4px 4px 0px #1A1A1A;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.history-list-section .js-filter-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #1A1A1A;
}

.history-list-section .js-filter-btn.active {
  background: #FFD700;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #1A1A1A;
}

.history-list-section .history-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.history-list-section .history-card:hover {
  transform: scale(1.02);
}

.history-list-section .card-image-wrapper {
  position: relative;
  height: 200px;
  border-bottom: 3px solid #1A1A1A;
}

.history-list-section .card-image-wrapper img {
  height: 100%;
  object-fit: cover;
}

.history-list-section .card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0.5rem 1rem;
  border: 2px solid #1A1A1A;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
}

.history-list-section .tournament-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 1.5rem;
}

.history-list-section .tournament-date {
  color: #4A4A4A;
  font-weight: 600;
  font-size: 0.95rem;
}

.history-list-section .stat-label {
  font-weight: 600;
  color: #4A4A4A;
}

.history-list-section .stat-value {
  font-weight: 700;
  color: #1A1A1A;
}

.history-list-section .progress-label {
  font-weight: 600;
  font-size: 0.85rem;
}

.history-list-section .progress-percent {
  font-weight: 700;
  font-size: 0.85rem;
}

.history-list-section .progress-bar-container {
  height: 12px;
  background: #F0F8FF;
  border: 2px solid #1A1A1A;
  border-radius: 10px;
  overflow: hidden;
}

.history-list-section .progress-bar-fill {
  height: 100%;
  background: #4CAF50;
  border-radius: 10px;
}

.history-list-section .status-tag {
  background: #F0F8FF;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* ===== PAGE: hall-of-fame ===== */
.leaderboard-section {
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
}
.leaderboard-section .leaderboard-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 3rem;
  text-shadow: 3px 3px 0px #FFD700;
}
.leaderboard-section .leaderboard-desc {
  max-width: 700px;
  color: #4A4A4A;
  font-size: 1.2rem;
  line-height: 1.6;
}
.leaderboard-section .leaderboard-filter-group {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  box-shadow: 4px 4px 0px #1A1A1A;
}
.leaderboard-section .filter-btn {
  border: none;
  background: transparent;
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 700;
  color: #1A1A1A;
  transition: all 0.2s ease;
  font-family: 'Fredoka', sans-serif;
}
.leaderboard-section .filter-btn.active {
  background: #FFD700;
  box-shadow: inset 0px 4px 0px rgba(0,0,0,0.1);
}
.leaderboard-section .top-player-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 8px 8px 0px #1A1A1A;
  transition: transform 0.3s ease;
}
.leaderboard-section .top-player-card:hover {
  transform: scale(1.05);
}
.leaderboard-section .gold-rank {
  border-color: #FFD700;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9E6 100%);
  padding: 50px 20px;
}
.leaderboard-section .rank-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #1A1A1A;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  border: 3px solid #FFD700;
}
.leaderboard-section .gold-rank .rank-badge {
  background: #FFD700;
  color: #1A1A1A;
  width: 65px;
  height: 65px;
  font-size: 2rem;
}
.leaderboard-section .player-avatar-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border: 3px solid #1A1A1A;
  border-radius: 50%;
  overflow: hidden;
  background: #F0F8FF;
}
.leaderboard-section .gold-rank .player-avatar-wrapper {
  width: 130px;
  height: 130px;
}
.leaderboard-section .player-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaderboard-section .player-name {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1A1A1A;
}
.leaderboard-section .player-score {
  font-weight: 700;
  color: #FF5733;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.leaderboard-section .favorite-game {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}
.leaderboard-section .leaderboard-list {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 8px 8px 0px #1A1A1A;
}
.leaderboard-section .list-header {
  background: #F0F8FF;
  border-bottom: 3px solid #1A1A1A;
  padding: 15px 25px;
  display: flex;
  font-weight: 700;
  color: #1A1A1A;
  font-family: 'Fredoka', sans-serif;
}
.leaderboard-section .list-item {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EEE;
  transition: background 0.2s ease;
}
.leaderboard-section .list-item:last-child {
  border-bottom: none;
}
.leaderboard-section .list-item:hover {
  background: #FFFBF2;
}
.leaderboard-section .col-rank {
  width: 80px;
  font-weight: 700;
}
.leaderboard-section .col-player {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}
.leaderboard-section .list-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #1A1A1A;
}
.leaderboard-section .col-game {
  width: 250px;
  color: #666;
}
.leaderboard-section .col-score {
  width: 120px;
  text-align: right;
  font-weight: 700;
  color: #FF5733;
}
.leaderboard-section .empty-state-card {
  background: #FFFFFF;
  border: 3px dashed #1A1A1A;
  border-radius: 30px;
  padding: 50px;
}
.leaderboard-section .empty-state-card i {
  font-size: 4rem;
  color: #FFD700;
}
@media (max-width: 767px) {
  .leaderboard-section .leaderboard-title { font-size: 2rem; }
  .leaderboard-section .top-player-card { margin-bottom: 20px; }
  .leaderboard-section .col-score { width: 80px; }
  .leaderboard-section .col-rank { width: 50px; }
}

/* ===== PAGE: faq ===== */
.faq-section {
  padding: 5rem 0;
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
}

.faq-section .faq-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: #1A1A1A;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.faq-section .faq-subtitle {
  font-size: 1.2rem;
  color: #4A4A4A;
}

.faq-section .accordion {
  --bs-accordion-bg: #FFFFFF;
  --bs-accordion-border-color: #1A1A1A;
  --bs-accordion-border-width: 3px;
  --bs-accordion-border-radius: 20px;
  --bs-accordion-inner-border-radius: 17px;
  --bs-accordion-btn-padding-x: 1.5rem;
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-btn-color: #1A1A1A;
  --bs-accordion-btn-bg: #FFFFFF;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-active-bg: #FFD700;
  --bs-accordion-active-color: #1A1A1A;
}

.faq-section .accordion-item {
  box-shadow: 8px 8px 0px #1A1A1A;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-section .accordion-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px #1A1A1A;
}

.faq-section .accordion-button {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 20px !important;
}

.faq-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  border-bottom: 3px solid #1A1A1A;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.faq-section .accordion-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
}

.faq-section .faq-cta-btn {
  background-color: #FFD700;
  border: 3px solid #1A1A1A;
  color: #1A1A1A;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 4px 4px 0px #1A1A1A;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-section .faq-cta-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #1A1A1A;
  background-color: #FFC400;
  color: #1A1A1A;
}

@media (max-width: 768px) {
  .faq-section .faq-title {
    font-size: 1.75rem;
  }
  .faq-section .accordion-button {
    font-size: 1.1rem;
    padding: 1.25rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-policy-section {
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
  color: #1A1A1A;
}

.privacy-policy-section .policy-nav-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
  position: sticky;
  top: 100px;
}

.privacy-policy-section .policy-nav-links li {
  margin-bottom: 12px;
}

.privacy-policy-section .policy-nav-links a {
  text-decoration: none;
  color: #4A4A4A;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.privacy-policy-section .policy-nav-links a i {
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.privacy-policy-section .policy-nav-links a:hover {
  color: #FF5733;
}

.privacy-policy-section .policy-nav-links a:hover i {
  transform: translateX(5px);
}

.privacy-policy-section .policy-content-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
}

.privacy-policy-section h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
}

.privacy-policy-section .icon-box {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 4px 4px 0px #1A1A1A;
}

.privacy-policy-section .policy-block p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.privacy-policy-section .custom-list {
  list-style: none;
  padding-left: 0;
}

.privacy-policy-section .custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.privacy-policy-section .custom-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FF5733;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .privacy-policy-section .policy-content-card {
    padding: 30px 20px !important;
  }
  .privacy-policy-section h2 {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: terms ===== */
.terms-section {
  padding: 5rem 0;
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
}

.terms-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 8px 8px 0px #1A1A1A;
}

.terms-badge {
  background-color: #4CAF50;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.terms-main-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.terms-main-subtitle {
  font-size: 1.25rem;
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto;
}

.terms-nav-btn {
  background: #F0F8FF;
  border: 2px solid #1A1A1A;
  border-radius: 12px;
  padding: 0.5rem 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px #1A1A1A;
}

.terms-nav-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #1A1A1A;
}

.terms-nav-btn.active {
  background: #FFD700;
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #1A1A1A;
}

.terms-pane {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.terms-pane.active {
  display: block;
}

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

.terms-section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.terms-body-content p {
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.terms-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: #4A4A4A;
  line-height: 1.6;
}

.terms-list li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  color: #FF5733;
  font-weight: bold;
}

.btn-terms-primary {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  border: 3px solid #1A1A1A;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 4px 4px 0px #1A1A1A;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-terms-primary:hover {
  transform: scale(1.05);
  background: #FFC700;
  color: #1A1A1A;
  box-shadow: 6px 6px 0px #1A1A1A;
}

@media (max-width: 768px) {
  .terms-main-title {
    font-size: 2rem;
  }
  .terms-card {
    padding: 2rem 1rem;
  }
  .terms-nav-btn {
    flex: 1 1 calc(50% - 1rem);
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

/* ===== PAGE: disclaimer ===== */
.troviquecoid-disclaimer { background-color: #FFFBF2; overflow: hidden; } .troviquecoid-disclaimer .disclaimer-main-title { font-family: 'Fredoka', sans-serif; font-weight: 700; color: #1A1A1A; text-shadow: 2px 2px 0px #FFD700; font-size: 2.75rem; } .troviquecoid-disclaimer .text-primary-color { color: #FFD700 !important; } .troviquecoid-disclaimer .text-dark-color { color: #1A1A1A !important; font-family: 'Fredoka', sans-serif; font-weight: 600; } .troviquecoid-disclaimer .text-secondary-color { color: #4A4A4A !important; font-family: 'Quicksand', sans-serif; line-height: 1.6; } .troviquecoid-disclaimer .disclaimer-card { background: #FFFFFF; border: 3px solid #1A1A1A; border-radius: 20px; box-shadow: 8px 8px 0px #1A1A1A; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .troviquecoid-disclaimer .disclaimer-card:hover { transform: scale(1.02); } .troviquecoid-disclaimer .disclaimer-decor-img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(4px 4px 0px #1A1A1A); } .troviquecoid-disclaimer .disclaimer-cta-btn { background-color: #FFD700; color: #1A1A1A; border: 3px solid #1A1A1A; border-radius: 12px; padding: 12px 30px; font-family: 'Fredoka', sans-serif; font-weight: 700; box-shadow: 4px 4px 0px #1A1A1A; transition: all 0.2s ease; } .troviquecoid-disclaimer .disclaimer-cta-btn:hover { background-color: #FFC400; transform: translate(2px, 2px); box-shadow: 2px 2px 0px #1A1A1A; color: #1A1A1A; } .troviquecoid-disclaimer .js-reveal { transform: translateY(30px); visibility: hidden; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.6s; } .troviquecoid-disclaimer .js-reveal.is-visible { transform: translateY(0); visibility: visible; } @media (max-width: 768px) { .troviquecoid-disclaimer .disclaimer-main-title { font-size: 1.5rem; } .troviquecoid-disclaimer .h4 { font-size: 1.2rem; } }

/* ===== PAGE: rgp ===== */
.rgp-content-section {
  background-color: #FFFBF2;
  font-family: 'Quicksand', sans-serif;
  color: #1A1A1A;
}

.rgp-content-section .rgp-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1A1A1A;
  text-shadow: 2px 2px 0px #FFD700;
}

.rgp-content-section .rgp-subheading {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #FF5733;
}

.rgp-content-section .rgp-main-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
}

.rgp-content-section .rgp-hero-img {
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 4px 4px 0px #1A1A1A;
  object-fit: cover;
}

.rgp-content-section .rgp-badge {
  background: #FFD700;
  color: #1A1A1A;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 2px solid #1A1A1A;
  font-weight: 700;
  font-size: 0.9rem;
}

.rgp-content-section .rgp-card {
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 20px;
  box-shadow: 8px 8px 0px #1A1A1A;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rgp-content-section .rgp-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0px #1A1A1A;
}

.rgp-content-section .rgp-icon-box {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  border: 3px solid #1A1A1A;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFFFFF;
}

.rgp-content-section .rgp-card-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1A1A1A;
}

.rgp-content-section .rgp-text {
  line-height: 1.7;
  font-size: 1.1rem;
}

.rgp-content-section .rgp-text-small {
  font-size: 1rem;
  color: #4A4A4A;
}

.rgp-content-section .rgp-checklist-container {
  background: #F0F8FF;
  border: 3px solid #1A1A1A;
  border-radius: 25px;
  box-shadow: 8px 8px 0px #1A1A1A;
}

.rgp-content-section .rgp-check-item {
  background: #FFFFFF;
  border: 2px solid #1A1A1A;
  border-radius: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.rgp-content-section .rgp-check-item:hover {
  background: #FFFBF2;
}

.rgp-content-section .rgp-checkbox {
  width: 30px;
  height: 30px;
  border: 2px solid #1A1A1A;
  border-radius: 8px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4CAF50;
  font-size: 1.2rem;
}

.rgp-content-section .rgp-check-item[data-status="checked"] {
  background: #E8F5E9;
}

.rgp-content-section .rgp-feedback-msg {
  background: #4CAF50;
  color: #FFFFFF;
  border: 3px solid #1A1A1A;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 4px 4px 0px #1A1A1A;
}

.rgp-content-section .rgp-ext-link {
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 0.75rem 1.5rem;
  border: 3px solid #1A1A1A;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 4px 4px 0px #1A1A1A;
  transition: all 0.2s ease;
}

.rgp-content-section .rgp-ext-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px #1A1A1A;
  color: #FF5733;
}

@media (max-width: 768px) {
  .rgp-content-section .rgp-heading {
    font-size: 1.8rem;
  }
  .rgp-content-section .rgp-subheading {
    font-size: 1.5rem;
  }
}

.main-comment-card {
    background-color: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0px #1A1A1A;
    transition: transform 0.2s ease;
}

.main-comment-card:hover {
    transform: scale(1.01);
}

.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    box-shadow: 4px 4px 0px #1A1A1A;
    flex-shrink: 0;
}

.comment-author-name {
    font-family: 'Fredoka', sans-serif;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.5rem;
}

.comment-message {
    font-family: 'Quicksand', sans-serif;
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-cartoon-action {
    background: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #1A1A1A;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.1s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cartoon-action:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.comment-timestamp {
    font-family: 'Fredoka', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px solid #1A1A1A;
}

.reply-comment-card {
    background-color: #F0F8FF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.avatar-sm {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-width: 3px;
}

.comment-message-sm {
    font-family: 'Quicksand', sans-serif;
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 0;
}

.comment-timestamp-sm {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.85rem;
    color: #1A1A1A;
    font-weight: 600;
    opacity: 0.7;
}

.btn-cartoon-link {
    background: transparent;
    border: none;
    color: #FF5733;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-cartoon-link:hover {
    color: #C70039;
}


/* ===== PAGE TEMPLATE: catalog ===== */
.catalog-detail-page {
    background-color: #FFFBF2;
    min-height: 100vh;
    font-family: 'Quicksand', sans-serif;
}

.catalog-detail-page h1,
.catalog-detail-page h2,
.catalog-detail-page h3 {
    font-family: 'Fredoka', sans-serif;
    color: #1A1A1A;
}

.game-hero-section {
    background: radial-gradient(circle at top, #FFFBF2 0%, #F0F8FF 100%);
}

.breadcrumb-item a {
    color: #FF5733;
    font-weight: 600;
    text-decoration: none;
}

.game-iframe-wrapper {
    background: #1A1A1A;
    border: 4px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 10px 10px 0px #1A1A1A;
    overflow: hidden;
    height: 600px;
    z-index: 10;
}

.game-iframe-wrapper.is-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #1A1A1A !important;
}

.game-iframe-wrapper.is-fullscreen .js-game-iframe {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.game-iframe-wrapper.is-fullscreen .iframe-placeholder-bg {
    display: none !important;
}

.game-iframe-wrapper.is-fullscreen .iframe-overlay-controls {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 100000 !important;
}

.js-game-iframe {
    border: none;
    background: transparent;
    display: block;
    width: 100%;
    height: 100%;
}

.iframe-placeholder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    z-index: -1;
}

.iframe-overlay-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
}

.btn-fullscreen,
.btn-exit-fullscreen {
    background: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 700;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s;
    color: #1A1A1A;
}

.btn-fullscreen:hover,
.btn-exit-fullscreen:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.game-content-card,
.sidebar-card {
    background: #FFFFFF;
    border: 3px solid #1A1A1A;
    border-radius: 20px;
    box-shadow: 8px 8px 0px #1A1A1A;
}

.detail-title {
    font-size: 2.5rem;
    text-shadow: 2px 2px 0px #FFD700;
}

.game-badge {
    background: #F0F0F0;
    border: 2px solid #1A1A1A;
    padding: 4px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.detail-description {
    line-height: 1.8;
    color: #4A4A4A;
    font-size: 1.1rem;
}

.custom-tabs .nav-link {
    background: #F0F0F0;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    color: #1A1A1A;
    font-weight: 700;
    margin-right: 10px;
    transition: all 0.2s;
}

.custom-tabs .nav-link.active {
    background: #FFD700;
    box-shadow: 4px 4px 0px #1A1A1A;
    transform: translateY(-2px);
}

.comment-input-block {
    background: #FFFBF2;
    border: 3px dashed #1A1A1A;
    border-radius: 15px;
}

.btn-cartoon-action {
    background: #FFD700;
    border: 3px solid #1A1A1A;
    border-radius: 12px;
    padding: 8px 24px;
    font-weight: 700;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s;
    color: #1A1A1A;
}

.btn-cartoon-action:hover {
    background: #FFC400;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.btn-cartoon-link {
    background: transparent;
    border: 2px solid #1A1A1A;
    border-radius: 8px;
    font-weight: 600;
    padding: 2px 10px;
    font-size: 0.85rem;
}

.login-error-msg {
    color: #FF5733;
    font-weight: 700;
    font-size: 0.9rem;
}

.avatar-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1A1A1A;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.avatar-lg {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.main-comment-card,
.reply-comment-card {
    border: 3px solid #1A1A1A;
    border-radius: 15px;
    padding: 20px;
    background: #FFF;
    box-shadow: 4px 4px 0px #1A1A1A;
}

.comment-author-name {
    font-weight: 700;
    color: #1A1A1A;
}

.btn-sidebar-cta {
    background: #FF5733;
    border: 3px solid #1A1A1A;
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 4px 4px 0px #1A1A1A;
    transition: all 0.2s;
}

.btn-sidebar-cta:hover {
    color: #FFF;
    background: #E44D26;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #1A1A1A;
}

.game-stats-list li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-stats-list li i {
    color: #FF5733;
    font-size: 1.2rem;
}

.custom-icon-list {
    list-style: none;
    padding: 0;
}

.custom-icon-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.custom-icon-list li::before {
    content: '\e138';
    font-family: 'Phosphor-Bold';
    position: absolute;
    left: 0;
    top: 2px;
    color: #4CAF50;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .game-iframe-wrapper {
        height: 400px;
    }

    .detail-title {
        font-size: 18px !important;
    }

    .section-subheading {
        font-size: 16px !important;
    }

    .catalog-detail-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .reply-comment-wrapper {
        margin-left: 1rem !important;
    }
}