.body, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('maxresdefault.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Luckiest Guy', cursive;
  display: block;
  align-items: unset;
  justify-content: unset;
}

.container {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
  padding: 48px 32px 40px 32px;
  display: block;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 40px auto 40px auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
  margin-bottom: 24px;
}

.title {
  font-size: 2.6rem;
  color: #ff4e00;
  text-shadow: 2px 4px 0 #fff700, 4px 6px 0 #b06b00;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

.ca-row {
  display: flex;
  align-items: center;
  background: #fffbe6;
  border: 2px solid #ffb300;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}

.ca-label {
  font-size: 1.2rem;
  color: #b06b00;
  margin-right: 8px;
  font-family: 'Luckiest Guy', cursive;
}

.ca-value {
  font-size: 1.1rem;
  color: #333;
  background: #fffde4;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 12px;
  font-family: monospace;
}

.copy-btn {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #ffb300 0%, #ff4e00 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.1s;
}
.copy-btn:hover {
  background: linear-gradient(90deg, #ff4e00 0%, #ffb300 100%);
  transform: scale(1.07);
}

.social-buttons {
  position: fixed;
  top: 24px;
  left: 24px;
  right: auto;
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: none;
  margin: 0;
  z-index: 1000;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.65);
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
  border: 2px solid #ffb300;
  transition: box-shadow 0.15s, transform 0.12s;
  text-decoration: none;
}
.social-btn:hover {
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.18);
  transform: scale(1.08);
}
.social-btn svg {
  display: block;
}

.hog-content {
  max-width: 960px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.65);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
  padding: 32px 24px 32px 24px;
  font-size: 1.13rem;
  color: #2d1a00;
}
.hog-content section {
  margin-bottom: 32px;
}
.hog-content h2 {
  font-size: 1.45rem;
  color: #ff4e00;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 1px 2px 0 #fff700, 2px 3px 0 #b06b00;
}
.hog-content ul {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: disc inside;
}
.hog-content li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.hog-content b {
  color: #b06b00;
}
.hog-columns {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}
.hog-col-left, .hog-col-right {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 900px) {
  .hog-columns {
    flex-direction: column;
    gap: 0;
  }
  .hog-col-left, .hog-col-right {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .hog-content {
    padding: 18px 4vw;
    font-size: 1rem;
  }
  .social-buttons {
    top: 12px;
    left: 8px;
    gap: 10px;
  }
  .container {
    margin-top: 38px;
  }
} 