@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');

body {
  font-family: Arial, sans-serif;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f1c40f, #e67e22) fixed;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  border: 3px solid #8B4513;
}

header {
  text-align: left;
  padding: 20px 0;
  border-bottom: 2px dashed #8B4513;
  margin-bottom: 20px;
}

header h1 {
  font-family: 'Concert One', cursive;
  font-size: 3em;
  margin: 0;
  color: #8B0000;
  text-shadow: 2px 2px #fff;
}

header p {
  font-size: 1.2em;
  margin-top: 10px;
}

.gear-gallery {
  text-align: center;
  margin: 20px 0;
}

.prize-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #8B4513;
  border-radius: 5px;
  background: #fff8e1;
}

.prize-item img {
  max-width: 200px;
  margin-right: 20px;
  border: 4px solid #8B4513;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

.prize-details {
  text-align: left;
  max-width: 550px;
}

.prize-details h3 {
  font-family: 'Concert One', cursive;
  font-size: 2em;
  color: #8B0000;
  margin-top: 0;
  text-shadow: 1px 1px #fff;
}

.prize-details p {
  font-size: 1em;
  line-height: 1.5;
  margin: 10px 0;
}

.tip-form {
  background-color: #fff8e1;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #8B4513;
  margin-bottom: 20px;
}

.tip-form h2 {
  font-family: 'Concert One', cursive;
  font-size: 2.2em;
  margin-top: 0;
  color: #8B0000;
  text-shadow: 1px 1px #fff;
}

.tip-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.tip-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #8B4513;
  border-radius: 3px;
  font-size: 1em;
}

.crypto-details {
  text-align: center;
  margin-top: 20px;
}

.crypto-details h2 {
  font-family: 'Concert One', cursive;
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 10px;
  text-shadow: 1px 1px #fff;
}

.crypto-details img {
  max-width: 150px;
  margin: 5px;
  border: 2px solid #8B4513;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.thank-you {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-size: 1.5em;
  color: #006400;
  font-family: 'Concert One', cursive;
  text-shadow: 1px 1px #fff;
}

.responsive-rounded-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  border: 4px solid #8B4513;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

/* Unified button style for both PayPal and Crypto buttons */
.styled-button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 1em;
  border: 2px solid #8B4513;
  border-radius: 5px;
  background-color: #f39c12;
  color: #2c2c2c;
  cursor: pointer;
  font-family: 'Concert One', cursive;
  text-shadow: 1px 1px #fff;
  transition: background-color 0.3s ease;
}

.styled-button:hover {
  background-color: #e67e22;
}

/* New container for aligning buttons side by side */
.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


/* Match last tip-form (rules section) to overall design */
.tip-form:last-of-type {
  max-width: 800px;
  margin: 0 auto 40px auto;
  background-color: #fff8e1;
  border: 2px solid #8B4513;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.tip-form:last-of-type h2 {
  font-family: 'Concert One', cursive;
  font-size: 2em;
  color: #8B0000;
  text-shadow: 1px 1px #fff;
  text-align: center;
}

.tip-form:last-of-type p {
  font-size: 1em;
  line-height: 1.6;
  margin: 12px 0;
}
