/* ==========================================================================
   VACILAO RECORDS — HIGH-INTERACTIVE OWSLA DESIGN SYSTEM
   ========================================================================== */

:root {
  --color-white: #000000;
  --color-black: #FFFFFF;
  --color-offwhite: #111111;
  --color-gray-light: #222222;
  --color-gray-dark: #EAEAEA;
  --color-gray-subtle: #AAAAAA;
  --accent-cyan: #00F2FE;
  --accent-purple: #9B51E0;

  --font-heading: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --sidebar-width: 320px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #000000;
  color: #FFFFFF;
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  background-color: #000000;
  color: #FFFFFF;
  min-height: 100vh;
  padding-bottom: 90px;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}

/* Layout Container */
.owsla-layout {
  display: flex;
  min-height: 100vh;
  background: #000000;
}

/* ==========================================================================
   LEFT FIXED SIDEBAR (BLACK B&W INVERTED STYLE)
   ========================================================================== */

.owsla-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #000000;
  border-right: 1px solid #222222;
  padding: 30px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar-header {
  margin-bottom: 24px;
  text-align: center;
}

/* ==========================================================================
   GLITCH ANIMATION FOR NEW SYMBOL LOGO (ENHANCED SIZE & SLICE GLITCH)
   ========================================================================== */

.sidebar-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
  gap: 12px;
}

.sidebar-logo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-logo-link:hover .sidebar-logo-img {
  transform: scale(1.06);
}

.sidebar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s ease;
}

.sidebar-logo-link:hover .sidebar-logo-text {
  color: #39FF14;
}

/* OWSLA Stacked Inverted B&W Menu Buttons */
.owsla-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.menu-block-btn {
  display: block;
  background: #FFFFFF;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  padding: 12px 18px;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #FFFFFF;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
}

.menu-block-btn:hover {
  background: #E5E5E5;
  color: #000000;
  transform: translateX(6px);
}

.menu-block-btn.active {
  background: #FFFFFF;
  color: #000000;
  outline: 2px solid #FFFFFF;
}

/* Neon Green Font specifically for VACILAO RECORDS menu button */
.menu-block-btn.btn-vacilao-highlight {
  background: #000000;
  color: #39FF14;
  border: 2px solid #39FF14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.menu-block-btn.btn-vacilao-highlight span {
  color: #39FF14;
  font-weight: 900;
}

.menu-block-btn.btn-vacilao-highlight:hover,
.menu-block-btn.btn-vacilao-highlight.active {
  background: #000000;
  color: #39FF14;
  border: 2px solid #39FF14;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.6);
  transform: translateX(6px);
}

.menu-block-btn.btn-vacilao-highlight:hover span,
.menu-block-btn.btn-vacilao-highlight.active span {
  color: #39FF14;
}

/* VACILAO RECORDS Overview Section (No Videos) */
.vacilao-overview-card {
  padding: 36px 30px;
  border: 2px solid #FFFFFF;
  background: #111111;
  color: #FFFFFF;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}

.vacilao-overview-card h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.vacilao-overview-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #CCCCCC;
}

.menu-block-btn.active::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.3) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.7;
  pointer-events: none;
}

.sidebar-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #222222;
}

.sidebar-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #AAAAAA;
  margin-bottom: 12px;
}

.sidebar-socials {
  display: flex;
  gap: 16px;
}

.sidebar-socials a {
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: transform 0.2s ease, opacity 0.2s;
}

.sidebar-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

/* ==========================================================================
   RIGHT MAIN CONTENT FEED (HIGH INTERACTIVE OWSLA STYLE)
   ========================================================================== */

.owsla-main-content {
  margin-left: var(--sidebar-width);
  flex-grow: 1;
  padding: 40px 60px;
  max-width: 1200px;
  position: relative;
}

.feed-section {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feed-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* OWSLA Page Header */
.section-title-wrap {
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-black);
}

.owsla-page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.95;
  letter-spacing: 1px;
}

.owsla-page-sub {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  color: var(--color-gray-subtle);
  text-transform: uppercase;
}

/* Feed Artist Header Bar Above Video */
.feed-post-card {
  margin-bottom: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.feed-artist-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 14px 0;
  background: transparent;
  border-bottom: none;
}

.feed-artist-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.feed-artist-avatar img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feed-artist-info {
  display: flex;
  flex-direction: column;
}

.feed-artist-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.5px;
  margin: 0;
}

.feed-artist-badge {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray-subtle);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Feed Video Player (YouTube Embed - Full Frame Width) */
.feed-video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-black);
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.feed-video-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Feed Cards (OWSLA Center Feature with Interactive Tilt) */
.feed-post-card {
  margin-bottom: 70px;
  width: 100%;
  max-width: 100%;
}

.feed-image-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-gray-light);
  overflow: hidden;
  border: 2px solid var(--color-black);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.feed-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feed-image-container:hover .feed-featured-img {
  transform: scale(1.05);
}

.feed-play-trigger {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: none;
  color: var(--color-white);
  font-size: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feed-image-container:hover .feed-play-trigger,
.feed-play-trigger.playing {
  opacity: 1;
}

.feed-meta-bar {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.feed-submeta {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-subtle);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feed-headline {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-black);
  margin-bottom: 20px;
}

.feed-actions {
  display: flex;
  gap: 12px;
}

/* OWSLA Interactive Buttons */
.btn-owsla-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 2px solid var(--color-black);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-owsla-black:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-owsla-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 2px solid var(--color-black);
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-owsla-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-full-width {
  width: 100%;
}

/* ==========================================================================
   VACILAO GOODS SECTION (Interactive Grid)
   ========================================================================== */

.goods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.goods-card {
  border: 2px solid var(--color-black);
  background: var(--color-white);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

.goods-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.goods-img-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--color-black);
}

.goods-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.goods-card:hover .goods-product-img {
  transform: scale(1.06);
}

.goods-placeholder-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-white);
}

.gradient-dark { background: #111111; }
.gradient-gold { background: #1A1A24; }

.goods-icon {
  font-size: 3.5rem;
}

.goods-tag-label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.goods-info {
  padding: 20px;
}

.goods-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

.goods-desc {
  font-size: 0.9rem;
  color: var(--color-gray-subtle);
  margin-bottom: 20px;
}

.goods-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-gray-light);
  padding-top: 14px;
}

.goods-price {
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ==========================================================================
   ARTISTS SECTION (Interactive Rows)
   ========================================================================== */

.artists-owsla-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artist-owsla-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px;
  border: none;
  background: #111111;
  color: #FFFFFF;
  transition: transform 0.25s ease, background-color 0.25s;
}

.artist-owsla-row:hover {
  transform: translateX(8px);
  background: #1A1A1A;
}

.artist-block-avatar {
  width: 130px;
  height: 130px;
  min-width: 130px;
  min-height: 130px;
  max-width: 130px;
  max-height: 130px;
  aspect-ratio: 1 / 1;
  background: transparent;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: none;
  box-sizing: border-box;
}

.artist-block-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.artist-owsla-row:hover .artist-block-img {
  transform: scale(1.08);
}

.artist-block-details h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.artist-tagline {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: #1DB954;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.artist-full-bio {
  font-size: 0.95rem;
  color: #CCCCCC;
}

.artist-socials-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-artist-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  text-decoration: none;
  border: 1px solid #000000;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-artist-social:hover {
  background: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   RELEASES GRID
   ========================================================================== */

.releases-owsla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.release-owsla-item {
  border: none;
  background: #111111;
  padding: 16px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  cursor: pointer;
}

.release-owsla-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.release-owsla-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
  border: none;
}

.release-owsla-item h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.release-owsla-item p {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  color: #AAAAAA;
  text-transform: uppercase;
}

.release-owsla-overlay {
  position: absolute;
  inset: 16px;
  bottom: 60px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.release-owsla-item:hover .release-owsla-overlay {
  opacity: 1;
}

.play-owsla-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.2s;
}

.release-owsla-item:hover .play-owsla-circle {
  transform: scale(1);
}

/* ==========================================================================
   BEAT STORE TABLE (INTERACTIVE SEARCH & FILTERS)
   ========================================================================== */

.beatstore-search-bar {
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
}

.beatstore-search-bar input {
  flex-grow: 1;
  padding: 12px 18px;
  border: 2px solid var(--color-black);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.owsla-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #FFFFFF;
  text-align: left;
  background: #111111;
  color: #FFFFFF;
}

.owsla-table th {
  background: #FFFFFF;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 12px 16px;
}

.owsla-table td {
  padding: 16px;
  border-bottom: 1px solid #222222;
  transition: background-color 0.15s;
}

.owsla-table tr:hover td {
  background: #1A1A1A;
}

.btn-play-mini {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-play-mini:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   STUDIO & CONNECT FORMS
   ========================================================================== */

.studio-owsla-grid, .connect-owsla-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.studio-owsla-details h2, .connect-info-box h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.studio-gear-list {
  list-style: none;
  margin-top: 20px;
}

.studio-gear-list li {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #CCCCCC;
}

.studio-owsla-form-card, .connect-form-box {
  border: 2px solid #FFFFFF;
  padding: 30px;
  background: #111111;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.studio-owsla-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background: #000000;
  color: #FFFFFF;
  transition: border-color 0.2s, background-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #1A1A1A;
  border-color: #39FF14;
}

/* ==========================================================================
   EVENTS LIST
   ========================================================================== */

.events-owsla-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-owsla-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #FFFFFF;
  background: #111111;
  color: #FFFFFF;
  padding: 20px 24px;
  gap: 20px;
  transition: transform 0.25s ease, background-color 0.25s;
}

.event-owsla-row:hover {
  transform: translateX(6px);
  background: #1A1A1A;
}

.event-date-box {
  font-family: var(--font-heading);
  font-size: 2rem;
  background: #FFFFFF;
  color: #000000;
  padding: 8px 16px;
  line-height: 1;
}

.event-details-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #FFFFFF;
}

.event-details-box p {
  color: #AAAAAA;
  font-size: 0.9rem;
}

/* ==========================================================================
   PERSISTENT OWSLA AUDIO PLAYER BAR
   ========================================================================== */

.owsla-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000000;
  color: #FFFFFF;
  padding: 12px 30px;
  z-index: 2000;
  border-top: 2px solid #FFFFFF;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.8);
}

.player-spotify-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #222222;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.spotify-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.pulse-dot {
  color: #39FF14;
  font-size: 1.1rem;
  animation: pulseNeon 1.5s infinite;
}

@keyframes pulseNeon {
  0% { opacity: 0.4; text-shadow: 0 0 2px #39FF14; }
  50% { opacity: 1; text-shadow: 0 0 10px #39FF14, 0 0 20px #39FF14; }
  100% { opacity: 0.4; text-shadow: 0 0 2px #39FF14; }
}

.btn-spotify-direct {
  background: #1DB954;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, background-color 0.2s;
}

.btn-spotify-direct:hover {
  background: #1ed760;
  transform: scale(1.05);
}

.player-content-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.player-track-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 250px;
}

.player-mini-cover {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.player-meta-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
}

.player-meta-text p {
  font-size: 0.8rem;
  color: #AAAAAA;
}

.player-controls-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-control-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}

.player-control-btn:hover {
  transform: scale(1.15);
}

.play-main-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-seek-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 320px;
}

.time-stamp {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #AAAAAA;
}

.seek-track {
  flex-grow: 1;
  height: 4px;
  background: #333333;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.seek-fill {
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 2px;
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: #FFFFFF;
  color: #000000;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #000000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
}

/* ==========================================================================
   IPAD & TABLET RESPONSIVE SYSTEM (min-width: 769px) and (max-width: 1024px)
   ========================================================================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --sidebar-width: 220px;
  }

  .owsla-sidebar {
    padding: 24px 16px;
  }

  .sidebar-logo-img {
    max-width: 200px;
  }

  .menu-block-btn {
    padding: 12px 14px;
    font-size: 1.15rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .owsla-main-content {
    margin-left: 220px;
    padding: 24px 20px 120px;
  }

  .releases-owsla-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .artists-owsla-list {
    gap: 16px;
  }

  .artist-owsla-row {
    padding: 16px;
  }

  .player-seek-wrap {
    width: 220px;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE SYSTEM (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .owsla-layout {
    flex-direction: column;
  }

  .owsla-sidebar {
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    background-color: #000000;
    z-index: 2000;
    padding: 12px 16px;
    border-bottom: 2px solid #FFFFFF;
  }

  .sidebar-header {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo-link {
    width: auto;
  }

  .sidebar-logo-img {
    max-width: 160px;
    margin: 0;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    color: #000000;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 2px;
  }

  .owsla-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #333333;
  }

  .owsla-menu.mobile-open {
    display: flex;
  }

  .sidebar-footer {
    display: none;
  }

  .owsla-main-content {
    margin-left: 0;
    padding: 16px 14px 140px;
    width: 100%;
  }

  .owsla-page-title {
    font-size: 2.2rem;
  }

  .feed-post-card {
    margin-bottom: 24px;
  }

  .feed-headline {
    font-size: 1.35rem;
  }

  .feed-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .feed-actions .btn-owsla-black,
  .feed-actions .btn-owsla-outline {
    width: 100%;
    justify-content: center;
  }

  .artist-owsla-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 18px;
  }

  .artist-block-avatar {
    width: 110px;
    height: 110px;
    min-width: 110px;
    min-height: 110px;
    max-width: 110px;
    max-height: 110px;
    margin: 0 auto;
  }

  .artist-socials-bar {
    justify-content: center;
  }

  .releases-owsla-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .studio-owsla-grid,
  .connect-owsla-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Persistent Bottom Audio Player Mobile Bar */
  .bottom-audio-player {
    padding: 10px 14px;
    height: auto;
  }

  .player-inner {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }

  .player-track-info {
    width: auto;
    max-width: 60%;
  }

  .player-seek-wrap {
    width: 100%;
    order: 3;
    margin-top: 4px;
  }
}

/* ==========================================================================
   INSTAGRAM FEED GRID
   ========================================================================== */
.ig-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.ig-post-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
  border-radius: 8px;
}

.ig-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-post-card:hover img {
  transform: scale(1.05);
}

.ig-post-card:hover .ig-overlay {
  opacity: 1;
}

/* ==========================================================================
   SPINNING VINYL LOGO (SPOTIFY NEON)
   ========================================================================== */
.turntable-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  margin: -65px auto;
  transform: scale(0.5);
}

.vinyl-record {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    linear-gradient(30deg, transparent 40%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 55%, transparent 60%),
    radial-gradient(circle at center, #111 0%, #111 25%, #222 28%, #050505 32%, #222 36%, #050505 40%, #222 44%, #050505 48%, #222 52%, #050505 56%, #222 60%, #050505 64%, #222 68%, #050505 72%, #222 76%, #050505 80%, #222 84%, #050505 88%, #222 92%, #050505 96%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8), inset 0 0 10px rgba(0,0,0,1);
  animation: spinVinyl 12s linear infinite;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.vinyl-label {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
}

.vinyl-label .sidebar-logo-img {
  width: 75%;
  max-width: none;
  height: auto;
  margin: 0;
  mix-blend-mode: screen;
}

.tonearm {
  position: absolute;
  top: 15px;
  right: -5px;
  width: 12px;
  height: 130px;
  background: linear-gradient(to right, #999, #eee, #777);
  border-radius: 6px;
  transform-origin: 6px 18px;
  transform: rotate(10deg); /* Resting off the record */
  z-index: 10;
  box-shadow: 5px 10px 15px rgba(0,0,0,0.8);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.25, 1.2, 0.5, 1); /* smooth springy animation */
}

.turntable-wrap:hover .tonearm {
  transform: rotate(32deg); /* Moves onto the record */
}

.tonearm::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 30% 30%, #555, #111);
  border-radius: 50%;
  border: 3px solid #000;
  box-shadow: 0 5px 10px rgba(0,0,0,0.9);
}

.tonearm::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -10px;
  width: 20px;
  height: 35px;
  background: #111;
  border-radius: 4px;
  transform: rotate(20deg);
  border-bottom: 4px solid #1DB954;
  box-shadow: 2px 5px 8px rgba(0,0,0,0.8);
}
