:root {
  --gor-green: #23593A;
  --gor-yellow: #F2CB05;
  --gor-blue: #023373;
  --gor-white: #FFFFFF;
  --gor-black: #000000;
  --bg-gradient-start: #01152e;
  --bg-gradient-end: #023373;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, var(--bg-gradient-end) 0, var(--bg-gradient-start) 45%, #000814 100%);
  color: var(--gor-white);
  min-height: 100vh;
  /* bloqueia seleção de texto (proteção leve) */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* permite seleção de texto só nas grades de vídeos */
#latest-videos,
#live-videos {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* HEADER ---------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text-sub {
  font-size: 12px;
  opacity: 0.8;
  text-transform: uppercase;
}

.btn {
  border-radius: 999px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gor-yellow), #ffe96a);
  color: var(--gor-black);
  box-shadow: 0 0 18px rgba(242, 203, 5, 0.45);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--gor-white);
}

/* BOTÃO STORE TURBINADO -------------------------------- */
.btn-store {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F2CB05, #ffe55c, #F2CB05);
  background-size: 200% 100%;
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 22px rgba(242, 203, 5, 0.7),
    0 0 40px rgba(0, 0, 0, 0.6);
  animation: gor-store-pulse 2.2s ease-in-out infinite,
             gor-store-glow 6s linear infinite;
  overflow: hidden;
}

/* faixa de brilho passando por cima */
.btn-store::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 40%,
    transparent 80%
  );
  transform: translateX(-120%);
  animation: gor-store-sweep 3.8s ease-in-out infinite;
  pointer-events: none;
}

/* label principal */
.btn-store-label {
  position: relative;
  z-index: 1;
}

/* badge lateral */
.btn-store-badge {
  position: relative;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 999px;
  background: #23593A;
  color: #FFFFFF;
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* hover: mais “empurrão” visual */
.btn-store:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 30px rgba(242, 203, 5, 0.95),
    0 0 55px rgba(0, 0, 0, 0.9);
}

/* animações do botão Store */
@keyframes gor-store-pulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1px) scale(1.015);
  }
}

@keyframes gor-store-glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gor-store-sweep {
  0% {
    transform: translateX(-140%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateX(140%);
    opacity: 0;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

/* HERO ----------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-left {
  padding: 22px;
  background: linear-gradient(135deg, rgba(2, 51, 115, 0.9), rgba(1, 14, 34, 0.96));
  border-radius: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(242, 203, 5, 0.5);
  background: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00ff66;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.85);
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-highlight {
  color: var(--gor-yellow);
}

.hero-desc {
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-right {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(0, 12, 28, 0.98));
}

.hero-video-placeholder {
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-video-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff4c4c;
  box-shadow: 0 0 9px rgba(255, 76, 76, 0.9);
}

.hero-right-footer {
  margin-top: 10px;
  font-size: 11px;
  opacity: 0.8;
}

/* SECTIONS --------------------------------------------- */
.section {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.video-card {
  background: rgba(1, 11, 25, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #d00;
  font-size: 10px;
  text-transform: uppercase;
}

.video-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 2px 6px;
  border-radius: 999px;
}

.video-body {
  padding: 10px;
}

.empty-state {
  font-size: 13px;
  opacity: 0.85;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.3);
}

/* FOOTER simples */
footer {
  font-size: 12px;
  opacity: 0.8;
  text-align: center;
}
