@import "minireset.css";
@import "excsn.css";

/* 1. The Void Theme */
body {
  background: radial-gradient(circle at 50% 0%, #130b02 0%, #050505 60%, #000000 100%);
  color: #E0E6ED;
  font-family: 'Inter', system-ui, sans-serif;
  min-height: 100vh;
}

a {
  color: #E74C3C;
}

nav img.logo {
  width: 50px;  /* Adjust the width as needed */
  height: auto; /* Automatically adjust height to maintain aspect ratio */
}

nav .nav-items a {
  font-weight: 600;
  font-size: 1.2em;
}

nav .nav-items a:hover {
  font-weight: 700;
  font-size: 1.3em;
}

.top-0 {
  top: 0;
}

.z-100 {
  z-index: 100;
}

.position-sticky {
  position: sticky;
}

/* 2. Glassmorphism Utilities */
.glass-panel {
  background: rgba(22, 27, 34, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.max-w-960 {
  max-width: 960px;
}

.max-w-1280 {
  max-width: 1280px;
}

/* 3. Typography Overrides */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

.text-display {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 4. Action Buttons */
.btn-cta {
  background-color: #F2994A; /* Amber */
  color: #000;
  font-weight: 800;
  border-radius: 6px;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(242, 153, 74, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 6px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* 5. Ticker Animation */
.ticker-value {
  transition: color 0.5s;
}
.ticker-up { animation: flash-green 1s; color: #2ECC71; }
.ticker-down { animation: flash-red 1s; color: #E74C3C; }

@keyframes flash-green {
  0% { background-color: rgba(46, 204, 113, 0.2); }
  100% { background-color: transparent; }
}

@keyframes flash-red {
  0% { background-color: rgba(231, 76, 60, 0.2); }
  100% { background-color: transparent; }
}

/* 6. Legal Prose Styling */
.legal-prose {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

code {
  color: black;
}

article {
  line-height: 1.6;
}

article h1 { color: #F2994A; margin-top: 1.5em; margin-bottom: 1rem; font-size: 3rem; }
article h2 { color: #fff; margin-top: 1.5em; margin-bottom: 0.5rem; border-bottom: 1px solid #333; padding-bottom: 0.5rem; }
article p { color: #BDC3C7; margin-bottom: 1rem; }
article ul { list-style: disc; margin-left: 20px; margin-bottom: 1rem; color: #BDC3C7; }
article strong { color: #fff; }

#amoe {
  max-width: 800px;
}

.distribution-buttons {
  max-width: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.distribution-buttons a {
  width: 50%;
}

.giveaways {
  justify-content: center;
}

.giveaway-item .product-display {
  height: 100%;
}

.giveaway-item .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.85) 10%,
    rgba(0,0,0,1) 25%,
    rgba(0,0,0,1) 75%,
    rgba(0,0,0,0.85) 90%,
    rgba(0,0,0,0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.85) 5%,
    rgba(0,0,0,1) 25%,
    rgba(0,0,0,1) 75%,
    rgba(0,0,0,0.85) 95%,
    rgba(0,0,0,0) 100%
  );
}
