@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background: #FFF8E7;
  padding: 20px;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  border: 4px solid #000;
  background: #fff;
  box-shadow: 8px 8px 0px #000;
}

.header {
  background: #A8F000;
  border-bottom: 4px solid #000;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-badge {
  background: #A8F000;
  border: 3px solid #000;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 3px 3px 0px #000;
}

.window-frame {
  border: 4px solid #000;
  margin: 20px;
  box-shadow: 6px 6px 0px #000;
}

.window-titlebar {
  background: #D1D1D1;
  border-bottom: 4px solid #000;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
}

.window-buttons { display: flex; gap: 6px; }

.btn-window {
  width: 16px;
  height: 16px;
  border: 2px solid #000;
}
.btn-yellow { background: #FFD700; }
.btn-green { background: #4CAF50; }
.btn-red { background: #FF4444; }

.content {
  padding: 24px;
  text-align: center;
}

.photo-wrapper {
  border: 4px solid #000;
  background: #FF8C00;
  padding: 12px;
  display: inline-block;
  box-shadow: 6px 6px 0px #000;
  margin-bottom: 24px;
}

.photo-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 3px solid #000;
  display: block;
}

.social-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px;
  height: 48px;
  background: #00BFFF;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px #000;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  font-size: 22px;
  transition: all 0.1s;
}

.social-btn:active {
  box-shadow: 2px 2px 0px #000;
  transform: translate(2px, 2px);
}

.social-btn:hover { background: #FFD700; }

h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 20px 0 12px;
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 4px;
}

.bio {
  border-left: 4px solid #000;
  padding-left: 16px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.donate-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: 4px solid #000;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  margin-bottom: 12px;
  box-shadow: 4px 4px 0px #000;
  transition: all 0.1s;
}

.donate-btn:active {
  box-shadow: 2px 2px 0px #000;
  transform: translate(2px, 2px);
}

.btn-orange { background: #FF8C00; }
.btn-blue { background: #00BFFF; }
.btn-green { background: #A8F000; }