body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #f4e7d4;
  text-align: center;
  overflow-x: hidden;
}

.statement-container { position: absolute; top: 78px; width: 100%; text-align: center; font-size: 20px; font-style: italic; color: #f4e7d4; animation: fadeInOut 1s ease-in-out; transition: opacity 0.5s ease-in-out; }
.fixed-quote { position: absolute; top: 20px; width: 100%; text-align: center; font-size: 18px; font-style: italic; font-weight: normal; color: #f0cfa0; }

.hero { padding: 150px 20px 50px; }
.logo { width: 200px; margin: 40px auto; animation: fadeInZoom 2s ease-in-out forwards; }
.glint { animation: glint 3s infinite; }

h1 { font-size: 48px; margin: 10px 0; color: #deb887; }
h2 { font-style: italic; font-size: 22px; color: #e2c28c; }
p { font-size: 18px; color: #fff; }

.fade-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 1.2s ease-out forwards; animation-delay: 1s; }

.buttons { margin-top: 30px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn { background-color: rgba(204, 120, 60, 0.70); border: none; color: white; padding: 12px 28px; text-decoration: none; margin: 5px 0; border-radius: 5px; font-weight: bold; transition: background-color 0.3s ease, transform 0.1s ease; font-size: 14px; display: inline-block; }
.btn:hover { background-color: #a4704c; transform: translateY(-1px); }
.btn-ghost { background-color: transparent; border: 1px solid rgba(255, 215, 0, 0.45); color: #ffd700; }
.btn-ghost:hover { background-color: rgba(255, 215, 0, 0.08); }

.bscscan { display: inline-block; margin-top: 8px; border: 2px solid gold; font-size: 11px; padding: 4px 8px; }

@keyframes fadeInZoom { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
@keyframes glint { 0%, 100% { filter: brightness(1);} 50% { filter: brightness(1.6);} }

.coin-info { position: absolute; top: 20px; right: 20px; background-color: rgba(204, 120, 60, 0.70); padding: 6px 10px; border-radius: 5px; color: #fff; font-size: 10px; text-align: left; width: 110px; box-shadow: 0 0 8px rgba(0,0,0,0.2); }
.coin-info p { margin: 5px 0; }
.coin-logo { width: 14px; height: 18px; vertical-align: middle; margin-right: 6px; }

.star-glow { position: absolute; top: 112px; left: 84px; width: 18px; height: 18px; border-radius: 50%; background-color: rgba(255, 255, 200, 0.6); box-shadow: 0 0 10px 3px rgba(255, 255, 180, 0.9); animation: glow 2.5s ease-in-out infinite; z-index: 1; }
@keyframes glow { 0%, 100% { opacity: 0.2; transform: scale(1);} 50% { opacity: 1; transform: scale(1.4);} }

/* Cowboy quote */
.cowboy-quote { position: absolute; top: 125px; left: 20px; width: 475px; padding: 10px; text-align: left; font-size: 24px; font-style: italic; font-weight: bold; color: #ffd700; line-height: 1.5; animation: cowboyGlow 3s ease-in-out infinite; }
@keyframes cowboyGlow { 0%, 100% { text-shadow: 0 0 5px #ffd700, 0 0 10px #b8860b; opacity: 0.9; } 50% { text-shadow: 0 0 15px #ffd700, 0 0 25px #ffa500; opacity: 1; } }

/* Common Sense block */
.common-sense-box { position: absolute; top: 280px; left: 20px; width: 475px; padding: 10px; text-align: left; font-size: 20px; font-style: italic; color: #f4e7d4; line-height: 1.4; }

/* Contact section - card */
.contact-section { margin-top: 160px; padding: 36px 28px; max-width: 720px; margin-left: auto; margin-right: auto; background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,0.25); backdrop-filter: blur(2px); }
.contact-section h2 { color: #ffd700; margin: 0 0 6px 0; font-size: 26px; }
.contact-intro { margin: 6px 0 18px 0; color: #f4e7d4; }
.contact-divider { height: 1px; width: 100%; margin: 8px 0 18px 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent); }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; }
.contact-list li { display: flex; align-items: center; gap: 8px; font-size: 18px; }
.contact-list a, .contact-list a:visited { color: #ffd700; text-decoration: none; font-weight: bold; border-bottom: 1px dashed rgba(255,215,0,0.35); transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.contact-list a:hover { color: #ffffff; border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

/* Modal styles */
.modal[aria-hidden="true"] { display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(1px); z-index: 9998; }
.modal-dialog { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); width: min(92vw, 560px); background: rgba(35, 20, 10, 0.95); border: 1px solid rgba(255, 215, 0, 0.25); border-radius: 12px; box-shadow: 0 14px 48px rgba(0,0,0,0.5); padding: 22px; color: #f4e7d4; z-index: 9999; }
.modal-close { position: absolute; right: 10px; top: 8px; background: transparent; border: none; color: #ffd700; font-size: 24px; cursor: pointer; }
.modal-sub { margin-top: -6px; opacity: 0.9; }

.form-row { text-align: left; margin: 12px 0; }
.form-row .label { display: block; margin-bottom: 6px; font-weight: bold; color: #ffd700; }
.form-row label { display: block; margin-bottom: 6px; font-weight: bold; color: #ffd700; }
.form-row input[type="email"], .form-row input[type="text"], .form-row input[type="number"] { width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.25); color: #fff; outline: none; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips label { background: rgba(255, 215, 0, 0.16); border: 1px solid rgba(255, 215, 0, 0.35); padding: 6px 12px; border-radius: 999px; cursor: pointer; user-select: none; }
.chips input { margin-right: 6px; }

.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%); background: rgba(35, 20, 10, 0.95); border: 1px solid rgba(255, 215, 0, 0.25); color: #ffd700; padding: 10px 16px; border-radius: 8px; box-shadow: 0 10px 28px rgba(0,0,0,0.35); z-index: 10000; }

/* Mobile */
@media screen and (max-width: 768px) {
  .hero { padding: 100px 10px 30px; }
  h1 { font-size: 32px; }
  h2 { font-size: 16px; }
  .statement-container, .fixed-quote, .common-sense-box, .cowboy-quote { font-size: 14px; padding: 5px 10px; }
  .cowboy-quote { width: 90%; left: 5%; top: 160px; font-size: 18px; }
  .common-sense-box { width: 90%; left: 5%; top: 260px; }
  .contact-section { width: 92%; padding: 24px 18px; margin-top: 140px; }
  .logo { width: 140px; }
  .coin-info { font-size: 9px; width: 95px; padding: 4px 8px; top: 10px; right: 10px; }
  .btn { font-size: 12px; padding: 10px 20px; }
  .bscscan { font-size: 10px; padding: 4px 6px; }
  .star-glow { top: 100px; left: 70px; width: 14px; height: 14px; }
  .two-col { grid-template-columns: 1fr; }
}