/* fullscreen button and quick links */
.fullscreen-btn{
  position:fixed;
  bottom:30px;
  left:30px;
  width:50px;
  height:50px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  cursor:pointer;
  color:rgba(255,255,255,.7);
  transition:.2s;
  z-index:100;
}
.fullscreen-btn:hover{
  background:rgba(255,255,255,.15);
  color:#fff;
}
.fixed-links-panel{
  position:fixed;
  bottom:30px;
  right:30px;
  padding:1rem;
  display:flex;
  gap:1rem;
  align-items:center;
  z-index:100;
}
.links-sidebar{
  flex-shrink:0;
  width:0;
  overflow:hidden;
  transition:width .25s ease;
}
.add-link-btn{
  width:50px;
  height:50px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:2px dashed rgba(255,255,255,.2);
  color:rgba(255,255,255,.5);
  font-size:1.5rem;
  cursor:pointer;
  transition:.2s;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transform:scale(0.85);
  pointer-events:none;
}
.fixed-links-panel:hover .links-sidebar{
  width:50px;
}
.fixed-links-panel:hover .add-link-btn{
  opacity:1;
  transform:scale(1);
  pointer-events:auto;
}
.add-link-btn:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(255,255,255,.08);
}
.links-list{display:flex;gap:1rem;}
.wide-link-btn{
  padding:.8rem 1.2rem;
  min-width:140px;
  background:var(--item-bg);
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:.8rem;
  cursor:pointer;
  transition:.2s;
  border:1px solid transparent;
  text-decoration:none;
  position:relative;
}
.wide-link-btn:hover{
  background:var(--item-hover);
  border-color:rgba(255,255,255,.1);
  transform:translateY(-2px);
}
.wide-link-btn img{
  width:24px;
  height:24px;
  border-radius:4px;
  object-fit:contain;
}
.wide-link-btn span{
  flex-grow:1;
  font-size:1rem;
  color:#fff;
  font-weight:500;
  text-shadow:0 0 10px rgba(255,255,255,.5);
}
.delete-link-icon{
  color:#FF453A;
  opacity:0;
  transition:.2s;
  font-size:1.1rem;
  padding:4px;
}
.wide-link-btn:hover .delete-link-icon{opacity:1;}

/* SFOOR LABS badge style (from sampler) */
.brand-badge {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: auto;
  font-family: 'Syncopate', sans-serif !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  padding: 12px 24px;
  border-radius: 16px;
  background: rgba(5, 8, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}
.brand-badge:hover {
  color: #ffffff;
  background: rgba(5, 8, 20, 0.6);
  text-shadow:
    0 0 15px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(91, 124, 255, 0.5);
  transform: translateX(-50%) translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}
.brand-badge a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.brand-badge a span {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  transition: color .1s;
}

/* responsive & mobile adaptation */
@media (max-width: 1024px) {
  .columns-area,
  .add-col-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-row-container {
    flex-direction: column;
  }

  .columns-area,
  .add-col-row {
    grid-template-columns: 1fr;
  }

  .media-header {
    height: auto;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
  }

  .banner-clock {
    position: relative;
    left: auto;
    bottom: auto;
    padding: 20px;
    width: 100%;
  }

  #time { font-size: 15vw !important; }

  #date.date-style-6 { font-size: 1.3rem !important; }
  #date.date-style-7 { font-size: 1.6rem !important; }
  #date.date-style-8 { font-size: 1.4rem !important; }

  .bottom-controls-wrapper{
    position: relative;
    right: auto;
    bottom: 10px;
    left: 10px;
    transform: none !important;
    flex-wrap: wrap;
  }

  .media-controls{
    padding: 0.5rem;
    gap: 0.8rem;
    background: rgba(30,30,35,0.8);
  }

  .vinyl-widget{
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 20px;
  }
  .vinyl-widget:not(.expanded) .vinyl-platter{
    width: 60px;
    height: 60px;
  }

  .divider-vertical,
  .control-section:nth-child(5){
    display:none;
  }

  .dashboard{
    padding:1rem;
    padding-bottom:100px;
  }
}