/* Global red festive theme */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif; /* crypto-styled font */
  font-weight: bold;
  font-size: 22px; /* bigger letters */
  background: #b71c1c; /* deep Christmas red */
  color: #fff;
  text-align: center;
  overflow-x: hidden;
}

/* Header */
header h1 {
  font-size: 3em;
  margin-top: 20px;
}

/* Mascot */
.mascot {
  width: 300px;
  border: 5px solid #fff;
  background-color: #8B4513; /* warm brown for contrast */
  border-radius: 12px;
  margin: 20px auto;
}

/* BUY button */
.buy-btn {
  background-color: #e53935; /* bright red */
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.3em;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.buy-btn:hover {
  transform: scale(1.1);
  background-color: #c62828;
}

/* Contract bar + copy button */
.contract-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contract-bar {
  width: 60%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #ffcdd2; /* light red */
  color: #b71c1c; /* dark red text */
  font-size: 1.1em;
  text-align: center;
}
.copy-btn {
  background-color: #e53935;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.copy-btn:hover {
  background-color: #c62828;
}

/* Community buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 10px;
  background-color: #e53935;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}
.btn:hover {
  background-color: #c62828;
  transform: scale(1.05);
}

/* Snowflake style */
.snowflake {
  position: fixed;
  top: -10px;
  color: white;
  font-size: 20px;
  animation-name: fall;
  animation-timing-function: linear;
  pointer-events: none;
}

@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}