body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e7d3b1 0%, #b08d57 100%);
  color: #111;
  text-align: center;
  padding-bottom: 60px; /* Add space for footer */
  position: relative;
  overflow-x: hidden;
}
/* Animated wood grain overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background: url('data:image/svg+xml;utf8,<svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"><path d="M0,300 Q150,350 300,300 T600,300" fill="none" stroke="%236b4f27" stroke-width="8"/><path d="M0,350 Q150,400 300,350 T600,350" fill="none" stroke="%236b4f27" stroke-width="4"/><path d="M0,400 Q150,450 300,400 T600,400" fill="none" stroke="%236b4f27" stroke-width="2"/></svg>');
  background-size: 600px 600px;
  animation: woodgrain-move 12s linear infinite;
}
@keyframes woodgrain-move {
  0% { background-position: 0 0; }
  100% { background-position: 600px 600px; }
}
/* Add a soft vignette for depth */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 60%, #b08d57 100%);
  opacity: 0.12;
}
.logo {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-img {
  width: 144px;
  height: 144px;
  background: #bfa77a;
  border-radius: 50%;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  overflow: hidden;
  animation: logo-bounce-in 1s cubic-bezier(.68,-0.55,.27,1.55) 0.1s both;
}
.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand {
  font-size: 2.2rem;
  letter-spacing: 2px;
  font-weight: 400;
  opacity: 0;
  animation: fade-slide-up 0.7s 0.7s both;
}
.slogan {
  font-size: 1.1rem;
  margin-top: 8px;
  font-weight: 500;
  opacity: 0;
  animation: fade-slide-up 0.7s 0.95s both;
}
.since {
  font-size: 0.9rem;
  margin-top: 4px;
  color: #444;
  opacity: 0;
  animation: fade-slide-up 0.7s 1.2s both;
}
.social-list {
  margin: 50px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 32px;
  min-width: 320px;
  justify-content: flex-start;
  opacity: 0;
  animation: fade-slide-up 0.7s both;
}
.social-item:nth-child(1) { animation-delay: 1.5s; }
.social-item:nth-child(2) { animation-delay: 1.7s; }
.social-item:nth-child(3) { animation-delay: 1.9s; }
.social-item:nth-child(4) { animation-delay: 2.1s; }
.social-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  font-size: 2.5rem;
  box-sizing: border-box;
  transition: transform 0.2s cubic-bezier(.4,2,.6,1), box-shadow 0.2s cubic-bezier(.4,2,.6,1);
  cursor: pointer;
}
.social-icon:hover, .social-icon:active {
  transform: scale(1.13) rotate(-3deg);
  box-shadow: 0 6px 24px 0 rgba(80, 60, 20, 0.18);
  z-index: 1;
}
.social-link {
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 70px;
}
.footer {
  width: 100%;
  background: transparent;
  padding: 30px 0 6px 0;
  font-size: 1rem;
  color: #444;
  margin-top: 20px;
  flex-shrink: 0;
  opacity: 0;
  animation: fade-in 1s 2.5s both;
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.page-wrapper > *:not(.footer) {
  flex: 1 0 auto;
}
@media (max-width: 600px) {
  .brand {
    font-size: 1.3rem;
  }
  .social-link {
    font-size: 1rem;
    height: 50px;
  }
  .social-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 1.5rem;
  }
  .social-item {
    min-width: unset;
    gap: 16px;
  }
}
/* ANIMATION KEYFRAMES */
@keyframes logo-bounce-in {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes fade-slide-up {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
} 