/* =========================================
   DEAD DREAD JOE - profile.css
   Updated: centered footer, orange links,
   header logo, subtle background life
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --bg-dark: #08050e;
  --bg-darker: #040208;
  --accent-orange: #ff6a00;
  --accent-red: #ff2a4d;
  --accent-purple: #9b00ff;
  --accent-pink: #ff4d8d;
  --text-primary: #f2e9ff;
  --text-secondary: #cbb8e0;
  --text-muted: #8a7a9e;
  --glow: 0 0 25px rgba(255, 106, 0, 0.35);
  --border: rgba(255, 106, 0, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', system-ui, sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ========== FIXED BACKGROUND + LIFE ========== */
.bg-wrapper {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('ddj-bg.jpg') center center / cover no-repeat;
  transform: scale(1.05);
  animation: subtleZoom 40s ease-in-out infinite alternate;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(4, 2, 8, 0.52) 0%,
    rgba(8, 5, 14, 0.62) 50%,
    rgba(4, 2, 8, 0.70) 100%
  );
}

/* Faint moving sparks / particles */
.bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle, rgba(255, 140, 50, 0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 80, 150, 0.4) 1px, transparent 1px);
  background-size: 140px 140px, 200px 200px;
  opacity: 0.25;
  animation: sparksMove 25s linear infinite;
  pointer-events: none;
}

@keyframes subtleZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

@keyframes sparksMove {
  0% { background-position: 0 0, 40px 60px; }
  100% { background-position: 140px 140px, 240px 260px; }
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 3, 12, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav {
  display: flex;
  gap: 2.2rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--accent-orange);
}

.nav a:hover::after {
  width: 100%;
}

/* ========== SECTIONS ========== */
.section {
  width: 100%;
  padding: 6rem 0;
  position: relative;
}

.section.open {
  background: rgba(6, 3, 12, 0.55);
}

.section.solid {
  background: rgba(8, 5, 15, 0.97);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: left;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple));
  border-radius: 2px;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  max-width: 720px;
}

/* Force orange links everywhere */
a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--accent-pink);
}

.card {
  background: rgba(15, 10, 28, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.2rem;
  transition: all 0.35s ease;
}

.card:hover {
  border-color: rgba(255, 106, 0, 0.5);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
  color: white !important;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.55);
  color: white !important;
}

/* ========== FOOTER - CENTERED ========== */
.footer {
  background: rgba(4, 2, 8, 0.95);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--accent-orange);
}

.footer a:hover {
  color: var(--accent-pink);
}

.footer {
  text-align: center !important;
}

.footer p {
  text-align: center !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.3rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav {
    gap: 1.4rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 1.3rem;
  }
}

/* ========== PAST STREAMS SLIDER - FIXED ========== */
.stream-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.stream-slide {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stream-info {
  text-align: center;
  margin-bottom: 1.2rem;
}

.stream-info h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.stream-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.stream-slide .twitter-tweet {
  margin: 0 auto !important;
  max-width: 480px !important;
}

.slider-btn {
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  font-size: 1.8rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 5;
}

.slider-btn:hover {
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 0 18px rgba(255, 106, 0, 0.5);
}