/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #111;
  color: white;
  scroll-behavior: smooth;
}

/* ===========================
   HEADER
=========================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu {
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   SEARCH BOX
=========================== */
.search-box.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  padding: 6px 10px;
  border-radius: 20px;
  gap: 5px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  width: 100%;
  padding: 4px 30px 4px 5px;
  font-size: 14px;
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #141b22;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.search-item:hover {
  background: #1f2933;
}

.search-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.search-info h4 {
  margin: 0;
  color: white;
  font-size: 14px;
}

.search-info span {
  color: #39ff14;
  font-weight: bold;
  font-size: 13px;
}

/* ===========================
   ACTIONS (DIREITA DO HEADER)
=========================== */
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login {
  padding: 8px 15px;
  background: #00ff9c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}

.login:hover {
  background: #00cc7a;
}

.user-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 6px 14px 6px 6px;
  cursor: default;
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b6fff, #8844ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-name {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.user-box a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.2s;
  line-height: 1;
}

.user-box a:hover {
  color: #ff4444;
}

/* ===========================
   CARRINHO (HEADER)
=========================== */
/* ===========================
   MEUS PEDIDOS (HEADER)
=========================== */
.orders-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  user-select: none;
  color: rgba(255,255,255,0.75);
  transition: background .2s, color .2s;
}

.orders-header:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.orders-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 360px;
  background: #080f1e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 9999;
  overflow: hidden;
  animation: dropIn .2s cubic-bezier(.34,1.56,.64,1);
}

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.orders-dropdown.active { display: flex; }

.orders-top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  background: rgba(255,255,255,0.02);
}

.orders-title-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
}

.orders-count-badge {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.orders-content {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 6px;
}

.orders-content::-webkit-scrollbar { width: 4px; }
.orders-content::-webkit-scrollbar-track { background: transparent; }
.orders-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.order-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}

.order-card:hover { background: rgba(255,255,255,0.06); }

.order-card.pendente  { border-left-color: #fbbf24; }
.order-card.aprovado  { border-left-color: #22c55e; }
.order-card.entregue  { border-left-color: #818cf8; }
.order-card.cancelado { border-left-color: #f87171; }

.order-card-left { display: flex; flex-direction: column; gap: 3px; }

.order-card-id {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order-card-total {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .01em;
}

.order-card-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 6px;
  align-items: center;
}

.order-card-meta span + span::before {
  content: '·';
  margin-right: 6px;
}

.order-card-status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.order-card-status.pendente  { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.order-card-status.aprovado  { background: rgba(34,197,94,0.12);  color: #22c55e; border: 1px solid rgba(34,197,94,0.25);  }
.order-card-status.entregue  { background: rgba(129,140,248,0.12);color: #818cf8; border: 1px solid rgba(129,140,248,0.25);}
.order-card-status.cancelado { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.25);}

/* ===========================
   CARRINHO (HEADER)
=========================== */
.cart-header {
  position: relative;
  font-size: 22px;
  cursor: pointer;
  user-select: none;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  pointer-events: none;
}

.cart-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  width: 320px;
  background: #0b2a66;
  border-radius: 12px;
  padding: 15px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.cart-dropdown.active {
  display: flex;
}

.cart-content {
  max-height: 250px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.cart-item img {
  width: 55px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-info {
  flex: 1;
}

.cart-info p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

.cart-info span {
  font-size: 12px;
  color: #aaa;
}

.cart-price {
  font-weight: bold;
  color: #00ff9c;
  font-size: 14px;
}

.remove-item {
  cursor: pointer;
  color: #ff4d4d;
  font-size: 12px;
  padding: 2px 6px;
  transition: opacity 0.2s;
}

.remove-item:hover {
  opacity: 0.7;
}

.cart-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  padding-top: 10px;
}

.subtotal {
  font-size: 14px;
  color: #ccc;
}

.finish-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: #00ff9c;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.finish-btn:hover {
  background: #00cc7a;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.cart-header.bounce {
  animation: bounce 0.4s;
}

.remove-confirm {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12px;
  color: #aaa;
}

.remove-confirm span {
  white-space: nowrap;
}

.confirm-yes,
.confirm-no {
  padding: 3px 9px;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.confirm-yes {
  background: #e74c3c;
  color: #fff;
}

.confirm-yes:hover {
  background: #c0392b;
}

.confirm-no {
  background: #333;
  color: #ccc;
}

.confirm-no:hover {
  background: #444;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  text-align: center;
}

.cart-empty-icon {
  font-size: 32px;
  opacity: 0.5;
}

.cart-empty p {
  color: #aaa;
  font-size: 13px;
  margin: 0;
}

.cart-empty-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 7px 18px;
  background: #00ff9c;
  color: #111;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.cart-empty-btn:hover {
  background: #00cc7a;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  padding: 60px;
  margin-top: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 45%,
    rgba(180,10,10,0.18) 100%
  );
  z-index: 1;
}

.hero-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: heroFadeIn 0.8s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff2222, #cc0000);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(255,30,30,0.45);
}

/* Título */
.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.8), 0 0 60px rgba(255,60,60,0.15);
}

/* Subtítulo */
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  letter-spacing: .04em;
}

/* Meta (rating + plataformas) */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-rating {
  color: #fbbf24;
  font-size: 15px;
  font-weight: 600;
}

.hero-rating span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 400;
  margin-left: 4px;
}

.hero-platforms {
  display: flex;
  gap: 7px;
}

.hero-platforms span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* Preço */
.hero-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-old-price {
  color: rgba(255,255,255,0.35);
  font-size: 16px;
  text-decoration: line-through;
}

.hero-new-price {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero-discount {
  background: #00cc44;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

/* Botões */
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: linear-gradient(135deg, #00e64d, #00b33c);
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,200,60,0.4);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,230,77,0.55);
}

.hero-btn-wish {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-btn-wish:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Trust badges */
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-trust span {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ===========================
   ROWS (PRATELEIRAS)
=========================== */
.row {
  margin: 20px;
}

.row h2 {
  margin-bottom: 10px;
}

.row-wrapper {
  position: relative;
}

.row-games {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 50px 15px 50px;
  scroll-behavior: smooth;
}

.row-games::-webkit-scrollbar {
  display: none;
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  z-index: 50;
  transition: background 0.3s, transform 0.3s;
}

.arrow.left  { left: 0; }
.arrow.right { right: 0; }

.arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

/* ===========================
   CARDS
=========================== */
.card {
  position: relative;
  min-width: 200px;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  border-radius: 0 0 10px 10px;
  z-index: 10;
  pointer-events: none;
}

.game-title {
  font-size: 14px;
  margin: 0 0 5px;
  color: white;
}

.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.old-price {
  color: #ff4d4d;
  text-decoration: line-through;
  font-size: 12px;
}

.new-price {
  color: #00ff9c;
  font-weight: bold;
  font-size: 14px;
}

/* Ícones do card (carrinho / fav) — precisam de pointer-events */
.price-box .cart,
.price-box .fav {
  pointer-events: auto;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s;
  z-index: 20;
  position: relative;
}

.price-box .cart { margin-left: auto; }
.price-box .cart:hover,
.price-box .fav:hover { transform: scale(1.2); }

.fav.ativo { color: red; }

/* Efeito Netflix */
.row-games:hover .card {
  transform: translateX(-10px);
}

.row-games .card:hover {
  transform: scale(1.15);
  z-index: 20;
}

.row-games .card:hover ~ .card {
  transform: translateX(20px);
}

/* ===========================
   BENEFITS BAR
=========================== */
.benefits {
  margin: 40px 20px;
  background: linear-gradient(90deg, #061b4d, #04122e);
  border-radius: 20px;
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.benefit-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: #00ff9c;
  flex-shrink: 0;
}

.benefit-item span {
  display: block;
  color: #9fb3ff;
  font-size: 14px;
}

.benefit-item h3 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.1;
  color: white;
}

/* ===========================
   BANNERS
=========================== */
.banners {
  display: flex;
  gap: 20px;
  padding: 20px 20px 40px;
}

.banner {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.banner img {
  width: 100%;
  aspect-ratio: 3 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner:hover {
  transform: scale(1.03);
}

/* ===========================
   MAIS VENDIDOS
=========================== */
.mais-vendidos {
  padding: 40px 20px;
}

.top-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.top-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}

.top-title button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  padding: 7px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.top-title button:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59,130,246,0.08);
}

.vendidos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vendido-card {
  display: flex;
  gap: 14px;
  background: #0d1220;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px;
  border-radius: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.vendido-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6, #7c3aed);
  border-radius: 3px 0 0 3px;
}

.vendido-card:nth-child(1)::before { background: linear-gradient(180deg, #fbbf24, #f59e0b); }
.vendido-card:nth-child(2)::before { background: linear-gradient(180deg, #9ca3af, #6b7280); }
.vendido-card:nth-child(3)::before { background: linear-gradient(180deg, #cd7c3f, #92400e); }

.vendido-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.rank {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  letter-spacing: -0.02em;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.vendido-card:nth-child(1) .rank { color: rgba(251,191,36,0.5); }
.vendido-card:nth-child(2) .rank { color: rgba(156,163,175,0.4); }
.vendido-card:nth-child(3) .rank { color: rgba(205,124,63,0.45); }

.vendido-img {
  width: 70px;
  height: 94px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

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

.vendido-info h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platforms {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.platforms span {
  font-size: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2px 7px;
  border-radius: 4px;
  color: #64748b;
  letter-spacing: 0.03em;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

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

.desconto-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(34,197,94,0.1);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.2);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.countdown {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  padding: 4px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.actions-vendido {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}

.actions-vendido .cart,
.actions-vendido .fav {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}

.actions-vendido .cart:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.35);
  transform: scale(1.1);
}

.actions-vendido .fav:hover {
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.35);
  transform: scale(1.1);
}

/* ===========================
   NEWSLETTER
=========================== */
.steam-newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 180, 255, 0.15), transparent 45%),
    linear-gradient(135deg, #05070a, #0b0f14, #05070a);
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), inset 0 0 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.steam-newsletter::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(57, 255, 20, 0.12);
  filter: blur(90px);
  top: -120px;
  left: -120px;
  pointer-events: none;
}

.steam-newsletter::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(0, 255, 120, 0.08);
  filter: blur(100px);
  bottom: -150px;
  right: -150px;
  pointer-events: none;
}

.steam-newsletter-content {
  max-width: 600px;
  color: #dce3ea;
  position: relative;
  z-index: 2;
}

.steam-newsletter-content h2 {
  font-size: 34px;
  color: #39ff14;
  margin-bottom: 10px;
}

.steam-newsletter-content p {
  color: #9fb0c0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.steam-newsletter-content span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #6f7f8f;
}

.steam-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.steam-form input {
  padding: 12px;
  width: 260px;
  border-radius: 6px;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: #0e141b;
  color: white;
  outline: none;
}

.steam-form button {
  padding: 12px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #39ff14;
  color: #000;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.steam-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(57, 255, 20, 0.3);
}

/* ===========================
   PERFIL
=========================== */
.profile-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 32px 60px;
  min-height: 100vh;
}

.profile-hero {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.profile-avatar-big {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #00e676;
  color: #111;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-hero-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-email-text {
  font-size: 13px;
  color: #555;
}

.profile-tabs-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 28px;
}

.profile-tab {
  background: transparent;
  border: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
  margin-bottom: -1px;
}

.profile-tab:hover { color: #ccc; }

.profile-tab.active {
  color: #fff;
  border-bottom-color: #00e676;
}

.profile-tab-content { display: none; }
.profile-tab-content.active { display: flex; flex-direction: column; gap: 20px; }

.profile-card {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
}

.profile-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.profile-card-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 18px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.profile-field label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.profile-field input {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.profile-field input:focus { border-color: #00e676; }
.profile-field input:disabled { color: #444; cursor: not-allowed; }

.profile-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.profile-save-btn {
  margin-top: 4px;
  padding: 10px 22px;
  background: #00e676;
  border: none;
  border-radius: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.profile-save-btn:hover { background: #00c853; }

.wallet-balance {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 16px 0;
}

.wallet-label { font-size: 12px; color: #555; }

.wallet-value {
  font-size: 32px;
  font-weight: 700;
  color: #00e676;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  color: #666;
  padding: 56px 60px 32px;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-brand {
  max-width: 220px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid #222;
  color: #777;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: #222;
  color: #fff;
}

.footer-col {
  min-width: 140px;
}

.footer-col h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ccc;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  padding: 5px 12px;
  border-radius: 6px;
  background: #141414;
  border: 1px solid #222;
  color: #666;
  font-size: 12px;
  font-weight: 500;
}

.footer-copy {
  font-size: 12px;
  color: #333;
}

/* ===========================
   CHAT FLUTUANTE
=========================== */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00ff9c;
  color: black;
  font-size: 26px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 255, 150, 0.6);
  transition: transform 0.3s;
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 280px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chat-header {
  background: #00ff9c;
  color: black;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header span {
  cursor: pointer;
}

.chat-body {
  padding: 10px;
  height: 150px;
  font-size: 14px;
}

.chat-footer {
  display: flex;
}

.chat-footer input {
  flex: 1;
  padding: 8px;
  border: none;
  outline: none;
}

.chat-footer button {
  background: #00ff9c;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: bold;
}

/* ===========================
   SIDEBAR
=========================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0b2a66, #071a3a);
  color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 3000;
  padding: 15px;
  overflow: visible;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo-side {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

.close-btn {
  cursor: pointer;
  font-size: 18px;
}

.item {
  display: block;
  padding: 12px;
  margin: 4px 0;
  color: #cfd8ff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
}

.item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(5px);
}

.sidebar hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 12px 0;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 2500;
}

.overlay.show {
  display: block;
}

/* SUBMENU DA SIDEBAR */
.item-wrapper {
  position: relative;
}

.item-wrapper .submenu {
 position: absolute;
  top: 0;
  left: 100%;
  background: #0a1f4d;
  width: 200px;
  padding: 10px;
  border-radius: 6px;
  display: none;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.item-wrapper:hover .submenu {
  display: block;
}
.submenu a,
.submenu span {
  display: block;
  padding: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* ===========================
   PÁGINAS: DETALHES / GAME
=========================== */
.game-page {
  background: #0f0f0f;
  color: #fff;
  min-height: 100vh;
}

/* HERO */
.game-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.game-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(15, 15, 15, 0.98) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 60px 0;
}

.back-btn {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ccc;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}

.back-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.game-header-info {
  padding-top: 8px;
}

.game-header-info h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.game-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.game-meta span {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #aaa;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

/* BODY */
.game-body {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 36px 48px 60px;
  align-items: start;
}

/* MAIN (esquerda) */
.game-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.game-main h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

/* SIDEBAR (direita) */
.game-sidebar {
  position: sticky;
  top: 80px;
}

.game-cover {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
  display: block;
}

.game-buy-box {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  padding: 20px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-price {
  color: #00ff4c;
  font-size: 26px;
  font-weight: 700;
}

.btn-cart {
  width: 100%;
  background: #00e676;
  border: none;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  color: #111;
}

.btn-cart:hover {
  background: #00c853;
  transform: translateY(-1px);
}

.btn-wishlist {
  width: 100%;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #aaa;
  padding: 11px;
  font-size: 13px;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-wishlist:hover {
  border-color: #555;
  color: #fff;
}

.buy-note {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin: 0;
}

/* SEÇÕES */
.game-about,
.game-requirements {
  background: #141414;
  border: 1px solid #1e1e1e;
  border-radius: 12px;
  padding: 28px;
}

.game-about h2,
.game-requirements h2 {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e1e;
}

.game-about p {
  line-height: 1.85;
  color: #bbb;
  font-size: 14px;
}

.game-requirements ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.game-requirements li {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
}

/* ===========================
   CHECKOUT
=========================== */
.methods {
  margin-bottom: 20px;
}

.method {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1b3b7a;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.method:hover {
  background: #2553aa;
}

.method.active {
  border: 2px solid #2d6bff;
  background: #274f9e;
}

.payment-group {
  background: #1b3b7a;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.payment-group h3 {
  margin: 0 0 5px 0;
}

.payment-group p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
}

label {
  display: block;
  margin: 6px 0;
  cursor: pointer;
}

.terms {
  margin-top: 15px;
  padding: 10px;
}

.total {
  font-size: 22px;
  margin: 15px 0;
}

.price-fav {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.heart {
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  top: -3px;
}

.heart:hover {
  transform: scale(1.2);
}

.heart.active {
  color: red;
}

.voltar-btn {
  margin-top: 20px;
  padding: 14px 24px;
  background: #2d6bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.voltar-btn:hover {
  opacity: 0.9;
}

/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 900px) {
  .vendidos-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    flex-direction: column;
    padding: 30px 20px;
  }

  .search-box.center {
    position: static;
    transform: none;
    width: 100%;
  }

  .header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 15px;
  }

  .actions {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .steam-newsletter {
    padding: 40px 20px;
    margin: 40px 10px;
  }

  .steam-form {
    flex-direction: column;
    align-items: center;
  }

  .steam-form input {
    width: 100%;
  }

  .banners {
    flex-direction: column;
  }

  .game-container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 30px 20px;
    height: auto;
    min-height: 400px;
  }
}

/* ===========================
   CASHBACK PANEL
=========================== */
.cashback-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3500;
}

.cashback-overlay.open {
  display: block;
}

.cashback-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: #0d1117;
  border-left: 1px solid #1e2a3a;
  z-index: 3600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cashback-panel.open {
  transform: translateX(0);
}

.cashback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #1e2a3a;
}

.cashback-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.cashback-close {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.cashback-close:hover {
  color: #fff;
  background: #1a1a2e;
}

.cashback-tabs {
  display: flex;
  border-bottom: 1px solid #1e2a3a;
  padding: 0 24px;
  gap: 4px;
}

.cashback-tab {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.cashback-tab:hover {
  color: #aaa;
}

.cashback-tab.active {
  color: #00ff9c;
  border-bottom-color: #00ff9c;
}

.cashback-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 24px;
}

.cashback-body::-webkit-scrollbar {
  width: 4px;
}

.cashback-body::-webkit-scrollbar-thumb {
  background: #1e2a3a;
  border-radius: 4px;
}

.cb-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #0a2a1a, #0d3a22);
  border: 1px solid #00ff9c33;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.cb-highlight-pct {
  font-size: 42px;
  font-weight: 800;
  color: #00ff9c;
  line-height: 1;
}

.cb-highlight-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.4;
}

.cb-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cb-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cb-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #111827;
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 16px;
}

.cb-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #00ff9c;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cb-step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cb-step-info strong {
  font-size: 14px;
  color: #eee;
}

.cb-step-info span {
  font-size: 13px;
  color: #666;
}

.cb-note {
  background: #111827;
  border: 1px solid #1e2a3a;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #aaa;
}

.cb-balance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0a2a1a, #0d3a22);
  border: 1px solid #00ff9c33;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 24px;
  text-align: center;
}

.cb-balance-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cb-balance-value {
  font-size: 38px;
  font-weight: 800;
  color: #00ff9c;
}

.cb-balance-sub {
  font-size: 12px;
  color: #666;
}

.cb-history-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.cb-history-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 0;
  color: #555;
  text-align: center;
}

.cb-history-empty span {
  font-size: 32px;
}

.cb-history-empty p {
  font-size: 14px;
  color: #666;
}

.cb-history-empty small {
  font-size: 12px;
  color: #444;
}

.cb-login-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

.cb-login-prompt span {
  font-size: 36px;
}

.cb-login-prompt p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.cb-login-btn {
  margin-top: 8px;
  background: #00ff9c;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cb-login-btn:hover {
  opacity: 0.85;
}