﻿/* ============================================================================
   GAMEFILLED - SITE.CSS
   Ficheiro global de estilos do website

   Objetivo deste ficheiro:
   - Definir estilos base do site
   - Controlar navbar, header, footer, forms, botões e dropdowns
   - Estilizar páginas específicas: search, games, home, profile, settings, auth
   - Garantir coerência visual do tema dark + verde
   - Evitar conflitos e duplicações de regras
   ============================================================================ */


/* ============================================================================
   RESET / BASE GLOBAL
   - box-sizing global evita cálculos inesperados de larguras
   - overflow-x: hidden remove scroll lateral acidental
   ============================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: #00b020 rgba(255,255,255,0.08);
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

html,
body {
    background: #0e1015;
    color: #e5e7eb;
    font-size: 0.92rem;
    line-height: 1.45;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


/* ============================================================================
   LINKS
   ============================================================================ */
a {
    color: #00b020;
    text-decoration: none;
}

    a:hover {
        color: #22c55e;
        text-decoration: underline;
    }


/* ============================================================================
   HEADER
   - z-index alto para ficar acima dos heros/fullbleed
   ============================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}


/* ============================================================================
   NAVBAR
   ============================================================================ */
.navbar {
    background: linear-gradient(to bottom, #14161c, #0e1015);
    border-bottom: none;
    box-shadow: none;
    font-size: 1rem;
    line-height: 1.45;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.navbar-brand img {
    filter: brightness(1.2);
}

#gamefilled-logo1 {
    height: 42px;
}

.nav-link {
    color: #d1d5db !important;
    font-weight: 500;
    font-size: 0.98rem;
}

    .nav-link:hover {
        color: #fff !important;
    }


/* ============================================================================
   AJUSTES FINOS DO BLOCO DE PERFIL NA NAVBAR
   ============================================================================ */
#profile-li #nav-username {
    padding-right: 0.25rem !important;
}

#profile-li .profile-toggle {
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
    margin-left: 0 !important;
}

#profile-li #profile-compact {
    gap: 0;
}

.profile-toggle {
    padding-left: .25rem;
    padding-right: .25rem;
}

.hide-caret.dropdown-toggle::after {
    display: none !important;
}


/* ============================================================================
   SEARCH NO HEADER
   ============================================================================ */
.search-wrap {
    width: 200px;
    position: relative;
}

    .search-wrap .search-bar {
        width: 100%;
        background: #1f2937;
        border: none;
        color: #fff;
        padding-right: 2.6rem !important;
        border-radius: 6px;
    }

.search-bar::placeholder {
    color: #9ca3af;
}

/* Botão da lupa posicionado dentro do input */
.search-icon-btn,
.search-icon-inside {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9ca3af;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

    .search-icon-btn:hover,
    .search-icon-inside:hover {
        color: #fff;
        background: rgba(255,255,255,0.04);
    }

    .search-icon-btn:focus,
    .search-icon-inside:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(0,176,32,.18);
    }

    /* Override para manter o botão visualmente “limpo” */
    .search-icon-btn:hover,
    .search-icon-btn:focus,
    .search-icon-btn:active {
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }

@media (max-width: 768px) {
    .search-wrap {
        width: 100%;
    }
}


/* ============================================================================
   BOTÃO X DO INPUT TYPE SEARCH
   ============================================================================ */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 14px;
    width: 14px;
    cursor: pointer;
    background-color: #00b020;
    mask-image: url("data:image/svg+xml;utf8,\
        <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
        <path d='M18 6L6 18M6 6l12 12' stroke='black' stroke-width='2' stroke-linecap='round'/>\
        </svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,\
        <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
        <path d='M18 6L6 18M6 6l12 12' stroke='black' stroke-width='2' stroke-linecap='round'/>\
        </svg>");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

    input[type="search"]::-webkit-search-cancel-button:hover {
        background-color: #22c55e;
    }


/* ============================================================================
   DROPDOWNS GLOBAIS
   ============================================================================ */
.dropdown-menu {
    background: #1b1e25;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.dropdown-item {
    color: #e5e7eb;
    padding: 8px 16px;
}

    .dropdown-item:hover {
        background: #2a2f3a;
        color: #fff;
    }


/* ============================================================================
   BOTÕES
   ============================================================================ */
.btn-primary,
.btn-main {
    background: #00b020;
    border: none;
    font-weight: 600;
}

    .btn-primary:hover,
    .btn-main:hover {
        background: #00961b;
    }


/* ============================================================================
   FORMS
   ============================================================================ */
.form-control {
    background: #1f2937;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    border-radius: 8px;
}

    .form-control::placeholder {
        color: #9ca3af;
    }

    .form-control:focus {
        background: #1f2937;
        color: #fff;
        border-color: #00b020;
        box-shadow: 0 0 0 2px rgba(0,176,32,.3);
    }


/* ============================================================================
   CAMPOS ESTILO "BACKLOGGD"
   ============================================================================ */
.backloggd-field {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: inherit;
    border-radius: 8px;
    padding: 10px 12px;
}

    .backloggd-field:focus {
        outline: none;
        border-color: rgba(255,255,255,0.18);
        box-shadow: none;
    }


/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: #0e1015;
    border-top: none;
    box-shadow: none;
    color: #9ca3af;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: auto;
    min-height: 0;
    margin: 0;
    font-size: 0.95rem;
}

    .footer .container {
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .footer a {
        color: #9ca3af;
        font-size: 0.95rem;
        line-height: 1.6;
    }

        .footer a:hover {
            color: #fff;
        }

    .footer .row {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        align-items: center;
    }


/* ============================================================================
   UTILITÁRIOS
   ============================================================================ */
.card {
    border-radius: 14px;
}

.shadow-lg {
    box-shadow: 0 30px 80px rgba(0,0,0,.5) !important;
}


/* ============================================================================
   SETTINGS
   ============================================================================ */
.settings-wrap {
    margin-top: 14px;
    margin-bottom: 18px;
}

.settings-page {
    font-size: 0.9rem;
}

.settings-nav {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}

.settings-nav-title {
    padding: 14px 14px 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .settings-nav-title h3 {
        font-size: 1.35rem;
        font-weight: 600;
    }

.settings-nav-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.settings-separator {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 6px 6px;
}

.settings-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .settings-link:hover {
        text-decoration: none;
        color: inherit;
    }

.settings-item {
    position: relative;
    padding: 12px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

    .settings-item:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.12);
        transform: translateY(-1px);
    }

    .settings-item:active {
        transform: translateY(0);
    }

.settings-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 650;
}

    .settings-item-top i {
        width: 18px;
        text-align: center;
        opacity: 0.9;
    }

.settings-item p {
    margin: 4px 0 0 28px;
    font-size: 0.84rem;
    opacity: 0.70;
}

.settings-item.current {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.18);
}

    .settings-item.current::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 8px;
        bottom: 8px;
        width: 4px;
        border-radius: 10px;
        background: #00b020;
    }

.settings-content {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 18px;
}

.settings-content-header {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 14px;
}

.subtitle-text {
    opacity: 0.72;
    font-size: 0.86rem;
}

/* Overrides para list-group Bootstrap dentro de settings */
.settings-nav .list-group-item {
    background: rgba(255,255,255,0.015) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
    color: inherit !important;
}

    .settings-nav .list-group-item:hover {
        background: rgba(255,255,255,0.06) !important;
        border-color: rgba(255,255,255,0.12) !important;
    }

    .settings-nav .list-group-item.active {
        background: rgba(255,255,255,0.09) !important;
        border-color: rgba(255,255,255,0.18) !important;
        color: inherit !important;
    }

        .settings-nav .list-group-item.active::before {
            content: "";
            position: absolute;
            left: -1px;
            top: 8px;
            bottom: 8px;
            width: 4px;
            border-radius: 10px;
            background: #00b020;
        }

.settings-nav .dropdown-divider {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}


/* ============================================================================
   IGDB AUTOCOMPLETE - HEADER
   ============================================================================ */
.igdb-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 2000;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.65);
    overflow: hidden;
    max-height: 520px;
    overflow-y: auto;
}

.igdb-thumb,
.igdb-sub {
    display: none !important;
}

.igdb-item {
    display: block;
    padding: 8px 10px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

    .igdb-item:hover {
        background: rgba(255,255,255,0.06);
        text-decoration: none;
        color: inherit;
    }

    .igdb-item.active {
        background: rgba(0, 176, 32, 0.14);
    }

.igdb-title {
    font-weight: 600;
    font-size: 0.82rem;
    line-height: 1.05rem;
    margin: 0;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.igdb-footer {
    padding: 10px 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
    opacity: 0.78;
}

.igdb-dropdown::-webkit-scrollbar {
    width: 10px;
}

.igdb-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.10);
    border-radius: 10px;
}

    .igdb-dropdown::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.16);
    }


/* ============================================================================
   SEARCH PAGE
   ============================================================================ */
.search-page {
    max-width: 920px;
    margin: 0 auto;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e5e7eb;
}

    .search-title span {
        color: #c7d2fe;
    }

.search-empty {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px 16px;
    color: rgba(229,231,235,0.85);
}

.search-result {
    display: flex;
    gap: 14px;
    padding: 14px 10px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
}

    .search-result:hover {
        background: rgba(255,255,255,0.04);
        text-decoration: none;
        color: inherit;
    }

.top-result {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
}

.sr-cover {
    width: 74px;
    height: 104px;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}

    .sr-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.sr-cover-fallback {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.06);
}

.sr-main {
    min-width: 0;
    flex: 1 1 auto;
}

.sr-title-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.sr-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    color: #f3f4f6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-result .sr-title {
    font-size: 2.1rem;
}

.sr-year {
    font-size: 0.95rem;
    opacity: 0.7;
    white-space: nowrap;
}

.sr-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.sr-pill {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(229,231,235,0.92);
}

.sr-pill-main {
    background: rgba(168, 85, 247, 0.18);
    border-color: rgba(168, 85, 247, 0.25);
}

.sr-more {
    font-size: 0.85rem;
    opacity: 0.75;
}

.sr-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 10px 0;
}


/* ============================================================================
   /GAMES - GRID DE JOGOS
   ============================================================================ */
.games-page {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 18px;
}

.games-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.games-count {
    color: rgba(229,231,235,0.75);
    font-size: 1rem;
    padding-top: 2px;
}

.games-sortbar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.games-sortbar-label {
    opacity: 0.75;
    font-weight: 600;
    margin-right: 2px;
}

.games-sortbar-arrow {
    color: rgba(229,231,235,0.75);
    text-decoration: none;
    padding: 2px 4px;
    line-height: 1;
}

    .games-sortbar-arrow:hover {
        color: #00b020;
        text-decoration: none;
    }

.games-sortbar-selected {
    color: #00b020;
    font-weight: 800;
    text-decoration: none;
    padding: 0;
}

    .games-sortbar-selected:hover {
        color: #22c55e;
        text-decoration: none;
    }

.games-sortbar-dd {
    position: relative;
}

    .games-sortbar-dd .dropdown-toggle::after {
        display: none !important;
    }

    .games-sortbar-dd .dropdown-menu {
        margin-top: 8px;
        min-width: 220px;
        right: 0;
        left: auto;
    }

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

/* Card individual do jogo */
.game-card {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 18px 34px rgba(0,0,0,0.45);
    transition: transform .12s ease, border-color .12s ease, background .12s ease;
    text-decoration: none;
    position: relative;
}

    .game-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.045);
        text-decoration: none;
    }

.game-cover {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    position: relative;
}

    .game-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.game-cover-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

/* Overlay de hover com título */
.game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.20) 100%);
    opacity: 0;
    transition: opacity .14s ease;
    pointer-events: none;
    z-index: 2;
}

.game-card::after {
    content: attr(data-title);
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.15;
    color: #ffffff;
    opacity: 0;
    transition: opacity .14s ease, transform .14s ease;
    pointer-events: none;
    z-index: 3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card:hover::before,
.game-card:hover::after,
.game-card:focus-visible::before,
.game-card:focus-visible::after {
    opacity: 1;
}

.game-card:hover::after {
    transform: translateY(-50%) scale(1.01);
}

.game-card:focus,
.game-card:focus-visible {
    outline: none;
}

.game-meta {
    margin-top: 6px;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
    color: rgba(229,231,235,0.82);
}

.game-card:hover .game-meta {
    color: rgba(229,231,235,0.92);
}

/* Touch devices: overlay sempre visível */
@media (hover: none) and (pointer: coarse) {
    .game-card::before,
    .game-card::after {
        opacity: 1;
    }
}

/* Paginação */
.games-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .games-pagination .pg {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        color: #e5e7eb;
        text-decoration: none;
        font-weight: 600;
    }

        .games-pagination .pg:hover {
            background: rgba(255,255,255,0.08);
            text-decoration: none;
            color: #fff;
        }

        .games-pagination .pg.active {
            background: rgba(0,176,32,0.18);
            border-color: rgba(0,176,32,0.35);
            color: #eaffef;
        }

        .games-pagination .pg.disabled {
            opacity: .45;
            pointer-events: none;
        }

    .games-pagination .dots {
        background: transparent;
        border: none;
        opacity: .65;
        user-select: none;
    }

/* Responsivo do grid */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .games-topbar {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ============================================================================
   HEADER LOADER
   ============================================================================ */
#header-loader {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 5000;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease;
}

    #header-loader.active {
        opacity: 1;
    }

.header-loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e, #00b020, #4ade80);
    box-shadow: 0 0 12px rgba(34,197,94,.55);
    animation: header-loader-move 1.2s ease-in-out infinite;
}

@keyframes header-loader-move {
    0% {
        width: 0%;
        transform: translateX(0);
    }

    40% {
        width: 60%;
    }

    100% {
        width: 100%;
        transform: translateX(100%);
    }
}


/* ============================================================================
   SCROLLBAR GLOBAL
   ============================================================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.06);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #22c55e, #00b020);
    border-radius: 999px;
    border: 2px solid #0e1015;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #4ade80, #00b020);
    }


/* ============================================================================
   FULLBLEED HEADER
   ============================================================================ */
body.fullbleed .site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent !important;
}

body.fullbleed #primary-nav,
body.fullbleed #primary-nav.navbar,
body.fullbleed .navbar,
body.fullbleed .navbar--overlay {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

body.fullbleed #header-loader {
    top: 56px;
}


/* ============================================================================
   HOME / INDEX
   ============================================================================ */
.gf-home-page {
    position: relative;
    overflow-x: clip;
}

body.fullbleed .gf-home-page {
    margin-top: 0;
    padding-top: 0;
}

body.fullbleed #primary-nav.navbar {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.gf-home-hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
}

.gf-home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .gf-home-hero__bg img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        filter: saturate(0.95) brightness(0.42);
        transform: scale(1.08);
    }

.gf-home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(9,11,15,0.78) 0%, rgba(9,11,15,0.55) 14%, rgba(9,11,15,0.34) 30%, rgba(9,11,15,0.28) 46%, rgba(9,11,15,0.34) 62%, rgba(14,16,21,0.82) 86%, rgba(14,16,21,1) 100% ), radial-gradient( 120% 115% at 50% 26%, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.40) 100% );
}

.gf-home-shell {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 150px 24px 120px;
}

.gf-home-hero__content {
    max-width: 760px;
}

.gf-home-hero__content--logged {
    max-width: 820px;
}

.gf-home-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(229,231,235,0.86);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.gf-home-title {
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #f9fafb;
    text-shadow: 0 12px 34px rgba(0,0,0,0.34);
}

.gf-home-title--logged {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.gf-home-subtitle {
    margin: 22px 0 0;
    max-width: 720px;
    font-size: 1.12rem;
    line-height: 1.7;
    color: rgba(229,231,235,0.86);
}

.gf-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.gf-home-btn {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.96rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.gf-home-btn--ghost {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: #f3f4f6;
}

    .gf-home-btn--ghost:hover {
        background: rgba(255,255,255,0.09);
        color: #fff;
        text-decoration: none;
    }

.gf-home-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 52px;
}

.gf-home-features--logged .gf-home-feature {
    background: rgba(18,22,30,0.62);
}

.gf-home-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: rgba(20,24,32,0.58);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.gf-home-feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0,176,32,0.16);
    border: 1px solid rgba(0,176,32,0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    flex: 0 0 auto;
}

.gf-home-feature__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .gf-home-feature__text strong {
        font-size: 1rem;
        color: #f3f4f6;
    }

    .gf-home-feature__text span {
        font-size: 0.9rem;
        color: rgba(229,231,235,0.74);
        line-height: 1.55;
    }

.gf-home-main {
    position: relative;
    z-index: 2;
    margin-top: -20px;
    padding-bottom: 28px;
}

.gf-home-section {
    margin-bottom: 64px;
}

.gf-home-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 18px;
}

.gf-home-section__eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(229,231,235,0.58);
    margin-bottom: 6px;
    font-weight: 700;
}

.gf-home-section__title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    color: #f3f4f6;
}

.gf-home-section__link {
    color: #86efac;
    font-weight: 700;
    white-space: nowrap;
}

.gf-home-empty {
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(229,231,235,0.72);
}

.gf-home-cta {
    margin: 14px 0 28px;
}

.gf-home-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.gf-home-cta__title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f9fafb;
}

.gf-home-cta__text {
    margin: 10px 0 0;
    color: rgba(229,231,235,0.76);
    max-width: 720px;
}

.gf-home-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .gf-home-hero {
        min-height: 860px;
    }

    .gf-home-shell {
        padding: 135px 18px 105px;
    }

    .gf-home-features {
        grid-template-columns: 1fr;
    }

    .gf-home-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .gf-home-hero {
        min-height: 880px;
    }

    .gf-home-hero__bg img {
        object-position: center 34%;
        transform: scale(1.12);
    }

    .gf-home-shell {
        padding: 120px 16px 96px;
    }

    .gf-home-title {
        font-size: 3.4rem;
    }

    .gf-home-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .gf-home-main {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .gf-home-title {
        font-size: 2.8rem;
    }

    .gf-home-subtitle {
        font-size: 1rem;
    }

    .gf-home-actions,
    .gf-home-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gf-home-btn {
        width: 100%;
    }
}


/* ============================================================================
   PROFILE
   ============================================================================ */
.gf-profile-page {
    min-height: 100%;
}

.gf-profile-hero {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    margin-top: -74px;
    padding-top: 74px;
}

.gf-profile-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(0.92) brightness(0.54);
}

.gf-profile-hero__bg--editable {
    display: block;
    text-decoration: none;
}

    .gf-profile-hero__bg--editable:hover {
        text-decoration: none;
    }

.gf-profile-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(14,16,21,0.82) 0%, rgba(14,16,21,0.35) 14%, rgba(14,16,21,0.15) 50%, rgba(14,16,21,0.35) 86%, rgba(14,16,21,0.82) 100% ), linear-gradient( to bottom, rgba(8,10,14,0.52) 0%, rgba(8,10,14,0.18) 18%, rgba(14,16,21,0.78) 78%, rgba(14,16,21,1) 100% );
}

.gf-profile-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 116px;
    padding-bottom: 36px;
}

.gf-profile-summary {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.gf-profile-avatar-wrap {
    align-self: center;
}

.gf-profile-avatar {
    width: 132px;
    height: 132px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
    border: 3px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    background: #151821;
}

.gf-profile-avatar-edit {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    overflow: hidden;
}

.gf-profile-avatar-edit__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,10,14,0.58);
    color: #fff;
    opacity: 0;
    transition: opacity .16s ease;
    font-size: 1.1rem;
}

.gf-profile-avatar-edit:hover .gf-profile-avatar-edit__overlay {
    opacity: 1;
}

.gf-profile-identity {
    min-width: 0;
}

.gf-profile-name {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 900;
    color: #f9fafb;
}

.gf-profile-username {
    margin-top: 8px;
    color: rgba(229,231,235,0.78);
    font-size: 1rem;
    font-weight: 600;
}

.gf-profile-bio {
    margin: 14px 0 0;
    max-width: 760px;
    color: rgba(229,231,235,0.86);
    line-height: 1.65;
    font-size: 1rem;
}

.gf-profile-bio--empty {
    color: rgba(229,231,235,0.58);
    font-style: italic;
}

.gf-profile-header-side {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-width: 240px;
}

.gf-profile-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 12px;
}

.gf-profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(20,24,32,0.52);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(8px);
}

    .gf-profile-stat strong {
        font-size: 1.65rem;
        font-weight: 900;
        line-height: 1;
        color: #f9fafb;
    }

    .gf-profile-stat span {
        margin-top: 8px;
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: rgba(229,231,235,0.64);
        text-align: center;
    }

.gf-profile-stat--link:hover {
    text-decoration: none;
    border-color: rgba(0,176,32,0.28);
    background: rgba(20,24,32,0.64);
}

.gf-profile-side-action {
    display: flex;
    justify-content: flex-end;
}

.gf-profile-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gf-profile-btn {
    min-width: 140px;
    min-height: 44px;
    border-radius: 12px;
    font-weight: 700;
}

.gf-profile-btn--small {
    min-width: 126px;
    min-height: 36px;
    padding: 7px 14px;
    font-size: 0.90rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gf-profile-banner-edit {
    position: absolute;
    top: 92px;
    right: 22px;
    z-index: 4;
    text-decoration: none;
}

    .gf-profile-banner-edit span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 12px;
        background: rgba(20,24,32,0.62);
        border: 1px solid rgba(255,255,255,0.10);
        color: #f3f4f6;
        font-weight: 700;
        backdrop-filter: blur(8px);
    }

    .gf-profile-banner-edit:hover {
        text-decoration: none;
    }

        .gf-profile-banner-edit:hover span {
            background: rgba(20,24,32,0.78);
            color: #fff;
        }

.gf-profile-tabs {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(14,16,21,0.92);
    backdrop-filter: blur(10px);
}

.gf-profile-tabs__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

    .gf-profile-tabs__inner a {
        color: rgba(229,231,235,0.72);
        text-decoration: none;
        font-weight: 600;
        padding-bottom: 8px;
        border-bottom: 2px solid transparent;
    }

        .gf-profile-tabs__inner a:hover {
            color: #fff;
            text-decoration: none;
        }

        .gf-profile-tabs__inner a.active {
            color: #fff;
            border-bottom-color: #00b020;
        }

.gf-profile-tabs__bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 64px;
}

.gf-profile-tabs__actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
    padding-bottom: 4px;
}

.gf-profile-content {
    padding-top: 28px;
    padding-bottom: 26px;
}

.gf-profile-panel {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.gf-profile-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

    .gf-profile-panel__head h2 {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
        color: #f3f4f6;
    }

    .gf-profile-panel__head a {
        color: #86efac;
        font-size: 0.92rem;
        font-weight: 700;
    }

.gf-profile-empty-state {
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(229,231,235,0.70);
}

.gf-profile-quickstats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gf-profile-quickstat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

    .gf-profile-quickstat span {
        color: rgba(229,231,235,0.68);
    }

    .gf-profile-quickstat strong {
        color: #f9fafb;
        font-weight: 800;
    }

.gf-online {
    color: #4ade80 !important;
}

.gf-offline {
    color: #cbd5e1 !important;
}


/* ============================================================================
   FAVORITE GAMES - PERFIL E EDITOR
   ============================================================================ */
.gf-profile-favorites-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.gf-profile-favorite-card {
    position: relative;
    display: block;
    width: 170px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    transition: transform .14s ease, border-color .14s ease;
}

    .gf-profile-favorite-card:hover {
        transform: translateY(-2px);
        border-color: rgba(0,176,32,0.25);
        text-decoration: none;
    }

    .gf-profile-favorite-card img,
    .gf-profile-favorite-slot {
        width: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        display: block;
    }

.gf-profile-favorite-slot {
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
}

.gf-profile-favorite-card.is-primary {
    border-color: rgba(0,176,32,0.40);
    box-shadow: 0 0 0 1px rgba(0,176,32,0.18), 0 16px 34px rgba(0,176,32,0.10), 0 14px 30px rgba(0,0,0,0.18);
}

.gf-profile-favorite-card__badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,176,32,0.92);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.gf-favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gf-favorite-editor {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.gf-favorite-editor__head {
    margin-bottom: 14px;
}

    .gf-favorite-editor__head h3 {
        margin: 0;
        font-size: 1.02rem;
        font-weight: 800;
        color: #f3f4f6;
    }

.gf-favorite-preview {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 132px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

    .gf-favorite-preview.is-filled {
        background: rgba(255,255,255,0.035);
    }

.gf-favorite-preview__img {
    width: 92px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.gf-favorite-preview__empty {
    width: 92px;
    aspect-ratio: 2 / 3;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    color: rgba(229,231,235,0.58);
    font-size: 0.82rem;
}

.gf-favorite-preview__meta {
    min-width: 0;
}

.gf-favorite-preview__name {
    font-weight: 800;
    color: #f9fafb;
    line-height: 1.3;
}

.gf-favorite-preview__sub {
    margin-top: 6px;
    color: rgba(229,231,235,0.64);
    font-size: 0.9rem;
}

.gf-favorite-search {
    position: relative;
    margin-top: 14px;
}

.gf-favorite-search__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.55);
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}

.gf-favorite-search__item {
    width: 100%;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

    .gf-favorite-search__item:hover {
        background: rgba(255,255,255,0.05);
    }

.gf-favorite-search__thumb {
    width: 54px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
}

    .gf-favorite-search__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.gf-favorite-search__thumb-empty {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.gf-favorite-search__meta {
    min-width: 0;
}

.gf-favorite-search__title {
    font-weight: 700;
    color: #f3f4f6;
    line-height: 1.25;
}

.gf-favorite-search__sub {
    margin-top: 4px;
    color: rgba(229,231,235,0.64);
    font-size: 0.88rem;
}

.gf-favorite-search__empty {
    padding: 12px 14px;
    color: rgba(229,231,235,0.68);
}

/* Estilo Letterboxd / Backloggd */
.gf-favorites-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.gf-favorites-toolbar__hint {
    color: rgba(229,231,235,0.68);
    font-size: 0.94rem;
}

.gf-favorites-canvas {
    min-height: 180px;
}

.gf-favorites-empty {
    padding: 28px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}

.gf-favorites-empty__title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #f3f4f6;
}

.gf-favorites-empty__text {
    margin-top: 8px;
    color: rgba(229,231,235,0.68);
}

.gf-favorites-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.gf-favorite-card-editor {
    position: relative;
    cursor: grab;
}

    .gf-favorite-card-editor.is-dragging {
        opacity: 0.55;
        transform: scale(0.98);
        cursor: grabbing;
    }

.gf-favorite-card-editor__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

    .gf-favorite-card-editor__media img,
    .gf-favorite-card-editor__fallback {
        width: 100%;
        aspect-ratio: 2 / 3;
        object-fit: cover;
        display: block;
    }

.gf-favorite-card-editor__fallback {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.gf-favorite-card-editor__actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .16s ease, transform .16s ease;
}

.gf-favorite-card-editor:hover .gf-favorite-card-editor__actions {
    opacity: 1;
    transform: translateY(0);
}

.gf-favorite-card-editor__btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(14,16,21,0.76);
    color: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .gf-favorite-card-editor__btn:hover {
        background: rgba(14,16,21,0.92);
    }

.gf-favorite-card-editor.is-primary .gf-favorite-card-editor__btn.gf-favorite-primary-btn {
    background: rgba(0,176,32,0.92);
    border-color: rgba(0,176,32,0.92);
    color: #fff;
}

.gf-favorite-card-editor__badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,176,32,0.86);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    opacity: 0;
    transition: opacity .16s ease;
    pointer-events: none;
}

.gf-favorite-card-editor.is-primary .gf-favorite-card-editor__badge {
    opacity: 1;
}

.gf-favorite-card-editor.is-primary .gf-favorite-card-editor__media {
    border-color: rgba(0,176,32,0.38);
    box-shadow: 0 16px 34px rgba(0,176,32,0.10), 0 14px 30px rgba(0,0,0,0.18);
}

.gf-favorite-card-editor__meta {
    margin-top: 10px;
}

.gf-favorite-card-editor__title {
    color: #f3f4f6;
    font-weight: 800;
    line-height: 1.3;
}

.gf-favorite-card-editor__sub {
    margin-top: 5px;
    color: rgba(229,231,235,0.64);
    font-size: 0.88rem;
}

.gf-favorite-picker {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8,10,14,0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gf-favorite-picker__box {
    width: 100%;
    max-width: 720px;
    padding: 20px;
    border-radius: 18px;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 60px rgba(0,0,0,0.45);
}

.gf-favorite-picker__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

    .gf-favorite-picker__head h3 {
        margin: 0;
        font-size: 1.15rem;
        font-weight: 800;
    }

.gf-favorite-picker__close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: #f3f4f6;
    font-size: 1.3rem;
    line-height: 1;
}

.gf-favorite-picker__results {
    margin-top: 14px;
    max-height: 420px;
    overflow-y: auto;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}


/* ============================================================================
   FOLLOWERS / FOLLOWING / FRIENDS
   ============================================================================ */
.gf-profile-userlist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gf-profile-userlist__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: inherit;
    transition: background .14s ease, border-color .14s ease, transform .14s ease;
}

    .gf-profile-userlist__item:hover {
        text-decoration: none;
        color: inherit;
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.10);
        transform: translateY(-1px);
    }

.gf-profile-userlist__avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.08);
    flex: 0 0 auto;
}

.gf-profile-userlist__meta {
    min-width: 0;
    flex: 1 1 auto;
}

.gf-profile-userlist__topline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gf-profile-userlist__name {
    font-size: 1rem;
    font-weight: 800;
    color: #f3f4f6;
    line-height: 1.3;
}

.gf-profile-userlist__username {
    margin-top: 4px;
    color: rgba(229,231,235,0.64);
    font-size: 0.9rem;
    font-weight: 600;
}

.gf-profile-userlist__bio {
    margin-top: 8px;
    color: rgba(229,231,235,0.74);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gf-profile-userlist__friend-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(0,176,32,0.16);
    border: 1px solid rgba(0,176,32,0.28);
    color: #86efac;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gf-profile-userlist__status {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
}

    .gf-profile-userlist__status.is-online {
        color: #86efac;
    }

    .gf-profile-userlist__status.is-offline {
        color: rgba(229,231,235,0.62);
    }

.gf-profile-userlist__status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
    flex: 0 0 auto;
}

.gf-profile-userlist__status.is-online .gf-profile-userlist__status-dot {
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.55);
    animation: gf-online-pulse 1.8s infinite;
}

.gf-profile-userlist__status.is-offline .gf-profile-userlist__status-dot {
    background: #9ca3af;
}

@keyframes gf-online-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0.50);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34,197,94,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,0);
    }
}


/* ============================================================================
   ACTIVITY
   ============================================================================ */
.gf-activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gf-activity-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.gf-activity-item__text {
    color: #e5e7eb;
    line-height: 1.55;
}

    .gf-activity-item__text strong {
        color: #f9fafb;
    }

.gf-activity-item__time {
    color: rgba(229,231,235,0.58);
    font-size: 0.88rem;
    white-space: nowrap;
}


/* ============================================================================
   EDIT PROFILE
   ============================================================================ */
.gf-edit-profile-page {
    max-width: 1120px;
}

.gf-edit-profile-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.gf-edit-profile-form {
    margin-top: 8px;
}

.gf-edit-profile-preview {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}

.gf-edit-profile-banner-preview {
    height: 240px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.82);
}

.gf-edit-profile-avatar-preview-wrap {
    position: absolute;
    left: 24px;
    bottom: 20px;
}

.gf-edit-profile-avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.12);
    box-shadow: 0 18px 45px rgba(0,0,0,0.32);
    background: #151821;
}

.gf-edit-profile-card {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.gf-edit-profile-side-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 800;
}

.gf-edit-profile-tip {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(229,231,235,0.74);
    margin-bottom: 10px;
}

    .gf-edit-profile-tip:last-child {
        margin-bottom: 0;
    }

.gf-edit-profile-actions .btn {
    min-height: 44px;
    border-radius: 12px;
    font-weight: 700;
}

.gf-edit-profile-bio {
    min-height: 150px;
    resize: vertical;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}


/* ============================================================================
   AUTH - LOGIN / REGISTER
   - Bloco deduplicado e final
   ============================================================================ */
.gf-auth-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 120px 16px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gf-auth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .gf-auth-bg img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        filter: saturate(0.92) brightness(0.28);
        transform: scale(1.05);
    }

.gf-auth-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(8,10,14,0.86) 0%, rgba(8,10,14,0.70) 18%, rgba(8,10,14,0.58) 40%, rgba(14,16,21,0.88) 82%, rgba(14,16,21,1) 100% ), radial-gradient( 120% 115% at 50% 24%, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.22) 48%, rgba(0,0,0,0.44) 100% );
}

.gf-auth-shell {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1160px;
}

.gf-auth-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 690px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(12,16,24,0.72);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gf-auth-left {
    position: relative;
    padding: 64px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(15,19,28,0.44), rgba(10,14,22,0.22)), linear-gradient(90deg, rgba(255,255,255,0.022), rgba(255,255,255,0));
    border-right: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

    .gf-auth-left::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 22% 46%, rgba(0,176,32,0.10), transparent 24%), radial-gradient(circle at 56% 74%, rgba(255,255,255,0.03), transparent 26%);
        pointer-events: none;
    }

.gf-auth-brandmark {
    position: absolute;
    left: -410px;
    top: 50%;
    transform: translateY(-50%);
    width: 950px;
    max-width: none;
    opacity: 0.3;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    filter: none;
}

    .gf-auth-brandmark img {
        display: block;
        width: 100%;
        height: auto;
    }

.gf-auth-left > *:not(.gf-auth-brandmark) {
    position: relative;
    z-index: 2;
}

.gf-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #f9fafb;
}

.gf-auth-brand__dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #00b020;
    box-shadow: 0 0 18px rgba(0,176,32,0.35);
    flex: 0 0 auto;
}

.gf-auth-title {
    margin: 0;
    max-width: 390px;
    font-size: clamp(3.4rem, 5.4vw, 5.6rem);
    line-height: 0.90;
    font-weight: 900;
    letter-spacing: -0.075em;
    color: #f9fafb;
    text-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.gf-auth-subtitle {
    margin: 28px 0 0;
    max-width: 500px;
    color: rgba(229,231,235,0.82);
    font-size: 1.03rem;
    line-height: 1.75;
}

.gf-auth-side-link {
    margin-top: 36px;
    color: rgba(229,231,235,0.72);
    font-size: 0.98rem;
}

    .gf-auth-side-link a {
        color: #22c55e;
        font-weight: 700;
        text-decoration: none;
    }

        .gf-auth-side-link a:hover {
            color: #4ade80;
            text-decoration: underline;
        }

.gf-auth-right {
    padding: 48px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(11,15,22,0.56), rgba(11,15,22,0.36));
}

.gf-auth-form-wrap {
    width: 100%;
    max-width: 430px;
}

.gf-auth-form-head {
    margin-bottom: 22px;
}

.gf-auth-form-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    color: #f9fafb;
    letter-spacing: -0.03em;
}

.gf-auth-form-subtitle {
    margin: 8px 0 0;
    color: rgba(229,231,235,0.66);
    font-size: 0.95rem;
}

.gf-auth-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(220,53,69,0.12);
    border: 1px solid rgba(220,53,69,0.22);
    color: #ffb9c2;
    font-size: 0.94rem;
}

.gf-auth-field {
    margin-bottom: 14px;
}

.gf-auth-label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(229,231,235,0.90);
}

.gf-auth-input {
    height: 56px;
    border-radius: 14px;
    background: rgba(20,25,34,0.90);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 0 14px;
    font-size: 0.98rem;
    width: 100%;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

    .gf-auth-input::placeholder {
        color: #8f9aad;
    }

    .gf-auth-input:focus {
        outline: none;
        border-color: #00b020;
        box-shadow: 0 0 0 3px rgba(0,176,32,.18);
        background: rgba(24,30,40,0.96);
    }

.gf-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 20px;
    color: rgba(229,231,235,0.72);
    font-size: 0.93rem;
    line-height: 1.6;
}

    .gf-auth-check input[type="checkbox"] {
        margin-top: 4px;
        accent-color: #00b020;
    }

    .gf-auth-check a {
        color: #22c55e;
        font-weight: 600;
    }

        .gf-auth-check a:hover {
            color: #4ade80;
        }

.gf-auth-submit {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #00b020, #22c55e);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(0,176,32,0.18);
    transition: transform .12s ease, filter .15s ease, box-shadow .15s ease;
}

    .gf-auth-submit:hover {
        background: linear-gradient(90deg, #00961b, #16a34a);
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(0,176,32,0.24);
    }

    .gf-auth-submit:active {
        transform: translateY(0);
    }

.gf-auth-note {
    margin-top: 14px;
    color: rgba(229,231,235,0.64);
    font-size: 0.92rem;
    line-height: 1.65;
}

.gf-auth-mobile-link {
    display: none;
    margin-top: 18px;
    color: rgba(229,231,235,0.72);
    font-size: 0.95rem;
}

    .gf-auth-mobile-link a {
        color: #22c55e;
        font-weight: 700;
    }


/* ============================================================================
   RESPONSIVO GLOBAL
   ============================================================================ */
@media (max-width: 1200px) {
    .gf-profile-summary {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .gf-profile-header-side {
        grid-column: 1 / -1;
        min-width: 0;
    }

    .gf-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gf-profile-side-action {
        justify-content: flex-start;
    }

    .gf-profile-avatar {
        width: 120px;
        height: 120px;
    }

    .gf-favorites-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gf-profile-favorite-card {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .gf-profile-tabs__bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .gf-profile-tabs__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .gf-favorites-grid {
        grid-template-columns: 1fr;
    }

    .gf-favorites-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .gf-favorites-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gf-auth-page {
        padding: 108px 14px 40px;
    }

    .gf-auth-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gf-auth-left {
        padding: 42px 28px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        min-height: 320px;
    }

    .gf-auth-brandmark {
        left: -90px;
        top: 62%;
        width: 520px;
        opacity: 0.08;
    }

    .gf-auth-right {
        padding: 30px 22px 32px;
    }

    .gf-auth-side-link {
        display: none;
    }

    .gf-auth-mobile-link {
        display: block;
    }
}

@media (max-width: 768px) {
    .gf-profile-hero {
        min-height: 430px;
    }

    .gf-profile-hero__inner {
        padding-top: 92px;
        padding-bottom: 28px;
    }

    .gf-profile-summary {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .gf-profile-avatar-wrap {
        align-self: start;
    }

    .gf-profile-avatar {
        width: 108px;
        height: 108px;
        border-radius: 16px;
    }

    .gf-profile-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gf-profile-favorites-grid {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .gf-profile-tabs__inner {
        gap: 16px;
    }

    .gf-profile-banner-edit {
        top: 82px;
        right: 14px;
    }

    .gf-edit-profile-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .gf-edit-profile-banner-preview {
        height: 200px;
    }

    .gf-edit-profile-avatar-preview {
        width: 96px;
        height: 96px;
        border-radius: 16px;
    }

    .gf-favorites-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gf-activity-item {
        flex-direction: column;
        gap: 8px;
    }

    .gf-activity-item__time {
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .gf-profile-userlist__item {
        padding: 12px;
    }

    .gf-profile-userlist__avatar {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }
}

@media (max-width: 575.98px) {
    .gf-auth-page {
        padding: 94px 10px 28px;
    }

    .gf-auth-left,
    .gf-auth-right {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gf-auth-brand {
        font-size: 1.65rem;
    }

    .gf-auth-title {
        font-size: 2.25rem;
        max-width: 260px;
    }

    .gf-auth-subtitle {
        font-size: 0.96rem;
        max-width: 320px;
    }

    .gf-auth-brandmark {
        left: -210px;
        top: 60%;
        width: 940px;
        opacity: 0.11;
    }

    .gf-auth-form-title {
        font-size: 1.55rem;
    }

    .gf-auth-input,
    .gf-auth-submit {
        min-height: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .gf-favorite-preview {
        grid-template-columns: 72px 1fr;
    }

    .gf-favorite-preview__img,
    .gf-favorite-preview__empty {
        width: 72px;
    }

    .gf-favorites-cards {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .gf-profile-favorite-card {
        width: calc(50% - 7px);
    }
}

/* ============================================================================
   PLATFORM PILLS
   - ícone real + tooltip no hover
   ============================================================================ */
.gf-platform-pill {
    --pf-bg: rgba(255,255,255,0.05);
    --pf-border: rgba(255,255,255,0.10);
    --pf-text: rgba(229,231,235,0.92);
    --pf-icon-bg: rgba(255,255,255,0.08);
    --pf-icon-text: #ffffff;
    --pf-hover-bg: rgba(255,255,255,0.08);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--pf-border);
    background: linear-gradient(180deg, var(--pf-bg), rgba(255,255,255,0.02));
    color: var(--pf-text);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
    cursor: default;
}

    .gf-platform-pill:hover {
        transform: translateY(-1px);
        background: linear-gradient(180deg, var(--pf-hover-bg), rgba(255,255,255,0.03));
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 18px rgba(0,0,0,0.16);
    }

.gf-platform-pill--sm {
    width: 30px;
    height: 30px;
}

.gf-platform-pill__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pf-icon-text);
    font-size: 0.88rem;
    line-height: 1;
}

    .gf-platform-pill__icon i {
        line-height: 1;
    }

/* Tooltip */
.gf-platform-pill::after {
    content: attr(data-platform);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 6px 9px;
    border-radius: 8px;
    background: #151821;
    border: 1px solid rgba(255,255,255,0.10);
    color: #f3f4f6;
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(0,0,0,0.28);
    transition: opacity .14s ease, transform .14s ease;
    z-index: 20;
}

.gf-platform-pill:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =========================
   FAMÍLIAS
   ========================= */
.gf-platform-pill--pc,
.gf-platform-pill--windows,
.gf-platform-pill--steam {
    --pf-bg: rgba(59,130,246,0.16);
    --pf-hover-bg: rgba(59,130,246,0.22);
    --pf-border: rgba(96,165,250,0.30);
    --pf-text: #dbeafe;
    --pf-icon-text: #dbeafe;
}

.gf-platform-pill--xbox {
    --pf-bg: rgba(34,197,94,0.18);
    --pf-hover-bg: rgba(34,197,94,0.24);
    --pf-border: rgba(74,222,128,0.30);
    --pf-text: #dcfce7;
    --pf-icon-text: #dcfce7;
}

.gf-platform-pill--playstation {
    --pf-bg: rgba(37,99,235,0.20);
    --pf-hover-bg: rgba(37,99,235,0.26);
    --pf-border: rgba(96,165,250,0.28);
    --pf-text: #dbeafe;
    --pf-icon-text: #dbeafe;
}

.gf-platform-pill--nintendo,
.gf-platform-pill--switch {
    --pf-bg: rgba(239,68,68,0.20);
    --pf-hover-bg: rgba(239,68,68,0.26);
    --pf-border: rgba(248,113,113,0.30);
    --pf-text: #fee2e2;
    --pf-icon-text: #fee2e2;
}

.gf-platform-pill--mobile,
.gf-platform-pill--ios,
.gf-platform-pill--android {
    --pf-bg: rgba(168,85,247,0.18);
    --pf-hover-bg: rgba(168,85,247,0.24);
    --pf-border: rgba(192,132,252,0.28);
    --pf-text: #f3e8ff;
    --pf-icon-text: #f3e8ff;
}

.gf-platform-pill--mac {
    --pf-bg: rgba(148,163,184,0.18);
    --pf-hover-bg: rgba(148,163,184,0.24);
    --pf-border: rgba(148,163,184,0.28);
    --pf-text: #e2e8f0;
    --pf-icon-text: #e2e8f0;
}

.gf-platform-pill--linux {
    --pf-bg: rgba(245,158,11,0.18);
    --pf-hover-bg: rgba(245,158,11,0.24);
    --pf-border: rgba(251,191,36,0.26);
    --pf-text: #fef3c7;
    --pf-icon-text: #fef3c7;
}

.gf-platform-pill--browser,
.gf-platform-pill--web {
    --pf-bg: rgba(6,182,212,0.18);
    --pf-hover-bg: rgba(6,182,212,0.24);
    --pf-border: rgba(34,211,238,0.26);
    --pf-text: #cffafe;
    --pf-icon-text: #cffafe;
}

.gf-platform-pill--sega {
    --pf-bg: rgba(59,130,246,0.18);
    --pf-hover-bg: rgba(59,130,246,0.24);
    --pf-border: rgba(96,165,250,0.28);
    --pf-text: #dbeafe;
    --pf-icon-text: #dbeafe;
}

.gf-platform-pill--retro,
.gf-platform-pill--atari {
    --pf-bg: rgba(244,114,182,0.16);
    --pf-hover-bg: rgba(244,114,182,0.22);
    --pf-border: rgba(244,114,182,0.24);
    --pf-text: #fce7f3;
    --pf-icon-text: #fce7f3;
}

.gf-platform-pill--cloud {
    --pf-bg: rgba(14,165,233,0.16);
    --pf-hover-bg: rgba(14,165,233,0.22);
    --pf-border: rgba(56,189,248,0.24);
    --pf-text: #e0f2fe;
    --pf-icon-text: #e0f2fe;
}

.gf-platform-pill--generic {
    --pf-bg: rgba(255,255,255,0.06);
    --pf-hover-bg: rgba(255,255,255,0.09);
    --pf-border: rgba(255,255,255,0.10);
    --pf-text: rgba(229,231,235,0.88);
    --pf-icon-text: #f9fafb;
}