/* ============================================================
   Out Of Bounds Entertainment — style.css
   ============================================================ */

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

/* ----- Page ----- */
body {
  background: #080a09;
}

.page {
  background: #080a09;
  font-family: 'DM Sans', sans-serif;
  color: #d8d4cc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ----- Nav ----- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  background: #080a09;
  z-index: 100;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .05em;
  color: #f0ece4;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #5a7c68;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #5cdb8d;
}

.live-badge {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid #1a3328;
  border-radius: 2px;
  color: #666;
}

/* ----- Hero ----- */
.hero {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-left {
  padding: 2.5rem 3rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #5a7c68;
  font-weight: 500;
  margin-bottom: .75rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: .9;
  color: #f0ece4;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: #2d8048;
}

.hero-sub {
  font-size: 13px;
  color: #6a9c7c;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
}

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

.tag {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #4a6e58;
  border: 1px solid #1a3328;
  border-radius: 2px;
  padding: 4px 10px;
}

/* ----- Hero right info panel ----- */
.hero-right {
  padding: 2.5rem 4rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.04);
}

.info-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4a6e58;
  font-weight: 500;
  margin-bottom: 6px;
}

.info-val {
  font-size: 13px;
  color: #7a9c88;
  line-height: 1.6;
  font-weight: 300;
}

.info-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: .5rem;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #5a7c68;
  border: 1px solid #1a3328;
  border-radius: 2px;
  padding: 6px 12px;
  text-decoration: none;
  transition: color .15s, border-color .15s;
}

.discord-btn:hover {
  color: #5cdb8d;
  border-color: #2a5c3a;
}

/* ----- Player ----- */
.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.player {
  width: 100%;
  background: #0d0f0e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.player-header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.p-source-toggle {
  display: flex;
  gap: 1px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  padding: 2px;
}

.p-source-btn {
  flex: 1;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #5a7c68;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 1px;
  transition: background .15s, color .15s;
}

.p-source-btn.active {
  background: #1a4d2e;
  color: #5cdb8d;
}

.p-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c0392b;
  flex-shrink: 0;
}

.p-dot.live {
  background: #27ae60;
  animation: pulse 1.8s ease-in-out infinite;
}

.p-dot.loading {
  background: #e67e22;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(39,174,96,.4); }
  50%       { opacity: .8; box-shadow: 0 0 0 5px rgba(39,174,96,0); }
}

.p-status-txt {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #555;
  font-weight: 500;
}

.p-status-txt.live    { color: #27ae60; }
.p-status-txt.loading { color: #e67e22; }

.p-np-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a6e58;
  font-weight: 500;
  margin-bottom: 4px;
}

.p-np-track {
  font-size: 13px;
  color: #c0bcb4;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-np-track.placeholder {
  color: #354540;
  font-style: italic;
}

.p-vis {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  margin-top: 10px;
  opacity: 0;
  transition: opacity .4s;
}

.p-vis.active { opacity: 1; }

.p-vis span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #1f5e34;
  animation: bar .9s ease-in-out infinite alternate;
}

@keyframes bar {
  from { height: 3px; }
  to   { height: 100%; }
}

.player-body {
  padding: 1rem 1.5rem 1.5rem;
}

.p-play-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  background: none;
  margin-bottom: 1rem;
  display: block;
  padding: 0;
}

.p-play-inner {
  background: #1a4d2e;
  border-radius: 2px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .15s;
}

.p-play-btn:hover  .p-play-inner { background: #215e38; }
.p-play-btn:active .p-play-inner { background: #163d25; }

.p-play-icon {
  color: #5cdb8d;
  font-size: 15px;
  line-height: 1;
}

.p-play-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5cdb8d;
}

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

.p-vol-icon {
  color: #5a7c68;
  font-size: 14px;
  flex-shrink: 0;
  cursor: pointer;
  transition: color .15s;
}

.p-vol-icon:hover { color: #5cdb8d; }

.p-range-wrap {
  flex: 1;
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}

.p-range-track {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.09);
  border-radius: 2px;
  pointer-events: none;
}

.p-range-fill {
  position: absolute;
  left: 0;
  height: 1px;
  background: #1f6637;
  border-radius: 2px;
  pointer-events: none;
  width: 70%;
  transition: width .05s;
}

.p-range {
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 18px;
  cursor: pointer;
}

.p-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #5cdb8d;
  cursor: pointer;
}

.p-range::-moz-range-thumb {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #5cdb8d;
  border: none;
  cursor: pointer;
}

.p-vol-pct {
  font-size: 11px;
  color: #5a7c68;
  font-weight: 500;
  min-width: 28px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.player-footer {
  padding: .6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-bitrate {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3a5548;
  font-weight: 500;
}

.p-reconnect {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3a5548;
  cursor: pointer;
  padding: 3px 0;
  font-weight: 500;
  transition: color .15s;
}

.p-reconnect:hover { color: #5a7c68; }

/* ----- Stats bar ----- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat {
  padding: 1.75rem 4rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: #f0ece4;
  line-height: 1;
  margin-bottom: 3px;
}

.stat-num em {
  font-style: normal;
  color: #2d8048;
}

.stat-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #5a7c68;
  font-weight: 500;
}

/* ----- Schedule ----- */
.schedule-section {
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #f0ece4;
  letter-spacing: .03em;
}

.section-link {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5a7c68;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
  cursor: pointer;
}

.section-link:hover { color: #5cdb8d; }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.show-card {
  background: #080a09;
  padding: 1.25rem;
  transition: background .15s;
}

.show-card:hover { background: #0d100e; }

.show-time {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a6e58;
  font-weight: 500;
  margin-bottom: 7px;
}

.show-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #d8d4cc;
  letter-spacing: .03em;
  margin-bottom: 5px;
  line-height: 1.1;
}

.show-desc {
  font-size: 11px;
  color: #5a7c68;
  line-height: 1.5;
  font-weight: 300;
}

.show-card.now .show-name { color: #5cdb8d; }
.show-card.now .show-time { color: #27ae60; }

.show-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #27ae60;
  margin-right: 6px;
  vertical-align: 2px;
  animation: pulse 1.8s ease-in-out infinite;
}

/* ----- About ----- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-left {
  padding: 3rem 4rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.about-right {
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-content: start;
}

.about-body {
  font-size: 14px;
  color: #6a9c7c;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 1.25rem;
}

.feature-item {
  padding: 1.1rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
}

.feature-icon {
  font-size: 18px;
  color: #2d8048;
  margin-bottom: 8px;
}

.feature-title {
  font-size: 12px;
  font-weight: 500;
  color: #d8d4cc;
  margin-bottom: 3px;
}

.feature-desc {
  font-size: 11px;
  color: #5a7c68;
  line-height: 1.5;
  font-weight: 300;
}

/* ----- Footer ----- */
.site-footer {
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: .05em;
  color: #4a6e58;
}

.footer-contact {
  font-size: 11px;
  letter-spacing: .1em;
  color: #4a6e58;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.footer-contact a:hover { color: #6a9c7c; }

.footer-div {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   MOBILE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav {
    padding: 0 1.25rem;
    height: 52px;
  }

  .nav-links {
    display: none; /* replaced by hamburger on a real build; hidden for now */
  }

  /* Hero — stack vertically, hide info panel */
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 2rem 1.25rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-center {
    padding: 1.5rem 1.25rem;
  }

  .hero-right {
    display: none; /* info panel moved inside player on mobile */
  }

  /* Stats — 2 col on mobile */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 1.25rem 1.5rem;
  }

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); }

  /* Schedule — 1 col on mobile */
  .schedule-section {
    padding: 2rem 1.25rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  /* About — stack */
  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-left {
    padding: 2rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .about-right {
    padding: 2rem 1.25rem;
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer {
    flex-direction: column;
    gap: .75rem;
    padding: 1.25rem;
    text-align: center;
  }

  .footer-div { display: none; }
}

/* ============================================================
   TABLET — 769px to 1024px
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {

  .nav {
    padding: 0 2rem;
  }

  /* Hero — two col: left + player, hide info panel */
  .hero {
    grid-template-columns: 1fr 340px;
  }

  .hero-left {
    padding: 2rem 2rem 2rem 2rem;
  }

  .hero-right {
    display: none;
  }

  .hero-center {
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(255,255,255,0.04);
  }

  /* Stats — 2x2 */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 1.5rem 2rem;
  }

  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); border-top: 1px solid rgba(255,255,255,0.05); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.05); }

  /* Schedule — 2 col */
  .schedule-section {
    padding: 2.5rem 2rem;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-left  { padding: 2.5rem 2rem; }
  .about-right { padding: 2.5rem 2rem; }

  /* Footer */
  .site-footer { padding: 1.25rem 2rem; }
}

/* ============================================================
   HAMBURGER MENU & DRAWER
   ============================================================ */

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #5a7c68;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color .15s;
}

.nav-hamburger:hover { color: #5cdb8d; }

/* Drawer — slides in from the right */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #0d0f0e;
  border-left: 1px solid rgba(255,255,255,0.07);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-inner {
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.nav-drawer-links a {
  display: block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #5a7c68;
  text-decoration: none;
  font-weight: 500;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .15s;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: #5cdb8d;
}

/* Overlay behind drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
}

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

/* Show hamburger only on mobile/tablet */
@media (max-width: 1024px) {
  .nav-hamburger { display: block; }
  .nav-links     { display: none; }
}
