:root {
    --color1: #eeb5eb;
    --color2: #1F7AFF;
    --color3: #c8f4f9;
    --color4: #3cacae;
    --color5: #dee2ff;
    --color-gray: #4a4a4a;
    --color-gray-bright: #505050;
    --color-background: #F0F2F5;
    --color-surface: white;
    --color-surface-dark: #F0F2F5;
    --color-text-primary: #18273A;
    --color-text-secondary: #6D8197;
    --color-text-muted: #7B8FA5;
    --color-border: #DEE8F1;
    --color-tag-bg: #F2F6FA;
    --color-tag-text: #405267;
    --color-cta-start: #9B59B6;
    --color-cta-end: #8E44AD;

    --main-font: 'Roboto', sans-serif;
    --header-font: 'Roboto Mono', monospace;
}

body {
    font-size: 18px;
    background-color: #F0F2F5;
    background-color: var(--color-background);
    font-family:'Roboto', sans-serif;
    font-family:var(--main-font);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Mono', monospace;
    font-family: var(--header-font);
}

@media (max-width: 640px) {
    .content h1 {
        font-size: 1.5em;
    }

    .content h2 {
        font-size: 1.4em;
    }

    .content h3 {
        font-size: 1.3em;
    }
}

.footer {
    padding: 3rem 1.5rem 1rem;
}

/* convenience styles */
.spacer-little {
    margin-bottom: 20px;
}

.spacer-large {
    margin-bottom: 60px;
}

.center {
    text-align: center;
}

/* header */

.navbar-item.logo {
    padding: 0;
}

.navbar-item.logo img {
    max-height: 2.75rem;
}

.navbar-item--search {
    flex-grow: 1;
    padding-right: 0;
}

.navbar-item--search .rounded_field {
    width: 100%;
}

/* tables */

.table__wrapper {
    overflow-x: auto;
}

/* All styles */

.container__main {
    padding-top: 2rem;
}

.content__nogroup {
    padding: 0 1rem 0 1rem;
}

.content__group {
    background-color: white;
    background-color: var(--color-surface);
    padding: 1rem;
    margin-bottom: 1rem;
}

.game__main-time {
    display: flex;
    justify-content: space-between;
    background-color: #3cacae;
    background-color: var(--color4);
    color: white;
    padding: 10px;
}

@media screen and (max-width: 640px) {
    .game__main-time {
        flex-direction: column;
    }
}

.game__info {
    display: flex;
}

.game__info-cover {
    margin-right: 1em;
}

@media (max-width: 640px) {
    .game__info {
        flex-direction: column;
    }
    .game__info-cover img {
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding-bottom: 10px;
    }
}

.game__info-cards {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
}

.game__card {
    background-color: white;
    background-color: var(--color-surface);
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    color: #4a4a4a;
    color: var(--color-gray);
    display: block;
    padding: 1.25rem;
    margin-bottom: 0.5rem;
}

.game__card .tag {
        margin-bottom: 10px;
    }

.game__card-main {
    display: flex;
}

.game__card-tags {
    margin-bottom: 0.5em;
}

.game__main-time-item {
    text-align: center;
}

.game__main-time-item-header {
    border-bottom: 1px solid;
}

.game__thumb {
    margin-right: 20px;
}

@media (min-width: 641px) {
    .game__thumb {
        width: 90px;
    }
}

/* Game preview card — clean light design */
.game__preview {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,251,255,0.98));
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(41, 59, 81, 0.1);
    color: #18273A;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-text-decoration: none;
    text-decoration: none;
    padding: 0;
}

.game__preview:hover {
    box-shadow: 0 12px 40px rgba(41, 59, 81, 0.16);
    transform: translateY(-2px);
}

.game__preview-cover {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 641px) {
    .game__preview-cover {
        width: 180px;
    }
}

@media (max-width: 640px) {
    .game__preview {
        flex-direction: column;
    }
    .game__preview-cover {
        width: 100%;
        height: 160px;
    }
}

.game__preview-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.game__preview-cover-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(13,34,49,0.1) 0%, rgba(13,34,49,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

.game__preview-cover-developer {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    width: -moz-fit-content;
    width: fit-content;
}

.game__preview-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game__preview-title {
    font-size: 22px;
    font-weight: 800;
    color: #18273A;
    color: var(--color-text-primary);
    margin: 0 0 6px;
    line-height: 1.2;
}

.game__preview-title a {
    color: inherit;
    -webkit-text-decoration: none;
    text-decoration: none;
}

.game__preview-title a:hover {
    color: #9B59B6;
    color: var(--color-cta-start);
}

.game__preview-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #6D8197;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.game__preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.game__preview-tags .tag {
    background: #F2F6FA;
    background: var(--color-tag-bg);
    color: #405267;
    color: var(--color-tag-text);
    border-radius: 14px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    margin: 0;
}

.game__preview-tags--platforms .tag {
    background: transparent;
    color: #7B8FA5;
    color: var(--color-text-muted);
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 12px;
}

.game__preview-cta {
    display: inline-block;
    background: linear-gradient(90deg, #9B59B6, #8E44AD);
    background: linear-gradient(90deg, var(--color-cta-start), var(--color-cta-end));
    color: white;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-text-decoration: none;
    text-decoration: none;
    margin-top: auto;
    width: -moz-fit-content;
    width: fit-content;
    transition: opacity 0.2s ease;
}

.game__preview-cta:hover {
    opacity: 0.9;
    color: white;
}

/* Right panel: rating + time */
.game__preview-side {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 24px;
    gap: 16px;
}

@media (max-width: 640px) {
    .game__preview-side {
        flex-direction: row;
        justify-content: center;
        padding: 16px 20px;
        border-top: 1px solid #DEE8F1;
        border-top: 1px solid var(--color-border);
    }
}

.game__preview-rating {
    text-align: center;
}

.game__preview-rating-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #7B8FA5;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.game__preview-rating-value {
    font-size: 32px;
    font-weight: 800;
    color: #18273A;
    color: var(--color-text-primary);
    line-height: 1;
}

.game__preview-rating-value span {
    font-size: 16px;
    font-weight: 700;
    color: #7B8FA5;
    color: var(--color-text-muted);
}

/* Time to beat panel */
.game__preview-time {
    background: linear-gradient(135deg, #F8FBFF, #EEF4FB);
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 14px 18px;
    min-width: 160px;
}

.game__preview-time-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #7B8FA5;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.game__preview-time-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0;
}

.game__preview-time-row:not(:last-child) {
    border-bottom: 1px solid #DEE8F1;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 6px;
    margin-bottom: 4px;
}

.game__preview-time-style {
    font-size: 13px;
    font-weight: 700;
    color: #7B8FA5;
    color: var(--color-text-muted);
}

.game__preview-time-value {
    font-size: 18px;
    font-weight: 800;
    color: #18273A;
    color: var(--color-text-primary);
    margin-left: 12px;
}

/* Game details page */
.game__details-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,251,255,0.98));
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(41, 59, 81, 0.1);
    color: #18273A;
    color: var(--color-text-primary);
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    overflow: hidden;
}

.game__details-cover {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    width: 280px;
}

.game__details-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.game__details-body {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.game__details-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #6D8197;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.game__details-meta {
    font-size: 14px;
    font-weight: 600;
    color: #6D8197;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.game__details-side {
    border-left: 1px solid #DEE8F1;
    border-left: 1px solid var(--color-border);
}

.game__details-rating-count {
    font-size: 12px;
    color: #7B8FA5;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.game__details-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,251,255,0.98));
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(41, 59, 81, 0.1);
    padding: 24px;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .game__details-hero {
        flex-direction: column;
    }
    .game__details-cover {
        width: 60%;
        margin: 20px auto;
        border-radius: 12px;
    }
    .game__details-side {
        border-left: none;
    }
}

.game__card-header {
    background-color: #4a4a4a;
    background-color: var(--color-gray);
    border-radius: 0px;
    padding: 0.75em 1em;
}

.game__rating {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.game__rating-count {
    font-size: 80%;
}

.game__videos {
    overflow: scroll;
    width: 100%;
    white-space: nowrap;
    background-color: white;
    background-color: var(--color-surface);
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.game__single-video {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.game__single-video-content {
    display: flex;
    flex-direction: column;
}

.game__similar {
    overflow: scroll;
    width: 100%;
    white-space: nowrap;
}

.game__similar .game__card {
    background-color: white;
    background-color: var(--color-surface);
    margin-bottom: 1rem;
}

/* buttons */

.button__link {
    background: linear-gradient(90deg, #9B59B6, #8E44AD);
    background: linear-gradient(90deg, var(--color-cta-start), var(--color-cta-end));
    border-color: transparent;
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
}

/* Search input */

.rounded_field {
    min-width: 250px;
    min-height: 36px;
    border-radius: 20px;
    border: 1px solid #DEE8F1;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

#search_autocomplete_placeholder {
    flex: 1;
    display: flex;
    position: relative;
}

.search-autocomplete {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.search-autocomplete input {
        border: 0;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 16px;
        flex: 1;
        background: transparent;
        outline: none;
        color: #18273A;
        color: var(--color-text-primary);
    }

.search-autocomplete__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    background: var(--color-surface);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow: hidden;
}

.search-autocomplete__item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #4a4a4a;
    color: var(--color-gray);
    -webkit-text-decoration: none;
    text-decoration: none;
    gap: 10px;
}

.search-autocomplete__item:hover,.search-autocomplete__item.search-autocomplete__item--active {
        background-color: #dee2ff;
        background-color: var(--color5);
    }

.search-autocomplete__thumb {
    width: 32px;
    height: 32px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-autocomplete__name {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/******* Forms ********/

.form__select-input-cancel {
    margin-left: 1em;
    padding-top: 0.5em;
}

/* navigation */
.navigation {
    display: flex;
    justify-content: center;
}
.navigation .tag {
        margin: 0px 20px 0px 20px;
    }

/* rating */

.circle__wrapper {
    position: relative;
}

.circle__rating {
    transform: rotate(-90deg);
}

.circle__content {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 50px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    height: 50px;
    font-size: 30px;
    box-sizing: border-box;
    text-align: center;
}

/* games-search */

@media (min-width: 641px) {
    .games-search__form {
        width: 50%;
    }
}

/* ========== Dark Mode ========== */
@media (prefers-color-scheme: dark) {
    :root {
        --csstools-color-scheme--light: initial;
        color-scheme: light dark;

        --color1: #c07dbd;
        --color2: #4D9AFF;
        --color3: #1a3a3d;
        --color4: #2a8a8c;
        --color5: #2a2d45;
        --color-gray: #c8c8c8;
        --color-gray-bright: #d0d0d0;
        --color-background: #121620;
        --color-surface: #1A2332;
        --color-surface-dark: #0F1724;
        --color-text-primary: #E2E8F0;
        --color-text-secondary: #94A3B8;
        --color-text-muted: #64748B;
        --color-border: #2D3748;
        --color-tag-bg: #1E293B;
        --color-tag-text: #CBD5E1;
        --color-cta-start: #B370CF;
        --color-cta-end: #9B59B6;
    }
    @media (prefers-color-scheme: dark) {
    :root {
        --csstools-color-scheme--light:  ;
    }
    }

    /* Bulma overrides */
    html {
        background-color: #F0F2F5;
        background-color: var(--color-background);
    }

    body {
        color: #4a4a4a;
        color: var(--color-gray);
    }

    a {
        color: #1F7AFF;
        color: var(--color2);
    }

    a:hover {
        color: #18273A;
        color: var(--color-text-primary);
    }

    strong {
        color: #18273A;
        color: var(--color-text-primary);
    }

    .content h1,
    .content h2,
    .content h3,
    .content h4,
    .content h5,
    .content h6 {
        color: #18273A;
        color: var(--color-text-primary);
    }

    .box {
        background-color: white;
        background-color: var(--color-surface);
    }

    .table {
        background-color: white;
        background-color: var(--color-surface);
        color: #4a4a4a;
        color: var(--color-gray);
    }

    .table td,
    .table th {
        border-color: #DEE8F1;
        border-color: var(--color-border);
        color: #4a4a4a;
        color: var(--color-gray);
    }

    .table thead td,
    .table thead th,
    .content table thead td,
    .content table thead th {
        color: #18273A;
        color: var(--color-text-primary);
    }

    .tag:not(body) {
        background-color: #F2F6FA;
        background-color: var(--color-tag-bg);
        color: #405267;
        color: var(--color-tag-text);
    }

    .tag.is-light {
        background-color: #F2F6FA;
        background-color: var(--color-tag-bg);
        color: #405267;
        color: var(--color-tag-text);
    }

    .navbar {
        background-color: #F0F2F5;
        background-color: var(--color-surface-dark);
    }

    .navbar-item.logo img {
        filter: brightness(0) invert(1);
    }

    .navbar-item,
    .navbar-link {
        color: #4a4a4a;
        color: var(--color-gray);
    }

    .navbar-item:hover,
    .navbar-link:hover {
        background-color: white;
        background-color: var(--color-surface);
        color: #1F7AFF;
        color: var(--color2);
    }

    .navbar-burger {
        color: #4a4a4a;
        color: var(--color-gray);
    }

    .navbar-menu {
        background-color: #F0F2F5;
        background-color: var(--color-surface-dark);
    }

    .navbar-dropdown {
        background-color: white;
        background-color: var(--color-surface);
    }

    .footer {
        background-color: #F0F2F5;
        background-color: var(--color-surface-dark);
    }

    .input,
    .textarea,
    .select select {
        background-color: white;
        background-color: var(--color-surface);
        border-color: #DEE8F1;
        border-color: var(--color-border);
        color: #18273A;
        color: var(--color-text-primary);
    }

    .breadcrumb a {
        color: #1F7AFF;
        color: var(--color2);
    }

    .circle__rating circle:first-child {
        stroke: #DEE8F1;
        stroke: var(--color-border);
    }

    /* App-specific overrides */
    .game__card {
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.3);
    }

    .game__preview {
        background: linear-gradient(135deg, rgba(26,35,50,0.95), rgba(18,27,42,0.98));
    }

    .game__preview:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }

    .game__details-hero {
        background: linear-gradient(135deg, rgba(26,35,50,0.95), rgba(18,27,42,0.98));
    }

    .game__details-section {
        background: linear-gradient(135deg, rgba(26,35,50,0.95), rgba(18,27,42,0.98));
    }

    .game__preview-time {
        background: linear-gradient(135deg, #F2F6FA, #172033);
        background: linear-gradient(135deg, var(--color-tag-bg), #172033);
    }

    .game__card-header {
        background-color: #F2F6FA;
        background-color: var(--color-tag-bg);
    }
}


/*# sourceMappingURL=main.bundle.css.b0fa60e4869e.map */