/* ===========================
   DIRT DOGGY PRODUCTIONS
   Dark Theme Styles
=========================== */

body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding-bottom: 80px;
}

.ddp-main {
  background-color: #0a0a0a;
}

/* HERO */
.ddp-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.ddp-hero-content {
  padding: 2rem;
}

.ddp-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #c8a84b, #8b2fc9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1rem 0;
}

.ddp-hero p {
  color: #888888;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* LATEST RELEASES */
.ddp-latest {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #0a0a0a;
}

.ddp-latest h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c8a84b;
  margin-bottom: 2rem;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 1rem;
}

/* RELEASE GRID */
.ddp-releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1.5rem;
}

.ddp-release-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.ddp-release-card:hover {
  transform: translateY(-4px);
  border-color: #c8a84b;
}

.ddp-release-art {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background: #111111;
}

.ddp-release-art img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ddp-no-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: #141414;
}

.ddp-play-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #c8a84b;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1rem;
  cursor: pointer;
  color: #000000;
  opacity: 0;
  transition: opacity 0.2s;
}

.ddp-release-art:hover .ddp-play-btn {
  opacity: 1;
}

.ddp-release-info {
  padding: 1rem;
}

.ddp-release-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.ddp-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b2fc9;
  display: block;
  margin-bottom: 0.25rem;
}

.ddp-date {
  font-size: 0.75rem;
  color: #888888;
  display: block;
  margin-bottom: 0.75rem;
}

.ddp-links {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}

.ddp-link {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 3px;
}

.ddp-link.spotify { background: #1db954; color: #000000; }
.ddp-link.youtube { background: #ff0000; color: #ffffff; }
.ddp-link.more    { background: #2a2a2a; color: #ffffff; }

.ddp-no-releases {
  color: #888888;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* STICKY PLAYER */
.ddp-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #111111;
  border-top: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 9999;
}

.ddp-player-art {
  margin-right: 1.5rem;
}

.ddp-player-art img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

.ddp-player-info {
  flex: 1;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 1.5rem;
  color: #ffffff;
}

.ddp-player-controls {
  margin-right: 1.5rem;
}

.ddp-player-controls button {
  background: #c8a84b;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  color: #000000;
}

.ddp-player-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #2a2a2a;
}

.ddp-progress-fill {
  height: 100%;
  background: #c8a84b;
  width: 0%;
  transition: width 0.5s linear;
}

.site-branding a,
.navbar-brand,
.site-title a {
  font-size: 0;
  display: block;
  background-image: url('https://dirtdxggy.com/wp-content/uploads/2025/12/ddp.webp');
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 80px;
}

/* ARCHIVE / MUSIC PAGE */
.ddp-archive {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #0a0a0a;
}

.ddp-archive-header {
  margin-bottom: 2rem;
}

.ddp-archive-header h1 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #c8a84b;
  margin-bottom: 1.5rem;
}

.ddp-filters {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  margin-bottom: 2rem;
}

.ddp-filter {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888888;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px;
  transition: all 0.2s;
}

.ddp-filter.active,
.ddp-filter:hover {
  background: #c8a84b;
  border-color: #c8a84b;
  color: #000000;
}