/* -------------------------------------------
   ONDE PASSA O VASCO? — style.css
   ------------------------------------------- */

/* -- VARIÁVEIS -- */
:root {
  --black:  #0a0a0a;
  --white:  #f0ede8;
  --gray:   #1a1a1a;
  --gray2:  #2a2a2a;
  --gray3:  #555;
  --accent: #c8a96e;
}

/* -- RESET -- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -- BASE -- */
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.025) 40px);
  pointer-events: none;
  z-index: 0;
}

/* ---------------------------------------------
   HEADER
--------------------------------------------- */
header {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--gray2);
}

.cross-emblem {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
}

header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: .04em;
  line-height: .9;
}

header h1 span {
  color: var(--accent);
}

/* ---------------------------------------------
   MAIN
--------------------------------------------- */
main {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.live-section {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 3rem;
}

.live-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #c0392b;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .12em;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  animation: btn-pulse 2s ease-in-out infinite;
  transition: opacity .2s, transform .2s;
}

.live-btn:hover {
  opacity: .88;
  transform: scale(1.04);
  animation-play-state: paused;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: dot-blink 1.1s ease-in-out infinite;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray2);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: .75rem;
}

.platform-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: 10px;
  padding: 1.1rem .9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--white);
  transition: border-color .2s, transform .2s;
  text-align: center;
  animation: fadeUp .35s ease both;
}

.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.platform-card .p-icon { font-size: 1.7rem; }
.platform-card .p-name { font-weight: 700; font-size: .86rem; }
.platform-card .p-desc { font-size: .7rem; color: var(--gray3); }

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  font-size: .73rem;
  color: var(--gray3);
  border-top: 1px solid var(--gray2);
  letter-spacing: .04em;
}

footer strong {
  color: var(--accent);
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192, 57, 43, .55); }
  50%       { box-shadow: 0 0 0 14px rgba(192, 57, 43, 0); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .25; }
}

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

@media (max-width: 520px) {
  .live-btn {
    padding: .9rem 1.8rem;
    font-size: 1.2rem;
  }
}
