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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2b2622;
  font-family: monospace;
  padding: 3rem 1rem;
  color: #1a1612;
}

.wrapper {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

#namebox {
  background-color: #ba8c59;
  border: 3px solid #111;
  box-shadow: 6px 6px 0 #111;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 24px;
  transform: rotate(-1.5deg);
}

.letter {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  border: 3px solid #111;
  box-shadow: 4px 4px 0 #111;
  user-select: none;
  transition: transform 0.1s ease;
}

.letter:hover {
  transform: scale(1.08) rotate(0deg) !important;
  cursor: pointer;
}

#a {
  background-color: #32ad32;
  color: #fff;
  transform: rotate(-3deg);
}

#s {
  background-color: #ffe600;
  color: #111;
  transform: rotate(2.5deg);
}

#h {
  background-color: #ff2a2a;
  color: #fff;
  transform: rotate(-2deg);
}

.scrap {
  width: 100%;
  background: #f4ede1;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
  padding: 1.4rem;
}

.tilt-left {
  transform: rotate(-0.8deg);
}

.tilt-right {
  transform: rotate(0.8deg);
}

.danger-scrap {
  background: #fae4e4;
  border-color: #111;
}

.scrap h2 {
  font-size: 1.15rem;
  font-weight: 900;
  background: #111;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.9rem;
  letter-spacing: 1px;
}

.danger-scrap h2 {
  background: #ff2a2a;
  color: #fff;
}

.scrap p {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #111;
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  border: 2px solid #111;
  box-shadow: 2px 2px 0 #111;
}

.tag-yellow {
  background: #ffe600;
  color: #111;
}

.tag-red {
  background: #ff2a2a;
  color: #fff;
}

.tag-green {
  background: #32ad32;
  color: #fff;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.bullet-list li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
  padding-bottom: 0.35rem;
}

.bullet-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.crossed li::before {
  content: "X ";
  color: #ff2a2a;
  font-weight: 900;
}

.hobby-item {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hobby-item:last-child {
  margin-bottom: 0;
}

.hobby-item strong {
  background: #ffe600;
  padding: 0 4px;
  border: 1px solid #111;
  margin-right: 4px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list a {
  color: #111;
  font-weight: 800;
  text-decoration: none;
  background: #ffe600;
  border: 2px solid #111;
  padding: 0.3rem 0.6rem;
  display: inline-block;
  box-shadow: 3px 3px 0 #111;
}

.contact-list a:hover {
  background: #111;
  color: #ffe600;
}

.manifesto-footer {
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  color: #ba8c59;
  letter-spacing: 1px;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.free-android {
  color: #00ff00;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.free-android:hover {
  background: #00ff00;
  color: #111;
} 