html, body {
    background-color: #020617; /* mesma cor do seu site */
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* padding-top: 100px; ❌ REMOVE ISSO */
    

    color: white;
    position: relative;

    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("https://i.ibb.co/s98SSJPd/Em-meu-Destino-final-remake-AI-Definitiva.jpg");
cursor: url('https://cur.cursors-4u.net/cursors/cur-2/cur116.cur'), auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* HEADER - layout fixo em 3 zonas */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

/* Logo fica à esquerda naturalmente */
.logo {
    flex: 0 0 auto;
}

/* Menu centralizado */
.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

/* FORÇA os ícones pra direita SEMPRE */
.right-icons {
    margin-left: auto !important;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box{
    flex:1;
    display:flex;
    justify-content:center;
}

.search-area input {
    width: 100%;
    max-width: 500px;

    padding: 12px 20px;

    border-radius: 30px;
    border: none;
    outline: none;

    background: #111;
    color: white;
    font-size: 16px;

    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.search-box input::placeholder{
    color:#888;
}

.logo img {
    height: 80px;
    width: auto;
}

nav a {
    position: relative;
    color: white;
    text-decoration: none;

    padding: 10px 20px;
    margin-left: 15px;

    border-radius: 30px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);

    transition: 0.3s;
}

nav a:hover {
    background: rgba(122,92,255,0.2);
    box-shadow: 
        0 0 10px #7a5cff,
        0 0 20px rgba(122,92,255,0.5);

    transform: translateY(-2px);
}

/* CARROSSEL */
.carrossel {
    position: relative;
    padding: 10px 40px; /* menos espaço em cima */
}

/* LISTA HORIZONTAL */
.container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
}

.card {
    min-width: 200px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
    border: 3px solid transparent;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* efeito quando passa o mouse */
.card:hover {
    transform: scale(1.05);
}

/* card selecionado */
.card.ativo {
    border: 3px solid #7a5cff;
    box-shadow: 0 0 15px #7a5cff;
    transform: scale(1.08);
}

/* SETAS */
.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.esquerda {
    left: 10px;
}

.direita {
    right: 10px;
}

/* SOBRE */
.sobre {
    min-height: 100vh; /* mantém o fundo grande */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* joga pro topo */
    align-items: center; /* mantém centralizado horizontalmente */
    text-align: center;
    padding: 80px 20px;
}
.sobre h1 {
    margin-bottom: 20px;
}

.pagina-livro{
display:flex;
align-items:flex-start;
gap:60px; /* espaço entre as colunas */
padding:80px;
}

/* coluna da capa */

.coluna-capa{
display:flex;
flex-direction:column;
align-items:center;
max-width:220px;
}

.capa{
width:180px;
border-radius:10px;
}

/* título */

.titulo-livro{
margin-top:15px;
font-size:32px;
text-align:center;
}

.subtitulo-livro{
font-size:20px;
text-align:center;
opacity:0.8;
}

/* coluna de informações */

.coluna-info{
max-width:250px;
line-height:1.6;
}

/* sinopse */

.coluna-sinopse{
max-width:450px;
line-height:1.7;
}

.area-seta{
position:fixed;
right:80px;
top:50%;
transform:translateY(-50%);
}

.seta{
font-size:40px;
color:white;
text-decoration:none;
animation:setaAnim 1.5s infinite;
}

@keyframes setaAnim{
0%{transform:translateY(0);}
50%{transform:translateY(10px);}
100%{transform:translateY(0);}
}

.seta:hover{
transform:translateY(6px);
}

#capa-grande{
display:flex;
justify-content:center;
padding:120px 0;
}

#capa-grande img{
width:600px;
border-radius:12px;
box-shadow:0 0 30px rgba(0,0,0,0.7);
}

.botao-compra {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.botao-comprar {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 150px; /* largura mínima igual */
    padding: 12px 20px;

    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

/* Ebook */
.botao-comprar.ebook {
    background: #6c5ce7;
    color: white;
}

/* Físico */
.botao-comprar.fisico {
    background: #00b894;
    color: white;
}

.botao-comprar:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.titulo-livro{
font-size:38px;
letter-spacing:2px;
white-space:nowrap;
}

.subtitulo-livro{
font-size:22px;
margin-top:8px;
white-space:nowrap;
}

.page-kamaisen{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/dl7c0kv-8a9995a9-5ee5-434d-88a2-924b72b8ff5b.jpg/v1/fill/w_1192,h_670,q_70,strp/kamai_sen___protagonistas_remake_by_milesdeka2_dl7c0kv-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGw3YzBrdi04YTk5OTVhOS01ZWU1LTQzNGQtODhhMi05MjRiNzJiOGZmNWIuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.YiezQlBkY4qjafJ19J_GA0oPHvimxeWI9-yuS_Vd1yw");

background-size:cover;
background-position:center;
}

.page-emd{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://i.ibb.co/p6NJjtKP/Em-meu-Destino-Rain-Realistic.jpg");

background-size:cover;
background-position:center;
}

.page-emd2{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/dlcppi9-47bf0993-abf0-41ac-aa4b-3a8eb98d9de0.jpg/v1/fill/w_1095,h_730,q_70,strp/em_meu_destino_2____reimaginado_by_milesdeka2_dlcppi9-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTAyNCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGxjcHBpOS00N2JmMDk5My1hYmYwLTQxYWMtYWE0Yi0zYThlYjk4ZDlkZTAuanBnIiwid2lkdGgiOiI8PTE1MzYifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.ZMVT9j1rkTOpSstp34XN6p6ozmp15ZdZgzN-F48uMVY");

background-size:cover;
background-position:center;
}

.page-desolador{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/dhqg074-92524498-c0a0-4e23-8f5b-32b9a7b60ffb.jpg/v1/fill/w_1192,h_670,q_70,strp/tnd___teaser_desolator_vs_black_owls__old_art__by_milesdeka2_dhqg074-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGhxZzA3NC05MjUyNDQ5OC1jMGEwLTRlMjMtOGY1Yi0zMmI5YTdiNjBmZmIuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.8pNZiL-Kg-Q5FxoEonpYY1LRmjPrcUtDV2M6ItRgCsE");

background-size:cover;
background-position:center;
}

.page-attic{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://i.ibb.co/JRLyxvqm/2.jpg");

background-size:cover;
background-position:center;
}

.grid-livros {
    display: grid;
    grid-template-columns: repeat(auto-fill, 130px); /* menor */
    gap: 30px; /* mais espaço */
    justify-content: center;
}

.livro {
    width: 130px;
}

.capa-livro {
    width: 130px;
    height: 190px;
    object-fit: cover;
}

.catalogo {
    padding: 40px;
    min-height: 100vh;

    background: none; /* 🔥 remove isso */
}

.games-vazio {
    min-height: 100vh; /* ocupa tela toda */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* topo */
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.games-vazio h1 {
    font-size: 36px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.sobre-pagina {
    max-width: 800px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

.sobre-pagina h1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.sobre-pagina p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.imagem-sobre {
    margin-top: 40px;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
}

.novidades {
  min-height: 100vh;
  padding: 80px 20px;

  display: flex;
  flex-direction: column;
  align-items: center; /* centraliza TUDO no meio */
  text-align: center;
}

.page-paginawebcomic{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://i.ibb.co/sJ2rYgBp/Kamai-SEN-cover-art-remake.jpg");

background-size:cover;
background-position:center;
}

.biblioteca {
  display: grid; /* MUITO IMPORTANTE */
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-comic img {
  height: 70vh; /* aumenta tamanho */
  width: auto;

  flex: 0 0 auto; /* ESSENCIAL pro carrossel */
  scroll-snap-align: center;

  border-radius: 10px;
}

.zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.zoom img {
  max-width: 90%;
  max-height: 90%;
}

.zoom:target {
  display: flex;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  text-decoration: none;
}

.grid-comic img {
  cursor: zoom-in;
}

.abrir {
  position: absolute;
  top: 20px;
  left: 30px;
  background: #111;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.abrir:hover {
  background: #333;
}

.cap2 {
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/djw83xp-c0490153-4eb8-4359-8d99-daea5322616e.jpg/v1/fill/w_1192,h_670,q_70,strp/kamai_sen___season_2_art_by_milesdeka2_djw83xp-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGp3ODN4cC1jMDQ5MDE1My00ZWI4LTQzNTktOGQ5OS1kYWVhNTMyMjYxNmUuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.J3SdFj-m0JlYjwVVUmlPMRamDf0-SrZ8B88pWskgVcc");

  background-size: cover;       /* ESSENCIAL */
  background-position: center;  /* centraliza */
  background-repeat: no-repeat; 
  min-height: 100vh;            /* garante altura total */
}

.cap1 {
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/djw83xp-c0490153-4eb8-4359-8d99-daea5322616e.jpg/v1/fill/w_1192,h_670,q_70,strp/kamai_sen___season_2_art_by_milesdeka2_djw83xp-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGp3ODN4cC1jMDQ5MDE1My00ZWI4LTQzNTktOGQ5OS1kYWVhNTMyMjYxNmUuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.J3SdFj-m0JlYjwVVUmlPMRamDf0-SrZ8B88pWskgVcc");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========================= */
/* ❄️ FLOCOS VISÍVEIS DE VERDADE */
/* ========================= */

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
    z-index: 1;
}

/* floco individual */
.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 10px;
    opacity: 0.8;

    animation: fall linear infinite;
}

/* animação */
@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

header {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(15px);
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
}

.reveal {
    opacity: 1; /* 🔥 nunca deixa transparente */
    transform: translateY(30px);
    transition: 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.item {
    cursor: pointer;
    transition: 0.3s;
    border: 3px solid transparent;
    border-radius: 10px;
}

.item:hover {
    transform: scale(1.05);
}

.item.ativo {
    border: 3px solid #7a5cff;
    box-shadow: 0 0 20px #7a5cff;
    transform: scale(1.08);
}

nav a {
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;

    width: 0%;
    height: 2px;
    background: #7a5cff;

    transition: 0.3s;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 60%;
}

/* INTRO FULLSCREEN */
.intro {
    position: fixed;
    inset: 0;
    background: black;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    animation: fadeOut 2s ease forwards;
    animation-delay: 2s; /* tempo que fica na tela */
}

/* IMAGEM */
.intro img {
    max-width: 300px;
    width: 100%;

    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ENTRADA */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SAÍDA */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ========================= */
/* 🔥 CARD AAA (FUNCIONA 100%) */
/* ========================= */

.card {
    position: relative;
    transition: 0.3s;
}

/* glow externo forte */
.card:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow:
        0 0 20px rgba(122,92,255,0.7),
        0 0 40px rgba(122,92,255,0.6),
        0 0 80px rgba(122,92,255,0.5);
}

/* BORDA REAL VISÍVEL */
.card:hover {
    border: 2px solid #7a5cff;
}

/* LINHA DE ENERGIA PASSANDO */
.card::after {
    content: "Ver mais";
    position: absolute;
    bottom: 10px;
    left: 10px;
    opacity: 0;
    transition: 0.3s;
}

.card:hover::after {
    opacity: 1;
}

.banner {
    width: 100%;
    height: 90vh; /* mais imersivo */
    margin-top: -80px;   /* mesma altura do header */
    padding-top: 80px;   /* compensa o conteúdo interno */

    background:
        linear-gradient(to top, rgba(2,6,23,1) 5%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.7) 100%),
        url('https://i.ibb.co/353wBJsC/ezgif-51d7c61eec150381.gif');

    background-size: cover;
    background-position: center top; /* 🔥 MUITO IMPORTANTE */
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* conteúdo embaixo igual filme */
    align-items: center;

    text-align: center;
    padding-bottom: 60px;

    position: relative;
}

.titulo-secao {
    font-size: 36px;
    margin-left: 40px;
    margin-top: 60px;
    margin-bottom: 10px; /* diminui o espaço embaixo */

    font-weight: bold;
    letter-spacing: 3px;

    position: relative;
}

/* linha embaixo do título */
.titulo-secao::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #7a5cff;
    margin-top: 8px;
}

.banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #020617);
}

.transition {
    position: fixed;
    inset: 0;

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    background: rgba(0, 0, 0, 0.3); /* TEM QUE SER MAIS TRANSPARENTE */

    opacity: 0;
    pointer-events: none;

    z-index: 9999;
    transition: opacity 0.4s ease;
}

.transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ========================= */
/* 🔻 FOOTER AAA */
/* ========================= */

.footer {
    padding: 20px 20px 10px; /* antes era 40px */
    margin-top: 50px; /* diminui espaço */
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

    max-width: 1200px;
    margin: auto;
}

/* logo */
.footer-logo img {
    width: 90px;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.6;
    font-size: 12px;
}

/* links */
.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a,
.footer-social a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
    color: #7a5cff;
}

/* parte de baixo */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.5;
}

.home-news {
    padding: 80px 40px;
}

/* topo da seção */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.news-header h2 {
    font-size: 36px;
}

.ver-tudo {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s;
}

.ver-tudo:hover {
    color: white;
}

/* cards */
.home-news {
    padding: 60px 30px;
    max-width: 1100px;
    margin: auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ver-tudo {
    color: #7a5cff;
    text-decoration: none;
    font-size: 14px;
}

/* linha estilo PS */
.linha-ps {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7a5cff, transparent);
    margin-top: 5px;
}

/* cards */
.news-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card span {
    font-size: 12px;
    opacity: 0.6;
}

.news-card.ativo {
    border: 1px solid #7a5cff;
    box-shadow: 0 0 15px rgba(122,92,255,0.4);
}

/* LINHA AAA */
.linha-ps {
    width: 80px;
    height: 3px;

    background: linear-gradient(90deg, #7a5cff, transparent);

    margin: 10px 0 30px;

    border-radius: 10px;
}

#estrelas span {
    font-size: 30px;
    cursor: pointer;
    opacity: 0.3;
    transition: 0.2s;
}

#estrelas span.ativo {
    opacity: 1;
    color: gold;
}

.avaliacoes {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.avaliacao-box {
    width: 100%;
    max-width: 800px;
    margin: 100px auto 60px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#estrelas {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contato-icon {
    font-size: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;

    color: white;
    text-decoration: none;

    transition: 0.3s;
}

.contato-icon:hover {
    border-color: #7a5cff;
    box-shadow: 0 0 10px #7a5cff;

    transform: scale(1.1);
}

.novidades .post{
    padding-bottom:20px;
    margin-bottom:25px;
    border-bottom:2px solid #2a2a2a;
}

/* ========================= */
/* MENU MOBILE */
/* ========================= */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

/* celular */
@media (max-width:768px){

/* mostra botão */
.menu-toggle{
display:block;
}

/* esconde menu normal */
nav{
display:none;
flex-direction:column;
position:absolute;
top:100px;
right:20px;
background:rgba(0,0,0,0.95);
padding:20px;
border-radius:10px;
gap:10px;
}

/* quando clicar */
nav.active{
display:flex;
}

/* links do menu */
nav a{
margin:0;
text-align:center;
}

/* barra de pesquisa menor */
.search-box input {
    width: 100%;
    max-width: 180px; /* menor no mobile */
}

/* logo menor */
.logo img{
height:60px;
}

}

@media (max-width: 768px){

.pagina-livro{
flex-direction: column;
align-items: center;
text-align: center;
}

.coluna-capa,
.coluna-info,
.coluna-sinopse{
width: 100%;
max-width: 400px;
margin-bottom: 25px;
}

.coluna-info{
text-align: left;
}

}

.botao-comprar {
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    transition: 0.3s;
}

.page-wayston {
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/dlfd5f0-4f9d65c0-fb5a-4d68-a487-f7fe00d0969f.jpg/v1/fill/w_1192,h_670,q_70,strp/wayston____de_frente_com_a_maior_ameaca____by_milesdeka2_dlfd5f0-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGxmZDVmMC00ZjlkNjVjMC1mYjVhLTRkNjgtYTQ4Ny1mN2ZlMDBkMDk2OWYuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.KygMYwLPVzuRUMebR6ZSJ0wHY-4BfJVtQDy_s86vPhk");

    background-size: cover;
    background-position: center;
}

.page-comics {
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/djvpwpw-bb9c0595-d6d1-41f8-802b-a4fb03843602.jpg/v1/fill/w_1192,h_670,q_70,strp/kamai_sen_world_by_milesdeka2_djvpwpw-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGp2cHdwdy1iYjljMDU5NS1kNmQxLTQxZjgtODAyYi1hNGZiMDM4NDM2MDIuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.JAapQX6Lj_Er0AK9rM6qbv_v_0z_lPA8YqBi_LKKFow");

    background-size: cover;       /* 🔥 evita repetição */
    background-position: center;  /* centraliza */
    background-repeat: no-repeat; /* 🔥 ESSENCIAL */
    min-height: 100vh;
}

.upload-box {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    background: #111;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.upload-box input {
    margin: 10px 0;
    display: block;
    width: 100%;
}

.upload-box button {
    padding: 10px 15px;
    border: none;
    background: #6c5ce7;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}

.upload-box button:hover {
    background: #5a4bd6;
}

.upload-box img {
    margin-top: 10px;
    max-width: 100%;
    border-radius: 8px;
}

.zoom {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    cursor: grab;
}

.zoom:active {
    cursor: grabbing;
}

.zoom img {
    position: absolute;

    transform: scale(2.5);
    transform-origin: center;

    user-select: none;
    -webkit-user-drag: none;

    cursor: grab;
}

.banner-livros {
    width: 100%;
    height: 340px;
    background: url("https://i.ibb.co/VYtJ3qvh/Wayston-Book-Menu.gif") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 10px;
}

.banner-livros::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60);
}

.banner-livros-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.banner-livros-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.banner-livros-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 18px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #7c4dff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
}

.banner-btn:hover {
    background: #5e35b1;
}

.divider {
    width: 90%;
    height: 2px;
    background-color: #ffffff !important;
    margin: 25px auto;
    opacity: 1 !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

.menu {
    position: absolute; /* 🔥 chave pra centralizar real */
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 15px;
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;

    height: 100%;
    width: 0;

    border-radius: 30px;
    background: linear-gradient(135deg, #7a5cff, #5f3bff);

    transition: all 0.3s ease;

    z-index: 0; /* 🔥 FICA ATRÁS */
}

.menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 15px;
}

.menu a {
    padding: 10px 20px;
    border-radius: 30px;

    background: rgba(255,255,255,0.05);
    color: white;
    text-decoration: none;

    transition: 0.3s;
}

@media (max-width:768px){
    .highlight {
        display: none !important;
    }
}

/* BOTÃO */
.menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

/* MENU LATERAL */
.menu-ps {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;

    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);

    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    gap: 15px;

    transition: 0.4s ease;
    z-index: 1002;
}

/* MENU ABERTO */
.menu-ps.active {
    left: 0;
}

/* LINKS */
.menu-ps a {
    padding: 15px 20px;
    border-radius: 12px;

    color: white;
    text-decoration: none;
    font-size: 18px;

    background: rgba(255,255,255,0.05);

    transition: 0.3s;
}

/* HOVER estilo console */
.menu-ps a:hover {
    background: rgba(122,92,255,0.3);
    box-shadow:
        0 0 10px #7a5cff,
        0 0 20px rgba(122,92,255,0.5);

    transform: translateX(5px);
}

/* ATIVO (tipo selecionado) */
.menu-ps a.ativo {
    background: linear-gradient(135deg, #7a5cff, #5f3bff);
    box-shadow:
        0 0 15px rgba(122,92,255,0.8);
}

/* OVERLAY (fundo escuro) */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);

    opacity: 0;
    pointer-events: none;

    transition: 0.3s;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

html, body {
    overflow-x: hidden;
}

.right-area {
    display: flex !important;
    align-items: center;
    gap: 12px;

    position: absolute;
    right: 20px; /* 🔥 FIXA NA DIREITA REAL */
    top: 50%;
    transform: translateY(-50%);
}

.menu a:hover {
    background: rgba(122,92,255,0.2);
    box-shadow: 0 0 10px #7a5cff;
}

@media (max-width:768px){

/* esconder menu desktop */
.menu {
    display: none;
}

/* botão aparece */
.menu-toggle {
    display: block;
}

/* busca menor */
.search-box input {
    max-width: 150px;
}

}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);

    color: white;
    text-decoration: none;
    font-size: 18px;

    transition: 0.3s;
}

/* hover bonito */
.icon-btn:hover {
    border-color: #7a5cff;

    box-shadow:
        0 0 10px #7a5cff,
        0 0 20px rgba(122,92,255,0.4);

    transform: scale(1.1);
}

/* CONTAINER */
.notification-wrapper {
    position: relative;
}

/* BOTÃO (usa o mesmo estilo dos outros) */
.icon-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);

    color: white;
    text-decoration: none;
    font-size: 18px;

    cursor: pointer;
    transition: 0.3s;
}

/* hover */
.icon-btn:hover {
    border-color: #7a5cff;
    box-shadow: 0 0 10px #7a5cff;
    transform: scale(1.1);
}

/* 🔴 BADGE (número) */
.badge {
    position: absolute;
    top: -5px;
    right: -5px;

    background: red;
    color: white;

    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* 📦 CAIXA DE NOTIFICAÇÃO */
.notif-box {
    position: absolute;
    top: 50px;
    right: 0;

    width: 260px;
    background: #111;
    border-radius: 10px;
    padding: 12px;

    display: none;

    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 999;
}

/* texto */
.notif-box p {
    margin: 10px 0;
    font-size: 14px;
    opacity: 0.85;

    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 5px;
}

/* última sem linha */
.notif-box p:last-child {
    border-bottom: none;
}

/* quando ativa */
.notif-box.active {
    display: block;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 10000;
}

.nav:hover {
    background: rgba(255,255,255,0.2);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.notif-box {
    position: absolute;
    top: 60px;
    right: 80px;
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    display: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.notif-box.active {
    display: block;
}

.user-area {
    position: relative;
    display: inline-block;
}

.user-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: #111;
    border-radius: 10px;
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 140px;
    z-index: 999;
}

.user-menu a {
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
}

.user-menu a:hover {
    background: #333;
    border-radius: 6px;
}

.user-menu.active {
    display: flex;
}

.transition {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    opacity: 0;
    pointer-events: none;

    z-index: 9999;
    transition: opacity 0.4s ease;
}

.transition.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== LOGIN / REGISTRO ===== */

.auth-page {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);
}

.auth-page h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-page p {
    opacity: 0.7;
    margin-bottom: 20px;
}

/* BOXES */
.auth-box {
    margin-top: 20px;
    animation: fadeIn 0.4s ease;
}

/* FORM */
.form-auth {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.form-auth input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.08);
    color: white;
    transition: 0.3s;
}

.form-auth input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* efeito ao clicar */
.form-auth input:focus {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 8px rgba(0,170,255,0.4);
}

/* BOTÃO */
.form-auth button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #00aaff, #0088cc);
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

/* hover botão */
.form-auth button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0,170,255,0.4);
}

/* TEXTO TROCA */
.toggle {
    margin-top: 15px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.toggle:hover {
    opacity: 1;
}

.toggle span {
    color: #00aaff;
}

/* ESCONDER */
.hidden {
    display: none;
}

/* ANIMAÇÃO */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.terms input {
    width: auto;
    cursor: pointer;
}

.banner2 {
    width: 90%;
    max-width: 1100px;
    height: 250px;

    margin: 50px auto;

    background: url("https://i.ibb.co/N2d5wwKY/Banner-Sagile-Studios-para-site.jpg");
    background-size: cover;
    background-position: center;

    border-radius: 20px;
    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.6),
        0 0 20px rgba(122,92,255,0.2);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#intro-container {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 999999;
}

#intro {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#skipBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000000;
  padding: 10px 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: 1px solid white;
  cursor: pointer;
}

.contato { order: 1; }
.user { order: 2; }
.notificacao { order: 3; }

.notificacao {
    margin-left: auto; /* joga pra direita */
}

/* BOTÃO PADRÃO */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);

    cursor: pointer;
    transition: 0.3s;
}

/* ÍCONE */
.icon-btn i {
    width: 20px;
    height: 20px;
}

/* HOVER */
.icon-btn:hover {
    border-color: #7a5cff;
    box-shadow: 0 0 10px #7a5cff;
    transform: scale(1.1);
}

/* BADGE */
.badge {
    position: absolute;
    top: -5px;
    right: -5px;

    background: red;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* NOTIF BOX */
.notif-box {
    position: absolute;
    top: 60px;
    right: 0;

    width: 220px;
    background: #111;
    border-radius: 10px;
    padding: 10px;

    display: none;
}

.notif-box.active {
    display: block;
}

/* USER MENU */
.user-menu {
    position: absolute;
    top: 60px;
    right: 0;

    background: #111;
    border-radius: 10px;
    padding: 10px;

    display: none;
    flex-direction: column;
}

.user-menu.active {
    display: flex;
}

.user-menu a {
    color: white;
    padding: 8px;
    text-decoration: none;
}

.user-menu a:hover {
    background: #333;
}

.notification-wrapper,
.user-area {
    position: relative;
}

.notif-box,
.user-menu {
    position: absolute;
    top: 55px;
    right: 0;
}

.page-kamaisen .pagina-livro {
    margin-top: 60px;
}

.page-cap2 {
    margin-top: 60px;
}

.page-cap1 {
    margin-top: 60px;
}

.page-emdtrilogia{
background-image:
linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
url("https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/b3bacc5e-75c1-48fa-b825-328a20106f7f/dlcyesd-6777e225-eef5-4505-abc3-5e4dbd5db001.jpg/v1/fill/w_1192,h_670,q_70,strp/em_meu_destino____vs_ravalanchys_by_milesdeka2_dlcyesd-pre.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9MTA4MCIsInBhdGgiOiIvZi9iM2JhY2M1ZS03NWMxLTQ4ZmEtYjgyNS0zMjhhMjAxMDZmN2YvZGxjeWVzZC02Nzc3ZTIyNS1lZWY1LTQ1MDUtYWJjMy01ZTRkYmQ1ZGIwMDEuanBnIiwid2lkdGgiOiI8PTE5MjAifV1dLCJhdWQiOlsidXJuOnNlcnZpY2U6aW1hZ2Uub3BlcmF0aW9ucyJdfQ.g1BDxB3_9c0hLgPxgUKMtvZxy01uRAGPejUEPoc-3rM");

background-size:cover;
background-position:center;
}

@media (max-width: 768px) {

    .notif-box {
        position: fixed;

        top: 150%;
        left: 50%;

        transform: translate(-50%, -50%);

        width: 90%;
        max-width: 320px;

        background: rgba(0, 0, 0, 0.95);
        border-radius: 16px;

        text-align: center;
    }

}

@media (max-width: 768px) {
  .banner {
    height: auto;
    min-height: 100vh; /* ocupa a tela sem cortar */
    
    background-size: contain; /* 🔥 evita corte */
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .banner2 {
    margin-top: 0;
    padding: 20px;

    height: auto;        /* 🔥 remove altura exagerada */
    min-height: 40vh;    /* tamanho mais equilibrado */

    background-size: contain; /* evita corte */
    background-position: center;
    background-repeat: no-repeat;
  }
}

.easter-r34 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: clamp(80px, 6vw, 140px);
    z-index: 99999;
    cursor: pointer;

    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.easter-r34 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.easter-r34:hover {
    transform: scale(1.15);
    opacity: 1;
}

.games-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    min-height: 80vh;
    padding: 20px;

    max-width: 800px;
    margin: auto;
}

.games-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.games-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.games-content a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #00bfff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.games-content a:hover {
    background: #00bfff;
    color: #000;
}

.version-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.version-box select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #00bfff;
    background: transparent;
    color: white;
    font-size: 16px;
}

#downloadBtn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background: #00bfff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

#downloadBtn:hover {
    background: #009acd;
}

.version-box {
    font-family: Arial, sans-serif;
}

#versionSelect {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 40px 10px 10px;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* seta personalizada */
#versionSelect {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

#versionSelect:focus {
    outline: none;
    border-color: #888;
}
