@font-face {
  font-family: 'Spac3Tech';
  src: url('fonts/Spac3Tech.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Digitaltech';
  src: url('fonts/Digitaltech-rm0K.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gwendolyn';
  src: url('fonts/Gwendolyn-Regular.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Hello January Script';
  src: url('fonts/Hello_January_script_cyrillic_Script.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  
  color: #fff;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
}

.main-block {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100vw;
  height: 480px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-photo {
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 0 0 0 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  display: block;
}

.main-title-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-title {
  font-size: 15rem;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 700;
  margin-left: -0.5em;
}

.corner-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 480px;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  z-index: 10;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: 700;
  margin: 0;
}

.gwendolyn {
  font-family: 'Gwendolyn', cursive;
}

.hello-january {
  font-family: 'Hello January Script', cursive;
  font-weight: normal;
  margin-left: 0.2em;
}

.menu-bar {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 30px 0 0 0;
  padding: 0;
  background: transparent;
  margin-bottom: 48px;
  box-sizing: border-box;
}

.menu-btn {
  border: none;
  background: transparent;
  color: #fff;
  font-family: 'Apple Chancery', cursive;
  font-size: 3rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  padding: 0 1.5rem;
  text-align: center;
  width: 100%;
}

.menu-btn:hover, .menu-btn:focus {
  background: transparent;
  color: #c13584;
  outline: none;
}

.menu-divider {
  color: #fff;
  opacity: 0.4;
  font-size: 3rem;
  pointer-events: none;
  font-family: 'Apple Chancery', cursive;
  margin: 0 0.7em;
  display: inline-block;
}

.divider-img {
  display: block;
  margin: 24px auto 24px auto;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.footer-bar {
  width: 100vw;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 16px 40px;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  margin-top: 0;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-ig svg {
  display: block;
  fill: #fff;
  transition: fill 0.2s;
}

.footer-ig:hover svg {
  fill: #c13584;
}

.footer-right {
  text-align: right;
  font-family: inherit;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.page-content {
  flex: 1 0 auto;
}

.music-img {
  display: block;
  margin: 0 auto;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.drop-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: -10vh;
}

.drop-404 {
  font-family: 'Digitaltech', sans-serif;
  font-size: 6rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.drop-image {
  max-width: 80%;
  height: auto;
  margin-bottom: 2rem;
}

.drop-text {
  text-align: center;
  font-family: 'Digitaltech', sans-serif;
  font-size: 6rem;
  color: #ffffff;
  line-height: 1.2;
}

.drop-not-found {
  font-family: 'Digitaltech', sans-serif;
  font-size: 4.8rem;
  color: #ffffff;
} 