/* Reset & Core */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #ffffff;
  background: #000;
  background-image: url('https://i.ibb.co/FqVm3dhr/IMG-4365-2-2.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Utilities */
.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  /* Default for index */
  pointer-events: none;
  z-index: -1;
}

/* Specific overlay adjustment for text readability if needed, or unify */
body.videos-page .overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4vmin;
  position: relative;
}

/* Logo (Index) */
.logo {
  width: clamp(180px, 32vw, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
  image-rendering: auto;
}

/* Social Links (Index) */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.spotify {
  background: #1DB954;
}

.mixcloud {
  background: #52AAD8;
}

.soundcloud {
  background: #FF5500;
}

.socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.socials img {
  width: 26px;
  height: 26px;
  display: block;
  filter: invert(1) brightness(1.2);
}

/* Footer (Shared) */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px);
  background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
  z-index: 10;
}

footer a {
  color: #fff;
  text-decoration: none;
  opacity: .9;
}

footer a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Videos Button */
.videos {
  background: #7209b7;
  /* Distinct purple color */
  position: relative;
}

.videos img {
  /* Play icon adjustments if needed */
}

.coming-soon-label {
  position: absolute;
  bottom: -25px;
  /* Position below the circle */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.videos:hover .coming-soon-label {
  opacity: 1;
}

/* Videos Page Specifics */
header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  padding: 1rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.page-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 4rem;
}

.video-item {
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.video-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 0;
}

video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #000;
  aspect-ratio: 16/9;
}