body {
  background: #181A20;
  color: #F1F1F1;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}
.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.review-card {
  background: #23262F;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 28px 22px 22px 22px;
  margin-bottom: 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.2s;
}
.review-card:active, .review-card:focus {
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.review-text {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #F1F1F1;
}
.review-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.nav-btn {
  background: #2D3038;
  color: #F1F1F1;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-btn:active {
  background: #393C44;
}
.copyright {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin: 32px 0 18px 0;
  letter-spacing: 0.02em;
}
.main-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 0;
}
.card {
  background: #23262F;
  border-radius: 0 0 18px 18px; /* Only bottom corners rounded */
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 0 auto;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
.logo {
  max-width: 200px;   /* Adjust as needed */
  height: auto;
  margin-right: 10px;
  margin-top: 0px;
  vertical-align: middle;
}
.brand-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.line {
  display: block;
}
.storefront-photo {
  width: 100%;
  border-radius: 12px;
  margin-top: 8px;
}
.star-rating {
  font-size: 1.5rem;
  color: #FFD700;
  margin: 16px 0;
  margin-top: -10px;
}
.review-textarea {
  width: 95%;
  min-height: 100px;
  background: #2D3038;
  color: #F1F1F1;
  border: none;
  border-radius: 12px;
  padding: 24px 18px;
  font-size: 1.08rem;
  resize: none;
  margin-bottom: 16px;
  z-index: 2;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  justify-self: center;
  align-self: center;
  box-sizing: border-box;
}
.copy-btn {
  background: #FFD700;
  color: #181A20;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 1.13rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 900;
  font-family: 'Rubik', 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin: 0 auto 0 auto;
}
.copy-btn:hover {
  background: #FFC107;
}
.instruction {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin: 16px 0;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .review-card {
    padding: 18px 8px 16px 12px;
  }
}
