body, html {
  margin: 0;
  padding: 0;
  
  font-family: 'Libre Baskerville', serif;
  background-color: #1A1A1A;
}

.container {
  position: relative;
  
  width: 100%;
  background: url('assets/EP_cover.JPG') no-repeat center center/cover;
  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  
  
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Header section */
.header {
  position: relative;
  z-index: 2;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 1);
  border: #bdbbb9;
  border-color: #F2F2F2;
}

.header h1 {
  font-size: 2.8rem;
  color: #b6b0b4;
  
}

.header nav a {
  color: #D6A77A;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1.6rem;
  display: none;
}
.header nav a:hover {
  color: #F2F2F2;
  text-decoration: underline;
  cursor: pointer;
}
.header nav a.active {
  color: #F2F2F2;
  text-decoration: underline;
}

/* Main content section */
.main-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.new-single {
  
  width: 100%;
}

.section{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  height: 100%;
  
}

.new-single h2 {
  color: #bdbbb9;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  direction: rtl;        /* sets right-to-left direction */
  text-align: center;     /* aligns text to the right */
  unicode-bidi: plaintext; /* makes punctuation follow the direction properly */

}

.new-single p {
  position: relative;
  left: 25%;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
  color: #bdbbb9;
  width: 50%;
}


/* Main single player - landscape */
.player-blues {
  width: 90%;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  margin: 20px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
}

/* Demo player for Pluto - landscape but more square */
.player-demo-pluto {
  width: 80%;
  aspect-ratio: 5 / 4;
  max-width: 100%;
  margin: 20px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
}

/* Demo player for Where - tall photo */
.player-demo-where {
  width: 60%;
  aspect-ratio: 3 / 4;
  max-width: 100%;
  margin: 20px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
}

/* Shared image style for all players */
.player-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #1A1A1A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.player-img-where {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  border-radius: 10px;
  background: #1A1A1A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.controls button {
  width: 40px;
  height: 40px;
  background: #bdbbb9;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
}
.controls button .icon-play {
  width: 0;
  height: 0;
  border-left: 12px solid #1A1A1A;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
  ;
}
.controls button .icon-stop {
  width: 14px;
  height: 14px;
  background: #1A1A1A;
  
}
.controls button:active {
  background: #F2F2F2;
}

/* Social icons */
footer.social-icons {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 20px;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.6);
}

.social-icons img {
  width: 30px;
  filter: invert(1);
  opacity: 0.8;
  cursor: pointer;
}

.social-icons img:hover {
  opacity: 1;
}

body {
  margin: 0;
  padding: 0;
  background: #222;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.mobile-frame {
  width: 393px;           /* iPhone 15 Pro width */
  max-width: 100vw;
  margin: 0 auto;
  background: #1A1A1A;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  border-radius: 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* No fixed height, so scrolling works */
  overflow-x: hidden;
  overflow-y: auto;
}

.note-fab {
  position: absolute;
  right: 24px;
  bottom: 20px;
  border: none;
  border-radius: 24px;
  color:#1A1A1A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  padding: 8px 18px 8px 12px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 10;
}
.note-fab:hover {
  background: #bdbbb9;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
}
.note-fab-icon {
  color:#1A1A1A;
  width: 22px;
  height: 22px;
  margin-right: 4px;

}
.note-fab-text {
  font-family: inherit;
}

.note-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.note-modal.active {
  display: flex;
}
.note-modal-content {
  background: #1A1A1A;
  border-radius: 16px;
  padding: 32px 20px 24px 20px;
  max-width: 90vw;
  width: 340px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.note-modal-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: none;
  border: none;
  color: #bdbbb9;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.note-modal-title {
  color: #bdbbb9;
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-family: 'Libre Baskerville', serif;
}
#noteText {
  width: 90%;
  min-height: 80px;
  margin: 16px 0;
  border-radius: 8px;
  border: 1px solid #bdbbb9;
  padding: 8px;
  font-size: 1rem;
  resize: vertical;
  background: #222;
  color: #F2F2F2;
  direction: rtl;
}
.note-send-btn {
  background: #25d366;
  color: #040404;
  border: none;
  border-radius: 20px;
  padding: 8px 18px 8px 14px;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.note-send-btn:hover {
  background: #1ebe57;
}
.note-send-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

