/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 14 de jul. de 2026, 12:16:02
    Author     : glaub
*/


:root{

    --site-primary:#7c3aed;
    --site-primary-dark:#5b21b6;
    --site-secondary:#ec4899;
    --site-dark:#0d1117;
    --site-dark-soft:#161b22;
    --site-light:#161b22;
    --site-border:rgba(255,255,255,.08);
    --site-text:#ffffff;
    --site-muted:rgba(255,255,255,.60);

}

* {
    box-sizing: border-box;
}

body {

    min-height: 100vh;
    margin: 0;
    color: #fff;

    font-family:
        Outfit,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
        circle at top left,
        rgba(124,58,237,.18),
        transparent 35%
        ),

        radial-gradient(
        circle at top right,
        rgba(59,130,246,.15),
        transparent 30%
        ),

        radial-gradient(
        circle at bottom,
        rgba(236,72,153,.12),
        transparent 40%
        ),

        linear-gradient(
        180deg,
        #0d1117 0%,
        #111827 100%
        );

    background-attachment: fixed;

}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(13,17,23,.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
}

.site-logo-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background:
        linear-gradient(
        135deg,
        var(--site-primary),
        var(--site-secondary)
        );
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.site-nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.site-nav-link:hover {
    color: #fff;
}

.header-search {
    position: relative;
    width: min(100%, 440px);
}

.header-search .form-control {
    height: 46px;
    padding-left: 44px;
    padding-right: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.header-search .form-control::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.header-search .form-control:focus {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: none;
    color: #fff;
}

.header-search i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%);
}

/* HERO */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 54px;
    background:
        radial-gradient(
        circle at 10% 10%,
        rgba(236, 72, 153, 0.28),
        transparent 30%
        ),
        radial-gradient(
        circle at 90% 20%,
        rgba(59, 130, 246, 0.28),
        transparent 32%
        ),
        linear-gradient(
        135deg,
        #111827 0%,
        #251044 48%,
        #111827 100%
        );
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
        rgba(255, 255, 255, 0.035) 1px,
        transparent 1px
        ),
        linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.035) 1px,
        transparent 1px
        );
    background-size: 42px 42px;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-title {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 6vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero-title span {
    background:
        linear-gradient(
        90deg,
        #c084fc,
        #f472b6,
        #60a5fa
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.75;
}

.btn-gradient {
    border: 0;
    border-radius: 14px;
    background:
        linear-gradient(
        135deg,
        #7c3aed,
        #9333ea,
        #ec4899
        );
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(124, 58, 237, 0.3);
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
}

.btn-glass:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.hero-game-card {
    position: relative;
    max-width: 480px;
    margin-left: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    transform: rotate(2deg);
}

.hero-game-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
}

.hero-game-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 8px 7px;
}

.hero-game-info h2 {
    margin: 0 0 3px;
    font-size: 1.05rem;
    font-weight: 800;
}

.hero-game-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.play-circle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--site-primary);
    font-size: 1.3rem;
    text-decoration: none;
}

/* ANÚNCIO */

.ad-placeholder {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #fff;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* SEÇÕES */

.content-section {
    padding: 52px 0 0;
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-title {
    margin: 0;
    font-size: clamp(1.45rem, 4vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-subtitle {
    margin: 7px 0 0;
    color: var(--site-muted);
}

.section-link {
    color: var(--site-primary);
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.section-link:hover {
    color: var(--site-primary-dark);
}

/* CATEGORIAS */

.category-list {
    display: flex;
    gap: 10px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-item {

    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;

    background: #1b2230;

    color: rgba(255,255,255,.85);

    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(0,0,0,.25);

    transition:
        all .25s ease;

}

.category-item:hover{

    color:#fff;

    border-color:transparent;

    background:
        linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
        );

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(124,58,237,.35);

}

.category-item.active{

    color:#fff;

    border-color:transparent;

    background:
        linear-gradient(
        135deg,
        #7c3aed,
        #ec4899
        );

    box-shadow:
        0 12px 30px rgba(124,58,237,.40);

}

/* CARDS DOS JOGOS */

.game-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 19px;
    background: #161b22;
    box-shadow: 0 9px 30px rgba(15, 23, 42, 0.08);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.game-card:hover{

    transform:
        translateY(-8px)
        scale(1.02);

    box-shadow:

        0 15px 40px
        rgba(124,58,237,.25);

}

.game-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.game-card:hover .game-image-wrapper img {
    transform: scale(1.06);
}

.game-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.game-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.14);
}

.game-content {
    padding: 15px;
    color:#fff;
}

.game-title {

    display: -webkit-box;
    margin: 0 0 9px;

    overflow: hidden;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;

    text-decoration: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    transition: .25s;

}

.game-title:hover{

    color:#c084fc;

}

.game-meta{

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:rgba(255,255,255,.60);

    font-size:.78rem;

}

.game-rating {
    color: #f59e0b;
    font-weight: 800;
}

/* DESTAQUE HORIZONTAL */

.featured-banner {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border-radius: 28px;
    background:
        linear-gradient(
        100deg,
        rgba(17, 24, 39, 0.98) 0%,
        rgba(17, 24, 39, 0.83) 46%,
        rgba(17, 24, 39, 0.14) 100%
        ),
        url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1600&q=85")
        center / cover;
    color: #fff;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
}

.featured-banner-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: clamp(30px, 7vw, 64px);
}

.featured-banner h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.featured-banner p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.7;
}

/* RANKING */

.ranking-card {
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}

.ranking-header {
    padding: 20px;
    background:
        linear-gradient(
        135deg,
        var(--site-primary),
        var(--site-secondary)
        );
    color: #fff;
}

.ranking-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 900;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #eef2f7;
}

.ranking-item:last-child {
    border-bottom: 0;
}

.ranking-position {
    width: 32px;
    font-weight: 900;
    text-align: center;
}

.ranking-thumb {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 12px;
}

.ranking-info {
    min-width: 0;
    flex: 1;
}

.ranking-info strong {
    display: block;
    overflow: hidden;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ranking-info small {
    color: var(--site-muted);
}

.ranking-score {
    color: var(--site-primary);
    font-weight: 900;
}

/* NEWSLETTER */

.newsletter-box {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 6vw, 54px);
    border-radius: 28px;
    background:
        radial-gradient(
        circle at 90% 20%,
        rgba(255, 255, 255, 0.22),
        transparent 28%
        ),
        linear-gradient(
        135deg,
        var(--site-primary),
        var(--site-secondary)
        );
    color: #fff;
}

.newsletter-box h2 {
    margin-bottom: 12px;
    font-weight: 900;
}

.newsletter-box p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.76);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 570px;
    margin-top: 22px;
}

.newsletter-form .form-control {
    min-height: 52px;
    border: 0;
    border-radius: 14px;
}

.newsletter-form .btn {
    min-width: 140px;
    border-radius: 14px;
    font-weight: 800;
}

/* FOOTER */

.site-footer {
    margin-top: 65px;
    padding: 56px 0 28px;
    background: var(--site-dark);
    color: rgba(255, 255, 255, 0.72);
}

.footer-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
}

.footer-link {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.85rem;
}

.ranking-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ranking-info strong {
    color: #111827;
    font-weight: 700;
}

.ranking-info small {
    color: #6b7280;
}

.game-favorite{

    width:30px;
    height:30px;

    border:none;

    border-radius:10%;

    cursor:pointer;

    background-color: rgba(27, 36, 49, 0.2);

    color:#b8bcc7;

    transition:.25s;

    display:flex;
    justify-content:center;
    align-items:center;

}

.game-favorite i{

    font-size:22px;
    transition:.25s;

}

.game-favorite:hover{

    transform:scale(1.08);

}

.game-favorite.active{

    background:#ffebef;

    color:#ff3366;

}

.game-favorite.active i{

    animation:pulse .3s;

}

@keyframes pulse{

    0%{
        transform:scale(.8);
    }

    50%{
        transform:scale(1.25);
    }

    100%{
        transform:scale(1);
    }

}

/* MOBILE */

@media (max-width: 991.98px) {

    .navbar-collapse {
        padding-top: 18px;
    }

    .header-search {
        width: 100%;
        margin: 14px 0;
    }

    .hero-section {
        padding-top: 50px;
    }

    .hero-game-card {
        margin: 40px auto 0;
        transform: none;
    }
}

@media (max-width: 575.98px) {

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 13px 18px;
    }

    .content-section {
        padding-top: 38px;
    }

    .section-header {
        align-items: start;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-link span {
        display: none;
    }

    .game-card {
        border-radius: 15px;
    }

    .game-content {
        padding: 11px;
    }

    .game-title {
        font-size: 0.88rem;
    }

    .game-meta {
        font-size: 0.68rem;
    }

    .game-favorite {
        width: 32px;
        height: 32px;
    }

    .featured-banner {
        min-height: 390px;
        background:
            linear-gradient(
            0deg,
            rgba(17, 24, 39, 0.98) 0%,
            rgba(17, 24, 39, 0.75) 65%,
            rgba(17, 24, 39, 0.2) 100%
            ),
            url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1000&q=85")
            center / cover;
    }

    .featured-banner-content {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}
