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

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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Vasyl', 'Courier New', monospace;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  width: 90vw;
  margin: 40px auto;
  padding: 40px 32px;
}

.logo-image {
  width: 100%;
  max-width: 280px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(229, 116, 175, 0.3));
}

.title {
  font-size: 48px;
  margin-bottom: 8px;
  color: #e574af;
  letter-spacing: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Vasyl', monospace;
}

.subtitle {
  color: #ffffff;
  font-size: 22px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.date-line {
  display: inline;
}

.year-scroll-container {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.year-static {
  display: inline;
}

.digit-wheel-wrapper {
  position: relative;
  height: 1.3em;
  overflow: hidden;
  display: inline-block;
}

/* Fade masks for wheel effect */
.digit-wheel-wrapper::before,
.digit-wheel-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 0.4em;
  z-index: 2;
  pointer-events: none;
}

.digit-wheel-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
}

.digit-wheel-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

.digit-wheel {
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease-out;
}

.digit {
  height: 1.3em;
  line-height: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e574af;
  font-weight: bold;
}

.poster-image {
  width: 100%;
  max-width: 300px;
  margin-bottom: 40px;
  border: 2px solid #e574af;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(229, 116, 175, 0.4);
}

.label {
  font-size: 11px;
  font-weight: bold;
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: left;
  color: #e574af;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.input {
  font-size: 15px;
  padding: 14px 16px;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
  background-color: rgba(229, 116, 175, 0.08);
  color: #fff;
  border: 1px solid rgba(229, 116, 175, 0.4);
  border-radius: 2px;
  outline: none;
  font-family: 'Courier New', monospace;
  transition: all 0.2s ease;
}

.input:focus {
  border-color: #e574af;
  background-color: rgba(229, 116, 175, 0.12);
  box-shadow: 0 0 15px rgba(229, 116, 175, 0.2);
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e574af' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.input option {
  background: #000;
  color: #fff;
}

.buy-button {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background: #e574af;
  border: none;
  cursor: pointer;
  margin-top: 32px;
  margin-bottom: 16px;
  width: 100%;
  padding: 18px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.buy-button:hover {
  background: #fff;
  color: #e574af;
  box-shadow: 0 0 30px rgba(229, 116, 175, 0.5);
  transform: translateY(-2px);
}

.buy-button:active {
  transform: translateY(0);
}

.event-info {
  margin-top: 40px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  width: 100%;
  border-top: 1px solid rgba(229, 116, 175, 0.3);
  padding-top: 24px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.event-info strong {
  color: #e574af;
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.event-info p {
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.7);
}

.event-info ul {
  margin: 0;
  padding-left: 16px;
  list-style: none;
}

.event-info li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.event-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background: #e574af;
  border-radius: 50%;
}

#friends-container {
  width: 100%;
}

@media (max-width: 480px) {
  .container {
    padding: 32px 20px;
    margin: 20px auto;
    max-width: 95vw;
  }

  .logo-image {
    max-width: 220px;
  }

  .title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .subtitle {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .label {
    font-size: 10px;
  }

  .input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .buy-button {
    font-size: 14px;
    padding: 16px;
    letter-spacing: 3px;
  }

  .event-info {
    font-size: 10px;
  }

  .poster-image {
    max-width: 260px;
  }
}
