* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(135deg, #0a0a0a, #2a1a2a, #0a0a0a);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;      
    user-select: none;
}

/* Animações globais */
@keyframes pular {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-3px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgb(255, 255, 255); }
    30% { box-shadow: 0 0 2px 2px rgb(255, 255, 255); }
    40% { box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.274); }
    60% { box-shadow: 0 0 2px 2px rgba(255, 255, 255, 0.301); }
    80% { box-shadow: 0 0 2px 2px rgb(255, 255, 255); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.219); }
}

@keyframes hotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.up { color: rgb(13, 255, 13); }
.down { color: rgb(255, 6, 6); }

.tech-circle {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.circle:nth-child(1) { width: 200px; height: 200px; top: 5%; left: 10%; }
.circle:nth-child(2) { width: 300px; height: 300px; top: 60%; left: 80%; }
.circle:nth-child(3) { width: 150px; height: 150px; top: 70%; left: 10%; }
.circle:nth-child(4) { width: 120px; height: 120px; top: 5%; left: 70%; }
.circle:nth-child(5) { width: 60px; height: 60px; top: 80%; left: 10%; }
.circle:nth-child(6) { width: 120px; height: 120px; top: 58%; left: 10%; }
.circle:nth-child(7) { width: 120px; height: 120px; top: 90%; left: 10%; }
.circle:nth-child(8) { width: 120px; height: 120px; top: 20%; left: 80%; }
.circle:nth-child(9) { width: 400px; height: 400px; top: 30%; left: 5%; }
.circle:nth-child(10) { width: 170px; height: 170px; top: 40%; left: 80%; }
.circle:nth-child(11) { width: 170px; height: 170px; top: 80%; left: 80%; }
.circle:nth-child(12) { width: 170px; height: 170px; top: 20%; left: 20%; }

#carrossel {
    padding-top: 10px;
    display: block;
    max-width: 360px;
    position: relative;
    height: 20vh;
    margin: 0 auto;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.active { opacity: 1; transform: translateX(0); }
.next { transform: translateX(1%); }
.prev { transform: translateX(-30%); }

img {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.349);
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.caixa-plataforma {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px auto;
    max-width: 360px;
    padding-bottom: 10px;

    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    color: #ffffff;

    box-shadow: 0 6px 18px rgba(241, 77, 181, 0.76);
    backdrop-filter: blur(6px);
    border: 2px solid #c96a8f;
    position: relative;
    overflow: hidden;
}

.caixa-plataforma::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(247, 247, 247, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    animation: brilho 4s infinite;
    pointer-events: none;
}

@keyframes brilho {
    0% { left: -75%; }
    50% { left: 170%; }
    100% { left: 170%; }
}

.caixa-plataforma h2 {
    width: 100%;       
    text-align: center; 
    margin-bottom: 16px;
    margin-top: -1%;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #ffffff;

    background: linear-gradient(90deg, #f87aaa, #c0266e);
    padding: 6px 0;
    border-radius: 1px;

    border: 1px solid rgba(160, 60, 110, 0.7);

    box-shadow: 
        0 0 6px rgba(255, 91, 173, 0.945),
        0 0 12px rgba(160, 60, 110, 0.3);

    text-shadow: 
        0 1px 2px rgba(0,0,0,0.8),
        0 0 5px rgba(160, 60, 110, 0.7);
}

.caixa-plataforma h2 i {
    color: #303300;
}

.caixa-plataforma div {
    animation: pular 1.5s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.caixa-plataforma div img {
    width: 75px;
    height: 75px;
    border-radius: 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@keyframes pular {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.caixa-plataforma:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-section{
    width:100%;
    display:flex;
    justify-content:center;
    padding:20px 15px;
}

.profile-card{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width:100%;
    max-width:360px;
    padding:18px 16px;
    border-radius:16px;
    text-align:center;

    background:rgba(20,20,20,0.6);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid #c96a8f;
    box-shadow: 0 6px 18px rgba(248, 77, 185, 0.705);

    transition:.25s;
}

.profile-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:8px;
    border:2px solid rgba(245, 78, 147, 0.87);
    box-shadow: 0 6px 18px rgba(207, 56, 152, 0.781);
}

.profile-name{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#fff;
}

.profile-handle{
    display:block;
    font-size:12px;
    color:#9ca3af;
    margin-top:2px;
}

.profile-actions{
    margin-top:12px;
    display:flex;
    flex-wrap: wrap;
    gap:8px;
    justify-content:center;
}

.action-btn{
    text-decoration:none;
    padding:8px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    color:#fff;

    display:flex;
    align-items:center;
    gap:6px;

    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(6px);

    transition:.2s;
}

.action-btn:hover{
    transform:scale(1.05);
    opacity:.9;
}

.action-btn i{
    font-size:13px;
}


button {
    padding: 10px;
    font-size: 11px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #218838;
}

.biticoin {
    text-align: center;
    margin: 8px auto;
    font-size: 16px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 18px rgba(231, 73, 173, 0.76);
    border: 1px solid #b3507e;
    max-width: 360px;
    border-radius: 25px;
    padding: 10px;

}

.termos-container {
    display: block;
    margin: 10px auto;
    max-width: 400px;
    padding: 10px;
    background-color: #8f8f8f3f;
    border-radius: 10px;
    color: white;
}

.termos-container p {
    text-align: center;
}

.termos-container p a {
    background-color: #218838;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    height: 50px;
    border-radius: 16px;
    color: #ffffff;
    max-width: 360px;
    padding: 5px 10px;
    background-color: #1e1e1e5d;

}

.button a, .button .filtro-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b82c6e;
    border: 2px solid #c96a8f;
    color: #fff;
    padding: 10px 28px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}


.button a:active,
.button .filtro-btn:active {
    transform: scale(0.95);
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.25);
    background: linear-gradient(
        145deg,
        rgba(129, 129, 129, 0.63),
        rgba(255, 255, 255, 0.226)
    );
}

.filtro-btn {
    height: 42px;
    width: 80px;
    margin: 0 5px;
}

.button .filtro-btn.ativo {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.button .filtro-btn:hover {
    transform: scale(1.05);
}

.filtro-container {
    display: none;
}

.fa-heart {
    color: #000000;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 360px; 
  margin: 0 auto;  
}

.search-ico {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;  
  font-size: 25px;
  pointer-events: none;   
}


.search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box; 
  background-color: #fff;
}


.search-input:focus {
  border-color: #007bff; 
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


.search-input::placeholder {
  color: #aaa;
  font-style: normal; 
}

#contador-proxima-atualizacao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;

    padding: 10px 15px;
    margin: 10px auto;
    border-radius: 8px;
    width: 360px;
}

.update-spinner {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #f862ad;
    font-size: 50px;
    animation: spinAnim 2s linear infinite;
}

@keyframes spinAnim {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.square-containerfooter {
    width: 100%;
    background-color: #f8f9fa; 
    border-top: 1px solid #dee2e6;
    padding: 2rem 1rem;   
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}


.square-containerfooter footer.section {
    max-width: 1000px;   
    margin: 0 auto;   
}


.square-containerfooter footer.section h3 {
    font-size: 0.9rem;    
    font-weight: 400;  
    line-height: 1.6;   
    color: #495057;      
    text-align: center; 
    margin: 0;      
    letter-spacing: 0.01em; 
}

.square-containerfooter footer.section h3::before { 
    font-size: 1.1rem;
    display: inline-block;
    margin-right: 4px;
}
@media (max-width: 480px) {
    .square-containerfooter footer.section h3 {
        font-size: 0.8rem;
        text-align: left; 
    }
}

#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

#modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#close-btn {
    float: right;
    font-size: 18px;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 10px;
}

#nao-mostrar {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

label {
    cursor: pointer;
}

.game-grid {
    width: 92%;
    max-width: 1400px;
    margin: 20px auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 12px;
    justify-items: center;
}

@media (min-width: 1200px) {
    .game-grid { grid-template-columns: repeat(8, 1fr); }
}
@media (min-width: 900px) and (max-width: 1199px) {
    .game-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 600px) and (max-width: 899px) {
    .game-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 599px) {
    .game-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.gcard {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #1e1e1e, #2d2d2d); 
}

.gcard:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

.gcard-fav {
    position: absolute;
    top: 4px;
    left: 4px;
    z-index: 30;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    animation: none; 
}

.gcard-fav i::before {
    color: rgba(255, 255, 255, 0.9);
}

.gcard-fav.fav-on i::before {
    color: #ec4899;
}

.gcard-fav:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.15);
}

.gcard-hot {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 30;
    background: linear-gradient(135deg, #b0005a, #8a004d);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 8px;
    animation: hotPulse 1.5s ease infinite;
}

.gcard-banner {
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gcard-banner img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: none; 
}

.gcard-banner:hover img {
    opacity: 0.8;
}

.gcard-dist {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 4px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.gcard-body {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.gcard-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gcard-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gcard-name {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gcard-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bar-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bar-row span {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}

.bar-outer {
    width: 100%;
    height: 8px;
    background: #d1d5db;
    border-radius: 6px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}

.gcard-footer {
    margin-top: auto;
    padding-top: 4px;
}

.gcard-btn {
    width: 100%;
    padding: 8px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    border: none;
    animation: none; 
}

.gcard-prices {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    margin-top: 4px;
}

.gcard-prices p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 480px) {
    .gcard { max-width: 175px; }
    .gcard-banner img { height: 120px; }
}