:root {
  --color-primary: #ffbb00;
  /* Yellow */
  --color-secondary: #ff0000;
  /* Red */
  --color-text: #FFF;
  /* Light Gray */
  --color-bg: #000000;
  /* Black Background */
  --color-bg-light: #111827;
  /* Lighter Dark Blue */
}

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

html {
  scroll-behavior: smooth;
}

body {
  /* background: radial-gradient(circle at center, #001b44 -60%, #000000 100%);   */
  background: #000;
  color: var(--color-text);
  font-family: 'SF Pro Display', 'Coolvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 393px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.btn {
  display: inline-block;
  padding: 8px 10px;
  background-color: var(--color-primary);
  color: #000000;
  font-weight: 700;
  font-family: 'Coolvetica', sans-serif;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  /* box-shadow: 0 0 10px 3px rgba(255, 187, 0, 0.4); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 0 25px 8px rgba(255, 187, 0, 0.5); */
}

section {
  /* padding-top: 60px; */
  padding-bottom: 30px;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p {
  line-height: 1.6;
  color: #fff;
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }

  section {
    /* padding-top: 80px; */
    /* padding-bottom: 80px; */
  }
}

.section-with-dashed-border {
  border: 5px dashed #adabab;
  border-radius: 10px;
  /* padding: 20px; */
  /* margin: 20px; */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bordered-container {
  position: relative;
  padding: 40px 60px;
  margin: 50px auto;
  max-width: 800px;
  background: #000;
  color: white;
  font-family: 'SF Pro Display', 'Coolvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
  border: 2px dashed #adabab;
  box-sizing: border-box;
}

/* Red corner dots */
.corner-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: red;
  border-radius: 0%;
}

.top-left {
  top: -6px;
  left: -6px;
}

.top-right {
  top: -6px;
  right: -6px;
}

.bottom-left {
  bottom: -6px;
  left: -6px;
}

.bottom-right {
  bottom: -6px;
  right: -6px;
}

h1 {
  margin: 0;
  font-size: 2em;
  font-style: italic;
}

.countdown {
  background-color: #000;
}


.animated-button {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}

.animated-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,
      transparent 45%,
      rgba(255, 255, 255, 0.5) 45%,
      rgba(255, 255, 255, 0.5) 55%,
      transparent 55%);
  animation: diagonal-shine 3s linear infinite;
  z-index: 2;
}



.animated-button span {
  position: relative;
  z-index: 3;
}

@keyframes diagonal-shine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }

  100% {
    transform: translateX(100%) translateY(100%);
  }
}