.info-card {
    background-color: #ffd90060;
}

.partner-card {
    border-radius: 10px;
    /* background-color: #f5f5f500; */
}

.partner-image img {
    max-height: 60px;
    filter: grayscale(100%);
    /* transition: filter 0.3s; */
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.partner-image img:hover {
    filter: grayscale(0%);
}

.partner-name {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: x-large;
    font-weight: bold;
    filter: grayscale(100%);
    text-decoration: none;
    color: #cfcfcf;
    transition: color 0.3s ease;
}

.partner-name:hover {
    filter: grayscale(0%);
    color: gold !important;
}

.section {
    padding: 4rem 0;
}

.section h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    font-weight: bold;
    color: #FFD700;
}

/* Filtros */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}



.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box img {
    width: 40px;
    height: 40px;
}

.feature-container {
    filter: grayscale(30%);
    border-top: 1px solid #FFD700;
    background-color: #ffd90060;
}

.feature-box img {
    max-width: 50px;
    margin-bottom: 10px;
}


.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.hero-title .highlight {
    color: #FFD700;
}

.game-card {
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.game-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 217, 0, 0.199);
    border: 0.1rem solid #ffd700;
    z-index: 10;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card:hover::after {
    transform: translateY(-5px);
    text-shadow: 0 0 10px #ffd700;
}

.game-card::after {
    /* content: attr(data-game); */
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    color: rgb(252, 252, 252);
    font-weight: bold;
    z-index: 2;
    text-shadow: 1px 1px 5px black;
    text-align: center;
    font-size: 1.2rem;
    padding: 0 15px;
    transition: all 0.3s;
}

/* .loading-spinner {
    padding: 20px;
    color: #FFD700;
}

.spinner-border {
    border: solid 1px #FFD700;
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    border-top-color: transparent;
} */

.loading-spinner {
    padding: 20px;
    text-align: center;
}

.loading-gif {
    width: 100px;
    height: 100px;
}


.badge-container {
    top: 15px;
    right: 15px;
    z-index: 3;
}

.new-badge,
.promo-badge,
.best-selling-badge {
    background: #ff4500;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.promo-badge {
    position: relative;
    animation: pulse 1.5s infinite;

}

/* Faíscas animadas */
.promo-badge::before,
.promo-badge::after {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgba(255, 200, 100, 1) 0%, transparent 70%);
    border-radius: 50%;
    filter: drop-shadow(0 0 4px rgba(255, 200, 100, 0.8));
    pointer-events: none;
    z-index: 2;
    width: 6px;
    height: 6px;
    animation-timing-function: linear;
}

/* Primeira faísca */
.promo-badge::before {
    top: 10%;
    left: 15%;
    animation: sparksUp1 2.5s linear infinite;
}

/* Segunda faísca */
.promo-badge::after {
    top: 20%;
    left: 60%;
    width: 4px;
    height: 4px;
    animation: sparksUp2 3s linear infinite;
    filter: drop-shadow(0 0 3px rgba(255, 180, 80, 0.7));
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(255, 68, 0, 0.363);
    }

    50% {
        box-shadow: 0 0 16px rgba(255, 68, 0, 0.534);
    }
}

@keyframes sparksUp1 {
    0% {
        top: 10%;
        left: 15%;
        opacity: 1;
        transform: scale(1);
    }

    50% {
        top: 0%;
        left: 20%;
        opacity: 0.6;
        transform: scale(1.3);
    }

    100% {
        top: -10%;
        left: 25%;
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes sparksUp2 {
    0% {
        top: 20%;
        left: 60%;
        opacity: 1;
        transform: scale(1);
    }

    50% {
        top: 10%;
        left: 65%;
        opacity: 0.5;
        transform: scale(1.1);
    }

    100% {
        top: 0%;
        left: 70%;
        opacity: 0;
        transform: scale(0);
    }
}

/* .promo-badge {
    background: #a54b21ce;
}
    

.best-selling-badge {
    background: #007bff;
} */


/* markdown discord  */
.markdown-body pre {
    background-color: #1e1f22;
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
    color: #d4d4d4;
    font-family: Consolas, monospace;
}

.markdown-body pre code.language-css {
    color: #56b6c2;
}

.markdown-body pre code.language-js,
.markdown-body pre code.language-javascript {
    color: #f1fa8c;
}

.markdown-body pre code.language-json {
    color: #f8f8f2;
}

.markdown-body pre code.language-python {
    color: #f8f8f2;
}

.markdown-body pre code.language-ruby {
    color: #f8f8f2;
}

.markdown-body pre code.language-java {
    color: #b8b8b8;
}

.markdown-body pre code.language-ts,
.markdown-body pre code.language-typescript {
    color: #4ec9b0;
}


.markdown-body pre code.language-c,
.markdown-body pre code.language-cpp {
    color: #d4d4d4;
}

.markdown-body pre code.language-csharp,
.markdown-body pre code.language-cs {
    color: #4ec9b0;
}

.markdown-body pre code.language-html {
    color: #817b7b;
}

.markdown-body h3 {
    font-size: 1.0rem !important;
    margin-bottom: 0px !important;
    color: #fff !important;
}

.markdown-body code {
    font-size: 14px;
    line-height: 16px;
    background: #444;
    color: #fff;
    border: 1px solid #726868a1;
    border-radius: 3px;
    cursor: pointer;
}

.markdown-body .spoiler {
    background-color: #444;
    color: transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.markdown-body .spoiler:hover {
    color: #fff;
}

.markdown-body .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.295);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0.1;
    z-index: 1;
}

.markdown-body .subtext {
    color: #6c757d;
    font-size: 0.875em;
    white-space: break-spaces;
    word-wrap: break-word;
}