* {
  margin: 0;padding: 0;border: none;box-sizing: border-box;font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}
body {
  background-position: center;background-size: cover;background-attachment: fixed;
}
img {
  user-drag: none;user-select: none;pointer-events: none;-webkit-user-drag: none;-moz-user-select: none;-ms-user-select: none;
}
.verde {
  position: absolute;top: 61px;width: 180px;z-index: 50;
}
.azul {
  position: absolute;top: 40px;right: 0;height: 200px;z-index: 50;
}
.roxa {
  position: absolute;top: 50%;height: 150px;z-index: 50;
}
.amarela {
  position: absolute;top: 60%;right: 0;height: 300px;z-index: 50;
}
.rosa {
  display: none;position: fixed;top: 20%;height: 120px;z-index: 50;
}
@media screen and (max-width: 1024px) {
  .verde {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .verde {
    display: none;
  }
  .azul {
    display: none;
  }
  .roxa {
    position: fixed;top: 80%;height: 100px;
  }
  .amarela {
    position: fixed;top: 30%;height: 200px;
  }
  .rosa {
    display: block;
  }
}
/* === GRID menor para os cards === */
.platform-grid{
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)) !important;
  gap: 16px !important;
}

/* === Card menor (novo wrapper) === */
.platform-grid > div,
.bonus-card{
  background: linear-gradient(145deg,#1a1a25,#222233) !important;
  border-radius: 14px !important;
  border: 2px solid transparent !important;
  border-image: linear-gradient(130deg,#ffd76a,#7b2cff) 1 !important;
  box-shadow: 0 10px 26px rgba(0,0,0,.45) !important;
  padding: 12px !important;
  min-height: 240px !important;   /* menor que antes */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
}

/* Se ainda existir a antiga área de imagem, esconda */
.image-wrapper{ display:none !important; }

/* === Faixa do topo: VALOR DO BÔNUS === */
.bonus-value{
  width: 100%;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background:
    radial-gradient(400px 160px at 80% -20%, rgba(123,44,255,.18), transparent 60%),
    radial-gradient(380px 160px at 10% 120%, rgba(255,215,106,.16), transparent 55%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #ffd76a;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255,215,106,.35);
  font-size: 0.95rem;
}

/* === Descrição menor e central === */
.platform-description-text{
  margin: 6px 0 !important;
  padding: 8px 10px !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: #f2f2f6 !important;
  border-left: 4px solid #ffd76a !important;
  background: linear-gradient(90deg, rgba(255,215,106,.12), rgba(123,44,255,.08)) !important;
  border-radius: 6px !important;
}

/* === Área do botão embaixo === */
.bonus-actions{
  margin-top: auto;    /* empurra o botão para o rodapé do card */
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Botão dourado centralizado */
.btn-access{
  display: inline-block;
  background: linear-gradient(180deg,#ffd76a,#ffb800);
  color: #1b1200;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 8px 18px rgba(0,0,0,.35), 0 0 14px rgba(255,215,106,.35);
  transition: transform .18s ease, filter .18s ease;
}
.btn-access:hover{ transform: translateY(-2px); filter: brightness(1.05) }

/* Remova linhas internas antigas, se existirem */
.platform-grid > div > div:nth-child(2),
.list{ display:none !important; }

/* Responsivo ainda menor no mobile */
@media (max-width: 600px){
  .platform-grid{ grid-template-columns: repeat(2,1fr) !important; gap: 10px !important; }
  .platform-grid > div, .bonus-card{ min-height: 210px !important; padding: 10px !important; }
  .bonus-value{ height: 64px; font-size: .9rem; }
  .platform-description-text{ font-size: .86rem !important; padding: 6px 8px !important; }
  .btn-access{ padding: 8px 16px; font-size: .85rem }
}

.folha {
  pointer-events: none;
}

/* Recommendations */

.recommendation-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .recommendation-container {
      margin-top: 40px;
      margin-bottom: 40px;
  }
}
.title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .title {
      font-size: 40px;
  }
}
.box {
  background-color: #121212;
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: center;
}
@media (min-width: 640px) {
  .grid {
      grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
  }
}
.platform {
  position: relative;
}
.platform a {
  display: block;
  width: 70px;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .platform a {
      width: 80px;
  }
}
.platform a:hover {
  transform: scale(1.1);
}
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}
.image-wrapper img {
  width: 100%;
  display: block;
}
.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: rgb(19, 19, 19);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}



/* Casino Theme Styling */

/* Box and Grid Container */
.platform-box {
  background-color: var(--secondary-color-darker);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Platform Cards */
.platform-grid > div {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3a3a3a;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color); /* Gold accent on hover */
}

/* Image Sections - Fixed Height for All Image Wrappers */
.platform-box .image-wrapper {
  text-align: center;
  margin-bottom: 10px;
  height: 120px; /* Fixed height for all image wrappers */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
  width: 100%;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Maintains aspect ratio while fitting in container */
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(10px); /* Intensidade do desfoque */
  transform: scale(1.1); /* Evita bordas visíveis do blur */
  z-index: 0;
}

.platform-grid > div > div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.2);
  height: 50px; /* Fixed height for game icon/name section */
}

.platform-grid > div > div:nth-child(2) img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.platform-grid > div > div:nth-child(2) h3 {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Table Styling */
.list {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.table-overlay {
  position: relative;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2) inset;
  background-color: rgba(0, 0, 0, 0.2);
}

.table-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.winningsTable {
  width: 100%;
  border-collapse: collapse;
  color: #ffffff;
  font-size: 14px;
}

.winningsTable thead {
  background-color: var(--primary-color); /* Gold header */
}

.winningsTable th {
  padding: 10px;
  text-align: left;
  font-weight: 600;
  color: #121212;
  text-transform: uppercase;
  font-size: 12px;
}

.winningsTable tbody tr {
  transition: background-color 0.3s ease;
  animation: fadeIn 0.5s;
}

.winningsTable tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.winningsTable tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.1); /* Subtle gold highlight */
}

.winningsTable td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ganhos column styling */
.winningsTable td:last-child {
  color: var(--secondary-color); /* Green for winnings */
  font-weight: 600;
}

/* Access Button */
.platform-grid > div > div:last-child {
  margin-top: auto;
  text-align: center;
  height: 50px; /* Fixed height for button container */
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-grid > div > div:last-child a {
  display: inline-block;
  background: var(--primary-color);
  color: #121212;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 212, 212, 0.3);
}

.platform-grid > div > div:last-child a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 212, 212, 0.4);
  background: var(--primary-color);
}

/* Animation for new rows */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Make all cards have the same height by using grid template rows */
.platform-grid > div {
  display: grid;
  grid-template-rows: 120px 50px 160px 50px;
  gap: 15px;
}

/* Social media buttons */

#social-media-btns {
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

#social-media-btns h3 {
  margin-bottom: 12px;
}

#social-media-btns  div{
  display: flex;
  gap: 20px;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.social-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  padding: 5px;
}

.telegram {
  background: linear-gradient(45deg, #36aee2, #0088cc);
  padding: 5px;
}

svg {
  width: 100%;
  height: 100%;
}

/* Refined Mobile Responsive Styles */
@media screen and (max-width: 767px) {
  /* Adjust grid to show 2 items per row */
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  /* Make cards smaller for mobile */
  .platform-grid > div {
    grid-template-rows: 70px 35px 100px 35px;
    gap: 6px;
    padding: 8px;
  }
  
  /* Adjust image wrapper height */
  .platform-box .image-wrapper {
    height: 70px;
    margin-bottom: 3px;
  }
  
  /* Adjust game icon and title section */
  .platform-grid > div > div:nth-child(2) {
    height: 35px;
    padding: 4px;
    gap: 5px;
  }
  
  .platform-grid > div > div:nth-child(2) img {
    width: 20px;
    height: 20px;
  }
  
  .platform-grid > div > div:nth-child(2) h3 {
    font-size: 10px;
    max-width: calc(100% - 25px);
  }
  
  /* Reduce table height */
  .list {
    height: 100px;
  }
  
  /* Adjust table font sizes and alignment */
  .winningsTable {
    font-size: 9px;
  }
  
  .winningsTable th {
    padding: 4px;
    font-size: 8px;
  }
  
  .winningsTable td {
    padding: 4px;
  }
  
  /* Center align all data in the table */
  .winningsTable th,
  .winningsTable td {
    text-align: center;
  }
  
  /* Make table more compact */
  .winningsTable th:first-child,
  .winningsTable td:first-child {
    width: 35%;
  }
  
  .winningsTable th:nth-child(2),
  .winningsTable td:nth-child(2) {
    width: 30%;
  }
  
  .winningsTable th:last-child,
  .winningsTable td:last-child {
    width: 35%;
  }
  
  /* Adjust button section */
  .platform-grid > div > div:last-child {
    height: 35px;
  }
  
  .platform-grid > div > div:last-child a {
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 15px;
    letter-spacing: 0.5px;
  }
  
  /* Reduce platform box padding */
  .platform-box {
    padding: 10px;
    margin-bottom: 1rem;
  }
  
  /* Fix box shadows and hover effects to be more subtle */
  .platform-grid > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .platform-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
}

/* Extra small devices adjustment */
@media screen and (max-width: 375px) {
  .platform-grid {
    grid-template-columns: 1fr; /* Revert to 1 column for very small devices */
    gap: 12px;
  }
  
  /* Allow slightly larger elements for single column */
  .platform-grid > div {
    grid-template-rows: 90px 40px 120px 40px;
  }
  
  .platform-box .image-wrapper {
    height: 90px;
  }
  
  .list {
    height: 120px;
  }
  
  .winningsTable {
    font-size: 11px;
  }
}

.glass-card {
  background-color: transparent !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.glass-card .card-body {
  background-color: rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 10px !important;
  border: 1px solid var(--primary-color) !important;
}

.winner-place {
  background-color: rgba(100, 100, 100, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  width: 100px;
  height: 100px;
  border-radius: 50% !important;
  border: 1px solid var(--secondary-color) !important;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.winner-place h3 {
  margin: 0;
  margin-left: 0.4em;
}

.winner-card {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.event-card-text {
  text-align: left;
}

.event-link i {
  font-size: 24px;
  color: var(--secondary-color);
}

#event-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

#event-description img {
  max-width: -webkit-fill-available;
  border-radius: 8px;
}

.glass-content {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 8px !important;
  border: 1px solid var(--primary-color) !important;
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 16px;
}

@media screen and (min-width: 768px) {
  #event-description {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #event-description {
    width: 90%;
  }

  .glass-content {
    text-align: center;
  }
}

.btn-primary-color {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.event-container {
  padding: 0; /* Remove padding to ensure image fills the entire container */
}

.event-link {
  display: block; /* Make the anchor element a block to fill the container */
  width: 100%; /* Ensure the anchor fills the width of the container */
  height: 100%; /* Ensure the anchor fills the height of the container */
}

.event-image {
  width: 100%; /* Image fills the width of the container */
  height: 100%; /* Image fills the height of the container */
  object-fit: cover; /* Maintain aspect ratio and cover the entire space */
  border-radius: 8px; /* Apply border radius */
}
/* ===== PATCH: Casino Hero nos cards ===== */

/* 1) Remove o painel verde e deixa o container neutro */
.platform-box{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 0 20px 0 !important;
}

/* 2) Card elegante com borda gradiente ouro→roxo */
.platform-grid > div{
  background: linear-gradient(145deg, #1a1a25, #222233) !important;
  border-radius: 14px !important;
  border: 2px solid transparent !important;
  border-image: linear-gradient(130deg, #ffd76a, #7b2cff) 1 !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.45) !important;
  padding: 14px !important;
  gap: 12px !important;
  transition: transform .25s, box-shadow .25s !important;
}
.platform-grid > div:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.55),
              0 0 18px rgba(255,215,106,.28),
              0 0 22px rgba(123,44,255,.22) !important;
}

/* 3) Imagem do topo: centralizada, mesmo tamanho em todos os cards */
.image-wrapper{
  height: 160px !important;
  margin-bottom: 8px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: rgba(0,0,0,.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.image-wrapper img{
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display:block !important;
}

/* 4) Descrição: destaque com faixa dourada e bom contraste */
.platform-description-text{
  color: #f2f2f6 !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  margin: 8px 0 !important;
  padding: 10px 12px !important;
  border-left: 4px solid #ffd76a !important;
  background: linear-gradient(90deg, rgba(255,215,106,.12), rgba(123,44,255,.08)) !important;
  border-radius: 6px !important;
  text-align: center !important;
}

/* 5) Botão “Acessar”: troca o verde por dourado 3D */
.platform-grid > div > div:last-child a,
.text-white{
  display: inline-block !important;
  background: linear-gradient(180deg, #ffd76a, #ffb800) !important;
  color: #1b1200 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
  padding: 10px 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,0,0,.15) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.35), 0 0 16px rgba(255,215,106,.35) !important;
  transition: transform .18s, box-shadow .18s, filter .18s !important;
}
.platform-grid > div > div:last-child a:hover,
.text-white:hover{
  transform: translateY(-2px) !important;
  filter: brightness(1.05) !important;
}

/* 6) Esconde barras vazias (aquelas faixas escuras) quando não houver tabela */
.list{
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
/* Se o navegador suportar :has() (Chrome/Edge/Opera), só mostra a .list quando houver linhas */
@supports(selector(:has(*))){
  .list:not(:has(table tbody tr)){ display:none !important; }
}

/* 7) Responsivo suave */
@media (max-width: 600px){
  .image-wrapper{ height: 130px !important; }
  .platform-description-text{ font-size: .92rem !important; padding: 8px 10px !important; }
}
/* ===== Remove espaços e barras internas dos cards ===== */
.platform-grid > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  min-height: 320px !important;
  padding: 16px !important;
}

/* Remove faixas escuras desnecessárias */
.platform-grid > div > div:nth-child(2),
.platform-grid > div > div:nth-child(3),
.list {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Centraliza e uniformiza imagens */
.platform-grid img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Descrição e botão mantêm estilo Casino Hero */
.platform-description-text {
  margin: 10px 0;
  text-align: center;
}

.platform-grid a,
.text-white {
  display: inline-block;
  background: linear-gradient(90deg, #ffd76a, #ffb800);
  color: #121212;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 215, 106, 0.3);
  transition: all 0.3s ease;
}

.platform-grid a:hover,
.text-white:hover {
  background: linear-gradient(90deg, #7b2cff, #5a1fd2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(123, 44, 255, 0.4);
}

/* Ajuste de responsividade */
@media (max-width: 600px) {
  .platform-grid > div {
    min-height: 260px !important;
  }
}
/* === GRID DE PLATAFORMAS === */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* === CARD === */
.platform-grid > div {
  width: 180px;
  height: 180px;
  background: linear-gradient(180deg, #1e1e26, #0d0d13);
  border-radius: 20px;
  border: 2px solid #b38bff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.platform-grid > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* === IMAGEM PRINCIPAL === */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === BLUR DE FUNDO === */
.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(10px);
  transform: scale(1.1);
  z-index: 0;
}

/* === ÍCONE E NOME DO JOGO === */
.platform-grid > div > div:nth-child(2) {
  text-align: center;
  z-index: 1;
}

.platform-grid > div > div:nth-child(2) img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  margin-bottom: 4px;
}

.platform-grid > div > div:nth-child(2) h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

/* === TABELA (OCULTA PARA NÃO POLUIR VISUAL) === */
.list {
  display: none;
}

/* === BOTÃO "ACESSAR" === */
.platform-grid > div > div:last-child {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.platform-grid > div > div:last-child a {
  display: inline-block;
  background: linear-gradient(90deg, #ffcf4a, #ff9b00);
  color: #1a1a1a;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(255, 215, 106, 0.4);
  transition: all 0.2s ease;
}

.platform-grid > div > div:last-child a:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* === MOBILE === */
@media (max-width: 600px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .platform-grid > div {
    width: 150px;
    height: 150px;
  }

  .platform-grid > div > div:nth-child(2) h3 {
    font-size: 11px;
  }

  .platform-grid > div > div:last-child a {
    padding: 6px 12px;
    font-size: 11px;
  }
}

