/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; }

/* ===== TICKER ===== */
.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #C9A84C;
  color: #0D0D0D;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #E8C96A; }

.btn-dark {
  display: inline-block;
  background: #0D0D0D;
  color: #C9A84C;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  text-decoration: none;
  border: 2px solid #0D0D0D;
  transition: background 0.2s, color 0.2s;
}
.btn-dark:hover { background: #C9A84C; color: #0D0D0D; }

/* ===== DETAIL CARDS ===== */
.detail-card {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #C9A84C;
  padding-left: 1rem;
}
.detail-label {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #C9A84C;
}
.detail-value {
  font-size: 0.95rem;
  color: #0D0D0D;
  margin-top: 0.1rem;
}

/* ===== POLAROID GRID ===== */
.polaroid-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.polaroid {
  background: #F5F0E8;
  padding: 0.75rem 0.75rem 2.5rem;
  width: 220px;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.5);
  transform: rotate(-1.5deg);
  transition: transform 0.2s;
}
.polaroid:hover { transform: rotate(0deg) scale(1.03); }
.polaroid--tilt-right { transform: rotate(2deg); }
.polaroid--tilt-right:hover { transform: rotate(0deg) scale(1.03); }
.polaroid--tilt-left  { transform: rotate(-3deg); }
.polaroid--tilt-left:hover  { transform: rotate(0deg) scale(1.03); }

.polaroid-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.polaroid-caption {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #0D0D0D;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ===== AIM WINDOW ===== */
.aim-window {
  border: 2px solid #C9A84C;
  max-width: 280px;
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
}
.aim-titlebar {
  background: #C9A84C;
  color: #0D0D0D;
  padding: 0.3rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 0.75rem;
}
.aim-buttons {
  display: flex;
  gap: 4px;
}
.aim-buttons span {
  width: 10px;
  height: 10px;
  background: #0D0D0D;
  border-radius: 50%;
  display: inline-block;
}
.aim-body {
  background: #0D0D0D;
  padding: 0.75rem;
  color: #F5F0E8;
}
.aim-group {
  color: #C9A84C;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
.aim-buddy {
  padding-left: 1rem;
  margin-bottom: 0.2rem;
}
.aim-away { color: #888; }
.aim-note {
  margin-top: 0.75rem;
  color: #C9A84C;
  font-style: italic;
  font-size: 0.7rem;
}

/* ===== DONATE BUTTONS ===== */
.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0D0D0D;
  color: #F5F0E8;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border: 2px solid #0D0D0D;
  transition: background 0.2s, color 0.2s;
}
.donate-btn:hover { background: #F5F0E8; color: #0D0D0D; }

/* ===== SOCIAL LINKS ===== */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #C9A84C;
  text-decoration: none;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.social-link:hover { color: #E8C96A; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .polaroid { width: 160px; }
}
