@import url('https://fonts.googleapis.com/css2?family=Anton&family=Alegreya+SC:ital,wght@0,400;0,700;1,400&family=Alegreya+Sans+SC:wght@400;700&display=swap');

:root {
  --color-dark-1: #0a0806;
  --color-dark-2: #110e0c;
  --color-dark-3: #191410;
  --color-gold: #ffc300;
  --color-gold-hover: #d4a017;
  --color-text: #e0d9cf;
  --color-text-dim: #bfae99;
  --color-border: rgba(255, 195, 0, 0.15);
  --color-border-dim: rgba(255, 195, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  background-color: #0a0806;
}

body {
  font-family: 'Alegreya SC', serif;
  font-weight: 400;
  background: #0a0806;
  color: #e0d9cf;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   ═══ NAV GERAL (TEMA ESCURO DO 1900RP) ═══
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100px;
  background: rgba(10, 8, 6, 0);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
  background: rgba(10, 8, 6, 0.95);
  border-bottom-color: rgba(255, 195, 0, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: transform 0.3s;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.navbar-links li a, 
.navbar-links li span {
  font-family: 'Alegreya Sans SC', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #cbbfa8;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 0 15px;
  height: 100px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.navbar-links li a:hover, 
.navbar-links li a.active {
  color: #ffc300;
  border-bottom-color: #ffc300;
}

.navbar-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 195, 0, 0.15);
  margin: 0 8px;
  flex-shrink: 0;
}

.navbar-cta {
  font-family: 'Alegreya Sans SC', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #000 !important;
  background: linear-gradient(135deg, #ffc300, #d4a017);
  border-radius: 2px;
  padding: 9px 24px !important;
  height: auto !important;
  border-bottom: none !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: filter .2s, transform 0.2s !important;
  margin-left: 10px;
  text-decoration: none;
}

.navbar-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #000 !important;
  border-bottom: none !important;
}

.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 195, 0, 0.3);
  color: #ffc300;
  font-size: 1.4rem;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s;
}

.navbar-toggle:hover {
  background: rgba(255, 195, 0, 0.1);
}

/* ── SOCIAL ICONS (navbar right) ── */
.navbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-social a {
  color: #cbbfa8;
  font-size: 18px;
  text-decoration: none;
  transition: color .2s, transform 0.2s;
}

.navbar-social a:hover {
  color: #ffc300;
  transform: scale(1.1);
}

/* ══════════════════════════════════════════
   ═══ BANNER SECTION (imagem de topo) ═════
   ══════════════════════════════════════════ */
.banner-section {
  width: 100%;
  margin-top: 0; /* Começa por baixo da navbar transparente */
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-bottom: 3px solid #ffc300;
}

.banner-section.no-img {
  background: linear-gradient(135deg, #050302 0%, #17100a 50%, #050302 100%);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #ffc300;
}

.banner-section.no-img h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  color: #ffc300;
  text-transform: uppercase;
  letter-spacing: .2em;
  text-shadow: 0 0 60px rgba(255, 195, 0, .4);
}

/* ══════════════════════════════════════════
   ═══ THREE COLUMNS SECTION (LORE E ETC) ═══
   ══════════════════════════════════════════ */
.three-cols-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 80px 80px;
  gap: 30px;
  background: #0d0a08;
  border-bottom: 1px solid rgba(255, 195, 0, 0.05);
}

.info-col {
  padding: 20px 30px;
  background: #110e0c;
  border: 1px solid rgba(255, 195, 0, 0.05);
  border-radius: 6px;
  transition: transform 0.3s, border-color 0.3s;
}

.info-col:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 195, 0, 0.25);
}

.info-col-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #ffc300;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  padding-bottom: 10px;
}

.info-col p {
  font-family: 'Alegreya SC', serif;
  font-size: 15.5px;
  color: #bfae99;
  line-height: 1.8;
  margin-bottom: 14px;
  text-align: justify;
}

/* ══════════════════════════════════════════
   ═══ DIVIDER SECTION (PARALLAX DO MAPA) ═══
   ══════════════════════════════════════════ */
.parallax-section {
  width: 100%;
  min-height: 480px;
  background: #050302 url('18857.png') center/cover no-repeat;
  background-attachment: fixed;
  border-top: 2px solid #ffc300;
  border-bottom: 2px solid #ffc300;
  position: relative;
}

.parallax-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Escurece um pouco para imersão */
}

/* ══════════════════════════════════════════
   ═══ JOIN SECTION (TABELA DE WHITELIST) ═══
   ══════════════════════════════════════════ */
.join-section {
  background: #0a0806;
  padding: 80px 30px;
  text-align: center;
}

.join-section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1;
}

.join-section-title span {
  color: #ffc300;
}

.join-discord-img {
  display: block;
  margin: 0 auto 40px;
  max-height: 80px;
  width: auto;
  transition: transform 0.3s;
}

.join-discord-img:hover {
  transform: rotate(5deg) scale(1.05);
}

.join-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

.join-card {
  background: #110e0c;
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.join-card:hover {
  transform: translateY(-5px);
  border-color: #ffc300;
  box-shadow: 0 10px 30px rgba(255, 195, 0, 0.1);
}

.join-card-head {
  background: #191410;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
}

.join-card-head h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffffff;
}

.join-card-price {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.1);
}

.join-card-price .pval {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  color: #ffc300;
  letter-spacing: .05em;
  text-shadow: 0 0 15px rgba(255, 195, 0, 0.2);
}

.join-card-list {
  list-style: none;
  padding: 20px 30px;
  text-align: left;
}

.join-card-list li {
  font-family: 'Alegreya SC', serif;
  font-size: 15px;
  color: #bfae99;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 195, 0, 0.05);
}

.join-card-list li:last-child {
  border-bottom: none;
}

.join-card-footer {
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 195, 0, 0.1);
  background: #191410;
}

.join-card-footer a {
  font-family: 'Alegreya Sans SC', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color .2s, text-shadow 0.2s;
}

.join-card-footer a:hover {
  color: #ffc300;
  text-shadow: 0 0 10px rgba(255, 195, 0, 0.5);
}

/* ══════════════════════════════════════════
   ═══ DARK SECTION (NOVIDADES + SOBRE) ════
   ══════════════════════════════════════════ */
.dark-section {
  background: #050302;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  border-top: 1px solid rgba(255, 195, 0, 0.05);
}

.dark-news {
  padding-right: 20px;
}

.dark-section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  padding-bottom: 10px;
}

.news-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.news-card-dark {
  background: #0c0907;
  border: 1px solid rgba(255, 195, 0, 0.1);
  border-radius: 6px;
  padding: 24px;
  transition: border-color .3s, transform 0.3s;
}

.news-card-dark:hover {
  border-color: #ffc300;
  transform: translateY(-3px);
}

.news-card-dark .icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.news-card-dark h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffc300;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.news-card-dark p {
  font-family: 'Alegreya SC', serif;
  font-size: 14px;
  color: #a89a87;
  line-height: 1.7;
  margin-bottom: 14px;
}

.news-card-dark .ndate {
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 12px;
  color: #ffc300;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: 0.8;
}

.dark-about {
  padding: 20px;
  background: #0c0907;
  border: 1px solid rgba(255, 195, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

.dark-about-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 20px;
}

.dark-about p {
  font-family: 'Alegreya SC', serif;
  font-size: 15px;
  color: #bfae99;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* ══════════════════════════════════════════
   ═══ VIDEO SECTION (TRAILER DO SERVIDOR) ══
   ══════════════════════════════════════════ */
.video-section {
  background: #0a0806;
  padding: 80px 80px;
  border-top: 1px solid rgba(255, 195, 0, 0.05);
}

.video-section-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 195, 0, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════════════════
   ═══ FOOTER ═══════════════════════════════
   ══════════════════════════════════════════ */
.site-footer {
  background: #050302;
  border-top: 1px solid rgba(255, 195, 0, 0.15);
  padding: 36px;
  text-align: center;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 13px;
  color: #8c806d;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.site-footer a {
  color: #8c806d;
  text-decoration: none;
  margin: 0 10px;
  transition: color .2s;
}

.site-footer a:hover {
  color: #ffc300;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-social a {
  font-size: 20px;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.15);
}

/* ══════════════════════════════════════════
   ═══ SIDEBAR PAGES (lore, regras, etc.) ══
   ══════════════════════════════════════════ */
body.dark-page {
  background: #0a0806;
  color: #e0d9cf;
}

body.dark-page .navbar {
  background: rgba(10, 8, 6, 0.95);
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
}

body.dark-page .navbar.scrolled {
  background: rgba(5, 3, 2, 0.98);
}

body.dark-page .navbar-links li a, 
body.dark-page .navbar-social a {
  color: #cbbfa8;
}

body.dark-page .navbar-links li a:hover, 
body.dark-page .navbar-links li a.active {
  color: #ffc300;
  border-bottom-color: #ffc300;
}

body.dark-page .navbar-divider {
  background: rgba(255, 195, 0, 0.15);
}

body.dark-page .site-footer {
  background: #050302;
  border-top-color: rgba(255, 195, 0, 0.15);
  color: #8c806d;
}

.sidebar-layout {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  width: 100%;
  padding: 140px 50px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.sidebar-nav {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 130px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  background: #110e0c;
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 8px;
  padding: 24px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.sidebar-nav::-webkit-scrollbar {
  width: 5px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: #4a3010;
  border-radius: 3px;
}

.sidebar-nav-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #ffc300;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  text-align: center;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav ul li a {
  display: block;
  color: #a89a87;
  font-family: 'Alegreya SC', serif;
  text-decoration: none;
  padding: 8px 12px;
  font-size: .88rem;
  border-left: 2px solid transparent;
  transition: color .2s, border-color .2s, padding-left .2s, background .2s;
  line-height: 1.4;
  border-radius: 0 4px 4px 0;
}

.sidebar-nav ul li a:hover, 
.sidebar-nav ul li a.active {
  color: #ffc300;
  border-left-color: #ffc300;
  background: rgba(255, 195, 0, 0.04);
  padding-left: 16px;
}

.content-area {
  flex: 1;
  min-width: 0;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 50px 30px;
  background: #110e0c;
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffc300, transparent);
}

.page-header h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #ffc300;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 12px;
  text-shadow: 0 0 50px rgba(255, 195, 0, .35);
  line-height: 1;
}

.page-header p {
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: .88rem;
  color: #a89a87;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.card {
  background: #110e0c;
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 8px;
  padding: 45px;
  margin-bottom: 30px;
  scroll-margin-top: 140px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.card h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #ffc300;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  letter-spacing: .15em;
  line-height: 1.1;
}

.card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffb600;
  text-transform: uppercase;
  margin: 32px 0 16px;
  letter-spacing: .1em;
  scroll-margin-top: 140px;
}

.card h4 {
  font-family: 'Alegreya Sans SC', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffc300;
  text-transform: uppercase;
  margin: 22px 0 10px;
  letter-spacing: .08em;
}

.card p {
  color: #bfae99;
  font-family: 'Alegreya SC', serif;
  font-size: 16px;
  margin-bottom: 18px;
  text-align: justify;
  line-height: 1.9;
}

.card ul, 
.card ol {
  color: #bfae99;
  font-family: 'Alegreya SC', serif;
  font-size: 16px;
  margin-left: 28px;
  margin-bottom: 20px;
}

.card li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.callout {
  border-left: 3px solid #ffc300;
  background: rgba(255, 195, 0, 0.05);
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.callout p {
  margin-bottom: 0;
  font-style: italic;
  color: #ffc300 !important;
}

.callout ul, 
.callout li {
  color: #ffc300;
}

.callout-warn {
  border-left-color: #e05e5e;
  background: rgba(224, 94, 94, 0.05);
}

.callout-warn p, 
.callout-warn ul, 
.callout-warn li {
  color: #e05e5e !important;
}

.callout-critical {
  border: 2px solid #e05e5e;
  background: rgba(224, 94, 94, 0.08);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
}

.callout-critical h3 {
  color: #e05e5e !important;
  margin-top: 0 !important;
}

.article-box {
  background: rgba(255, 195, 0, 0.02);
  border: 1px solid rgba(255, 195, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}

.article-box h4 {
  color: #ffc300;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   ═══ MUSIC PLAYER (TEMA ESCURO NOVO) ══════
   ══════════════════════════════════════════ */
.music-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(13, 10, 8, 0.95);
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
  z-index: 999;
  min-width: 250px;
  transition: all .3s ease;
  backdrop-filter: blur(5px);
}

.music-player.minimized {
  min-width: 0;
  width: auto;
  padding: 12px 16px;
}

.music-player.minimized .player-body {
  display: none;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.music-player.minimized .player-header {
  margin-bottom: 0;
}

.player-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  color: #ffc300;
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.player-min-btn, 
.player-minimize-btn {
  background: none;
  border: 1px solid rgba(255, 195, 0, 0.2);
  color: #ffc300;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
  padding: 0;
  line-height: 1;
}

.player-min-btn:hover, 
.player-minimize-btn:hover {
  border-color: #ffc300;
  background: rgba(255, 195, 0, 0.1);
}

.vinyl-wrap, 
.vinyl-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.vinyl {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#1c1610 0%, #302418 20%, #1c1610 40%, #302418 60%, #1c1610 80%, #302418 100%);
  border: 3px solid rgba(255, 195, 0, 0.25);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.vinyl::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffc300;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #0d0a06;
}

@keyframes spin-vinyl {
  100% { transform: rotate(360deg); }
}

.vinyl.playing {
  animation: spin-vinyl 3s linear infinite;
}

.player-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ctrl-btn, 
.control-btn {
  background: #1a1410;
  border: 1px solid rgba(255, 195, 0, 0.2);
  color: #ffc300;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.ctrl-btn:hover, 
.control-btn:hover {
  background: #261e18;
  border-color: #ffc300;
  transform: scale(1.08);
}

.vol-ctrl, 
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.vol-label, 
.volume-label {
  color: #8c806d;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vol-slider, 
.volume-slider {
  flex: 1;
  height: 3px;
  background: #2a2015;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.vol-slider::-webkit-slider-thumb, 
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #ffc300;
  border-radius: 50%;
  cursor: pointer;
}

.vol-slider::-moz-range-thumb, 
.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #ffc300;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* ══════════════════════════════════════════
   ═══ RESPONSIVE / ADAPTAÇÕES MOBILE ═══════
   ══════════════════════════════════════════ */
@media(max-width: 1200px) {
  .three-cols-section {
    padding: 60px 40px;
    gap: 20px;
  }
}

@media(max-width: 1024px) {
  .three-cols-section {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
  .dark-section {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    gap: 40px;
  }
  .dark-news {
    padding-right: 0;
  }
  .video-section {
    padding: 60px 30px;
  }
  .join-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media(max-width: 960px) {
  .navbar {
    padding: 0 20px;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-social {
    display: none;
  }
  .navbar-links {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #0a0806;
    border-top: 1px solid rgba(255, 195, 0, 0.15);
    padding: 10px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
  }
  .navbar-links.open {
    display: flex;
  }
  .navbar-links li a, 
  .navbar-links li span {
    height: 50px;
    padding: 0 25px;
    border-bottom: none;
    border-left: 2px solid transparent;
    width: 100%;
    justify-content: flex-start;
  }
  .navbar-links li a:hover, 
  .navbar-links li a.active {
    border-left-color: #ffc300;
    border-bottom: none;
    background: rgba(255, 195, 0, 0.02);
  }
  .navbar-divider {
    display: none;
  }
  .navbar-cta {
    margin: 10px 25px !important;
    width: calc(100% - 50px) !important;
    justify-content: center !important;
  }
  .sidebar-layout {
    flex-direction: column;
    padding: 130px 20px 50px;
  }
  .sidebar-nav {
    display: none; /* Em mobile o índice não aparece para focar no texto */
  }
}

@media(max-width: 600px) {
  .music-player {
    bottom: 16px;
    right: 16px;
    min-width: 220px;
  }
  .three-cols-section {
    padding: 40px 20px;
  }
  .info-col {
    padding: 20px;
  }
  .info-col-title {
    font-size: 38px;
  }
  .join-section-title {
    font-size: 38px;
  }
}
