* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
}

.page {
  display: flex;
  min-height: 100vh;
}

/* LEFT POSTER */
.poster {
  background: #000;
  width: 60%;
}

.poster img {
  width: 100%;
  max-width: 80%;
  float: right;
}

/* RIGHT PANEL */
.ticket-panel {
  flex: 1;
  background: #000000;
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-header img{
   width: 45%;
  margin-left: -1%;
}

.ticket-icon {
  font-size: 32px;
}

.qty{
    font-size: 28px;
    color: #00ff66;
    font-family: Comic Sans MS;
}

.price {
  font-size: 28px;
  color: #00ff66;
  margin-bottom: 10px;
  font-family: Comic Sans MS;
  width: 41%;
  text-align: right;
}

.price span{
    font-family: Mistral;
}

.price span {
  font-weight: bold;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.qty-row input {
  width: 70px;
  padding: 6px;
  font-size: 16px;
  background-color: #e0e0de;
  border: none;
  outline: none
}

.qty-row input[type=submit] {
  padding: 5.5px 3px;
  font-size: 14px;
  cursor: pointer;
  background: #efefef;
  border: 2px solid orange;
  font-weight: bold;
  border-radius: 1px;
  width: 100px;
}

.qty-row input[type=submit]:hover {
  background: #efefef;
  color: #000;
}

.note {
  color: #ccc;
}

/* SPONSORS */
.sponsor p {
margin: 10px 0;
  font-size: 29px;
  color: #d79061;
  font-weight: bolder;
}

.sponsor-box {
  padding: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.sponsor-box.green {
  background: #2d6a2d;
  font-size: 24px;
}

.sponsor-box.white {
  background: #fff;
  color: #000;
  font-size: 48px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page {
    flex-direction: column;
     align-items: center;
  }

  .poster img {
    max-width: 100%;
  }
  .poster {width: 100%;}
  .ticket-header img { width: 90%; margin: 0 auto;}
  .price {width: 70%; }
  .qty-row {display: block ruby !important; text-align: center;}
  .note { text-align: center;}
  .sponsor{ text-align: center;}
}
