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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
}

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  background: linear-gradient(to bottom, #f8f6f0, #ebe8dc);
  color: #5a4a3a;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5vmin;
  gap: clamp(20px, 4vh, 40px);
}

.cross {
  font-size: clamp(3rem, 8vmin, 5rem);
  color: #8b7355;
  line-height: 1;
  margin-bottom: clamp(10px, 2vh, 20px);
}

h1 {
  font-size: clamp(1.5rem, 4vmin, 2.5rem);
  font-weight: 400;
  color: #8b7355;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 1.4;
}

.card {
  background: transparent;
  border: 2px solid #8b7355;
  border-radius: 4px;
  padding: clamp(16px, 3vmin, 24px) clamp(32px, 6vmin, 48px);
  text-decoration: none;
  color: #8b7355;
  font-size: clamp(1rem, 2.5vmin, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.card:hover {
  background: rgba(139, 115, 85, 0.08);
  border-color: #5a4a3a;
  color: #5a4a3a;
}

.card:active {
  background: rgba(139, 115, 85, 0.12);
}

/* Fade in animation - removed for now */

/* Mobile adjustments */
@media (max-width: 600px) {
  h1 {
    letter-spacing: 0.08em;
    width: 85%;
    max-width: 85%;
    white-space: nowrap;
    font-size: clamp(1rem, 4vw, 1.8rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .card {
    letter-spacing: 0.06em;
    max-width: 65%;
    font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  }
}
