html {
    scroll-behavior: smooth;
}

/* HERO */

.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;

    --mouse-x: 50%;
    --mouse-y: 50%;
    --tilt-x: 0px;
    --tilt-y: 0px;
    --ripple-opacity: 0;

    --hero-space: 24px;
    --hero-header-offset: 88px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(to bottom, #111115 0%, #141419 45%, #161616 100%);
}

/* HERO BACKGROUND EXTRA (DEPTH + WATER REACTION) */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(251, 4, 124, 0.07),
            transparent 58%
        ),
        radial-gradient(
            circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.08),
            rgba(251, 4, 124, 0.07) 16%,
            rgba(251, 4, 124, 0.03) 28%,
            transparent 52%
        );

    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
    opacity: calc(0.45 + (var(--ripple-opacity) * 0.35));

    animation: ambientGlow 10s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -8%;

    background:
        radial-gradient(
            circle 140px at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.06) 18%,
            rgba(251, 4, 124, 0.05) 34%,
            transparent 58%
        ),
        radial-gradient(
            circle 260px at var(--mouse-x) var(--mouse-y),
            rgba(251, 4, 124, 0.08),
            transparent 62%
        );

    filter: blur(18px);
    opacity: var(--ripple-opacity);
    transform: translate(var(--tilt-x), var(--tilt-y));
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter:
            drop-shadow(0 0 0 rgba(251, 4, 124, 0))
            drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter:
            drop-shadow(0 0 10px rgba(251, 4, 124, 0.35))
            drop-shadow(0 0 22px rgba(251, 4, 124, 0.18))
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
    }
}

/* FLOATING BACKGROUND BLOBS */

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-bg::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

/* PARTICLES */

.hero-bg-left::after,
.hero-bg-right::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.hero-bg-left::after {
    background:
        radial-gradient(circle, rgba(255,255,255,0.16) 0 1px, transparent 2px) 12% 18% / 160px 160px,
        radial-gradient(circle, rgba(251,4,124,0.18) 0 1.5px, transparent 2.5px) 42% 28% / 220px 220px,
        radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 2px) 70% 58% / 180px 180px;
    animation: particleFloatLeft 18s linear infinite;
}

.hero-bg-right::after {
    background:
        radial-gradient(circle, rgba(255,255,255,0.14) 0 1px, transparent 2px) 18% 30% / 170px 170px,
        radial-gradient(circle, rgba(251,4,124,0.16) 0 1.5px, transparent 2.5px) 62% 38% / 210px 210px,
        radial-gradient(circle, rgba(255,255,255,0.10) 0 1px, transparent 2px) 78% 68% / 190px 190px;
    animation: particleFloatRight 22s linear infinite;
}

/* BLOBS LIQUIDOS */

.hero-bg-left::before {
    width: 31rem;
    height: 31rem;
    left: -5rem;
    top: -3rem;

    background: radial-gradient(
        circle at 30% 30%,
        rgba(251, 4, 124, 0.28),
        rgba(251, 4, 124, 0.13) 40%,
        transparent 72%
    );

    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    filter: blur(28px);
    animation: liquidBlob1 16s ease-in-out infinite;
}

.hero-bg-right::before {
    width: 24rem;
    height: 24rem;
    right: 4rem;
    bottom: -3rem;

    background: radial-gradient(
        circle at 70% 70%,
        rgba(255, 120, 200, 0.18),
        rgba(251, 4, 124, 0.09) 45%,
        transparent 76%
    );

    border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%;
    filter: blur(30px);
    animation: liquidBlob2 20s ease-in-out infinite;
}

/* HERO CONTENT */

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    transform: translateY(-10px); /* ajuste visual leve */

    /* min-height: calc(100vh - var(--hero-header-offset));
    min-height: calc(100svh - var(--hero-header-offset)); */
}

/* LOGO */
.hero-logo {
    position: relative;
    margin: 0 0 14px 0;
}

.hero-logo::before {
    content: none;
}

.hero-logo img {
    position: relative;
    z-index: 1;
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter:
        drop-shadow(0 0 0 rgba(251, 4, 124, 0))
        drop-shadow(0 0 0 rgba(255, 255, 255, 0));

    animation: logoFadeIn 0.4s ease forwards;
}

/* TÍTULO COMO BLOCO */
.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 0 0 var(--hero-space) 0;
}

/* TÍTULOS */
.hero-content h2 {
    font-size: 4rem;
    line-height: 1;
    margin: 0;
}

/* TEXTO */
.hero-content p {
    width: min(100%, 640px);
    margin: -0.65rem 0 var(--hero-space) 0;

    /* font p A decidir com o akura */
    font-size: 1.1rem;

    line-height: 1.15;
}

/* BOTÃO */
.hero-content .btn-primary,
#btn-hero {
    margin: -6px 0 var(--hero-space) 0;
}

/* STATS */
.hero-stats {
    display: flex;
    justify-content: center;

    /* ESPAÇO ENTRE OS CARDS */
    gap: 1.5rem;

    flex-wrap: wrap;
    margin: 0;
}

.hero-stat-card {
    width: clamp(260px, 28vw, 320px);
    border-radius: 1.2rem;

    /* TAMANHO CAIXA AKURA */
    padding: 2rem 1rem; 

    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(6px);
    text-align: center;
    transition: 0.2s;
}

.hero-stat-card:hover {
    border-color: rgba(251,4,124,0.4);
    transform: translateY(-2px);
}

.hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-bottom: 0.5rem;
    color: rgba(251, 4, 124, 0.9);
}

.hero-stat-icon svg {
    width: 100%;
    height: 100%;
}

.hero-stat-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.72;
    margin-bottom: 0.3rem;
}

.hero-stat-value {
    font-size: 2.7rem;
    font-weight: 1200;
}

.hero-content > * {
    flex-shrink: 0;
}

/* HERO FADE-IN */

.hero-content h2,
.hero-content p,
.hero-content .btn-primary,
.hero-stats {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-content h2:first-of-type {
    animation-delay: 0.18s;
}

.hero-content h2:last-of-type {
    animation-delay: 0.32s;
}

.hero-content p {
    animation-delay: 0.46s;
}

.hero-content .btn-primary {
    animation-delay: 0.60s;
}

.hero-stats {
    animation-delay: 0.74s;
}

/* HERO STATS */

.hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;

    color: rgba(251, 4, 124, 0.9);
}

.hero-stat-icon svg {
    width: 100%;
    height: 100%;
}

/* HERO BLOB ANIMATIONS */

/* FEATURED */

.featured-games {
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4rem 0 5rem;

    position: relative;
    overflow: hidden;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* background: linear-gradient(to bottom, #161616 0%, #111115 100%); */
}

.featured-highlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.featured-highlight::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(920px, 72vw);
    height: min(420px, 34vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(251, 4, 124, 0.20) 0%,
        rgba(251, 4, 124, 0.08) 35%,
        transparent 75%);
    filter: blur(70px);
    opacity: 100%;
}

.featured-highlight::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(620px, 50vw);
    height: min(220px, 18vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(236, 236, 236, 0.10) 0%,
        transparent 70%);
    filter: blur(70px);
    opacity: 0.75;
}

.featured-games .container {
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.2rem;
}
    
.section-header h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(2rem, 3vw, 2.4rem);
}

.section-header p {
    opacity: 0.75;
    max-width: 520px;
}

.section-line {
    width: 82px;
    height: 4px;
    border-radius: 999px;
    margin-bottom: 0.85rem;

    background: linear-gradient(90deg, #ECECEC, #FB047C);
    box-shadow: 0 0 10px rgba(251, 4, 124, 0.4);
}

/* GRID */

.games-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
}

/* CARDS */

#featured {
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.game-card {
    transform: scale(1.15);
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

/* HIGHLIGHT POR CARD */

.game-card .featured-highlight {
    position: absolute;
    left: 50%;
    top: 32%;

    width: 280px;
    height: 280px;

    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* GLOW ROSA */

.game-card .featured-highlight::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(251, 4, 123, 0.877) 0%,
        rgba(251, 4, 123, 0.479) 38%,
        transparent 75%
    );

    filter: blur(12px);
}

/* glow branco suave */
.game-card .featured-highlight::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(236, 236, 236, 0.08) 0%,
        transparent 72%
    );

    filter: blur(35px);
}

.game-card > *:not(.featured-highlight) {
    position: relative;
    z-index: 1;
}

.game-card:hover .featured-highlight {
    transform: translate(-50%, -50%) scale(1.1);
}

/* GLOW DINÂMICO */

.game-card::before {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);

    transform: translate(-50%, -50%);
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(251, 4, 124, 0.50) 0%,
        rgba(251, 4, 124, 0.28) 30%,
        rgba(251, 4, 124, 0.12) 55%,
        transparent 75%
    );

    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;

    pointer-events: none;
    z-index: 0;
}

.game-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

.game-card:hover {
    transform: translateY(-6px);
}

.game-card > * {
    position: relative;
    z-index: 1;
}

.game-thumb {
    width: 195px;
    aspect-ratio: 1 / 1;
    border-radius: 1.35rem;
    overflow: hidden;
    margin-bottom: 0.25rem;
    box-shadow: 
    0 10px 26px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card:hover .game-thumb img {
    transform: scale(1.04);
}

.game-card h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    max-width: 240px;
    color: #ECECEC;
}

.game-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 132px;
    padding: 0.62rem 1rem;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 10px 24px rgba(0, 0, 0, 0.18);
}

.game-pill-icon svg {
    width: 15px;
    height: 15px;
}

.game-pill-icon {
    font-size: 0.7rem;
    line-height: 1;
    opacity: 0.9;
    color: #FB047C; 
}

.game-pill-value {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ECECEC;
}

.game-pill-text {
    font-size: 0.92rem;
    color: rgba(236,236,236,0.68);
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: #FB047C;
    color: #ECECEC;
    font-size: 0.98rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 12px 28px rgba(19, 32, 56, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-btn:hover {
    transform: translateY(-2px);
    border-color: rgb(251, 4, 123);
    filter: brightness(2);
    box-shadow:
        0 18px 34px rgba(19, 32, 56, 0.34),
        0 0 20px rgba(59,130,246,0.15);
}

.game-meta {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* FEATURED BUTTON */

.featured-cta {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.featured-main-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.04);
    box-shadow: 0 0 30px rgba(241, 53, 210, 0.55),
    0 18px 36px rgba(37, 99, 235, 0.34);
}

.featured-main-btn {
    min-width: 230px;
    padding: 1.15rem 1.8rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: #ECECEC;
    font-size: 1rem;
    font-weight: 800;
    box-shadow:
        0 0 26px rgba(59,130,246,0.28),
        0 14px 30px rgba(37,99,235,0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

/* ABOUT */

.about-section {
    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4rem 0;

    position: relative;
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-header h2 {
    margin-bottom: 0.8rem;
}

.about-line {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ECECEC, #FB047C);
}

/* CARD */

.about-card {
    width: 900px;
    height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    margin: 0 auto;
    padding: 2rem 1rem;
    border-radius: 2.5rem;
    text-align: center;

    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );

    backdrop-filter: blur(16px);

    border: 1px solid rgba(251, 4, 124, 0.25);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02) inset,
        0 20px 60px rgba(251, 4, 124, 0.25),
        0 0 40px rgba(251, 4, 124, 0.15);

    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px) scale(1.01);

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 30px 80px rgba(251, 4, 124, 0.35),
        0 0 60px rgba(251, 4, 124, 0.25);
}

/* .about-card p {
    max-width: 100%;
    padding: 0 1rem;

    margin: 0;
    font-size: 2rem;
    line-height: 1.8;
    opacity: 0.9;
} */

.about-card p {
    max-width: 760px;
    padding: 0 1rem;
    margin: 0;

    font-size: 1.35rem;
    line-height: 1.7;
    opacity: 0.9;
}


.about-card .btn-primary {
    width: fit-content;
    padding: 1.4rem 4rem;
    margin: 0;
    font-size: 1.7rem;
}


/* CONTACT */

.contact-cta {
    text-align: center;
}

/* BOTÕES PADRÃO HERO */

.btn-primary,
.btn-secondary,
.featured-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* tamanho dos botões */
    min-width: 8.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 0.75rem;

    background: var(--color-accent);
    color: #ECECEC;
    font-size: 1.05rem;
    font-weight: 700;

    box-shadow: 0 0 24px rgba(241, 53, 210, 0.35);
    transition: 0.25s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.featured-main-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 30px rgba(241, 53, 210, 0.55);
}

/* LIGHT THEME */

body.light-theme {
    background: #ECECEC;
    color: #161616;
}

body.light-theme .header {
    background: rgba(236, 236, 236, 0.85);
    border-bottom: 1px solid rgba(22, 22, 22, 0.08);
    backdrop-filter: blur(14px);
}

body.light-theme .logo h1,
body.light-theme .nav a {
    color: #111827;
}

body.light-theme .hero {
    border-bottom: 1px solid rgba(22, 22, 22, 0.08);
    background: linear-gradient(
        to bottom,
        #ECECEC 0%,
        #e4e4e4 45%,
        #dcdcdc 100%
    );
}

body.light-theme .hero-bg-left::before {
    background: radial-gradient(
        circle,
        rgba(251, 4, 124, 0.16) 0%,
        rgba(251, 4, 124, 0.08) 35%,
        transparent 68%
    );
}

body.light-theme .hero-bg-right::before {
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.12) 0%,
        rgba(99, 102, 241, 0.06) 35%,
        transparent 68%
    );
}

body.light-theme .hero-content p,
body.light-theme .section-header p,
body.light-theme .game-meta,
body.light-theme .hero-stat-label {
    color: rgba(22, 22, 22, 0.75);
}

body.light-theme .hero-stat-card {
    border: 1px solid rgba(22, 22, 22, 0.08);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

body.light-theme .hero-stat-card:hover {
    border-color: rgba(251, 4, 124, 0.25);
}

body.light-theme .about-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(246, 248, 252, 0.96)
    );
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow:
        0 0 0 1px rgba(235, 39, 130, 0.829) inset,
        0 20px 50px rgba(99, 102, 241, 0.08);
}

body.light-theme .about-card p {
    color: rgba(17, 24, 39, 0.82);
}

body.light-theme .section-line,
body.light-theme .about-line {
    box-shadow: 0 0 10px rgba(251, 4, 124, 0.22);
}

body.light-theme .featured-main-btn {
    box-shadow: 0 0 24px rgba(241, 53, 210, 0.18);
}

body.light-theme .featured-main-btn:hover {
    box-shadow: 0 0 28px rgba(241, 53, 210, 0.26);
}

body.light-theme .footer {
    background: #ffffff;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

body.light-theme .footer h2,
body.light-theme .footer p,
body.light-theme .footer a {
    color: #111827;
}

/* HERO LIQUID ANIMATIONS */

@keyframes liquidBlob1 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    }
    50% {
        transform: translate3d(40px, -30px, 0) scale(1.12);
        border-radius: 50% 50% 40% 60% / 60% 40% 55% 45%;
    }
}

@keyframes liquidBlob2 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%;
    }
    50% {
        transform: translate3d(-35px, 35px, 0) scale(1.15);
        border-radius: 55% 45% 50% 50% / 50% 50% 60% 40%;
    }
}

@keyframes ambientGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloatLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(14px, -18px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes particleFloatRight {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-16px, 16px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* GOLD ACCENT (LIGHT THEME) */

body.light-theme h1,
body.light-theme h2 {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    color: #161616;
}

/* TEXTOS DOS CARDS NO LIGHT MODE */

body.light-theme .game-card h3 {
    color: #161616;
}

body.light-theme .game-meta {
    color: rgba(22, 22, 22, 0.7);
}

#site-logo {
    transition: opacity 0.25s ease;
}

/* LIGHT MODE */

body.light-theme .contact-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(251, 4, 124, 0.10), transparent 26%),
        radial-gradient(circle at 82% 78%, rgba(251, 4, 124, 0.08), transparent 22%),
        linear-gradient(to bottom, #ececec 0%, #e4e4e4 45%, #dcdcdc 100%);
}

body.light-theme .contact-form {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(245, 245, 245, 0.96)
    );
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.5) inset,
        0 24px 60px rgba(0,0,0,0.10),
        0 0 30px rgba(251, 4, 124, 0.08);
}

body.light-theme .contact-form .form-group label,
body.light-theme .consent-label,
body.light-theme .contact-section .section-header p {
    color: rgba(22, 22, 22, 0.78);
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background: rgba(22, 22, 22, 0.04);
    border: 1px solid rgba(22, 22, 22, 0.08);
    color: #161616;
}

body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder {
    color: rgba(22, 22, 22, 0.45);
}

body.light-theme .contact-form input:focus,
body.light-theme .contact-form textarea:focus {
    background: rgba(22, 22, 22, 0.06);
    border-color: rgba(251, 4, 124, 0.35);
    box-shadow: 0 0 0 4px rgba(251, 4, 124, 0.08);
}

body.light-theme .contact-glow-1 {
    background: rgba(251, 4, 124, 0.10);
}

body.light-theme .contact-glow-2 {
    background: rgba(251, 4, 124, 0.08);
}



/* GAMBIARRA KK */

/* LIGHT MODE - GAME PILL */

body.light-theme .game-card h3 {
    color: #111 !important;
}

body.light-theme .game-pill {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .game-pill-value,
body.light-theme .game-pill-text {
    color: rgba(0, 0, 0, 0.72) !important;
}

body.light-theme .game-pill-icon {
    color: #fb047c !important;
}