:root {
  --mc-grass: #5ebd3e;
  --mc-dirt: #8b4513;
  --mc-dirt-dark: #5c2e0b;
  --mc-wood: #8a5936;
  --mc-stone: #7d7d7d;
  --mc-stone-light: #9d9d9d;
  --mc-stone-dark: #5a5a5a;
  --mc-diamond: #51f5e1;
  --mc-diamond-dark: #2baea1;
  --mc-ui-bg: #c6c6c6;
  --text-color: #333333;
}

* {
  outline: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background-color: var(--mc-ui-bg);
  background-image:
    linear-gradient(
      45deg,
      #b8b8b8 25%,
      transparent 25%,
      transparent 75%,
      #b8b8b8 75%,
      #b8b8b8
    ),
    linear-gradient(
      45deg,
      #b8b8b8 25%,
      transparent 25%,
      transparent 75%,
      #b8b8b8 75%,
      #b8b8b8
    );
  background-size: 64px 64px;
  background-position:
    0 0,
    32px 32px;
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  line-height: 1.6;
}

header {
  background-color: var(--mc-grass);
  border-bottom: 8px solid var(--mc-dirt);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  height: 58px;
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mc-stone);
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  border: 4px solid;
  border-top-color: var(--mc-stone-light);
  border-left-color: var(--mc-stone-light);
  border-bottom-color: var(--mc-stone-dark);
  border-right-color: var(--mc-stone-dark);
  cursor: pointer;
  transition: transform 0.1s;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.button:hover {
  background-color: var(--mc-diamond);
  border-top-color: #a4fcf0;
  border-left-color: #a4fcf0;
  border-bottom-color: var(--mc-diamond-dark);
  border-right-color: var(--mc-diamond-dark);
  color: #111;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}

.button:active {
  border-top-color: var(--mc-stone-dark);
  border-left-color: var(--mc-stone-dark);
  border-bottom-color: var(--mc-stone-light);
  border-right-color: var(--mc-stone-light);
  transform: translate(2px, 2px);
}

.section {
  max-width: 800px;
  margin: 40px auto;
  padding: 24px;
  background-color: rgba(198, 198, 198, 0.95);
  border: 4px solid;
  border-top-color: #ffffff;
  border-left-color: #ffffff;
  border-bottom-color: #888888;
  border-right-color: #888888;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
}

h1 {
  color: #111;
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  border-bottom: 4px dashed var(--mc-stone-dark);
  padding-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
}

.review-hero__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 32px;
  padding: 16px;
  background-color: var(--mc-wood);
  border: 4px solid;
  border-top-color: #a67c52;
  border-left-color: #a67c52;
  border-bottom-color: #5c3a21;
  border-right-color: #5c3a21;
}

.review-hero__author-avatar {
  margin: 0;
  padding: 0;
}

.review-hero__author-avatar-placeholder {
  width: 48px;
  height: 48px;
  background-color: var(--mc-diamond);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  border: 4px solid;
  border-top-color: #a4fcf0;
  border-left-color: #a4fcf0;
  border-bottom-color: var(--mc-diamond-dark);
  border-right-color: var(--mc-diamond-dark);
}

.review-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-hero__author-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #ffffff;
  font-size: 18px;
  margin: 0;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

.review-hero__verified-badge {
  margin: 0;
  display: flex;
}

.review-hero__author-updated {
  font-size: 14px;
  color: #ffd700;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 767px) {
  .review-hero__author {
    padding: 12px;
    gap: 12px;
  }
  h1 {
    font-size: 26px;
  }
}

footer {
  margin-top: auto;
  background-color: var(--mc-dirt-dark);
  color: #ffffff;
  padding: 40px 20px;
  border-top: 8px solid var(--mc-dirt);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 16px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.8);
}

.footer-brand p {
  margin-bottom: 8px;
}

.footer-brand strong {
  color: var(--mc-grass);
  font-size: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}
