/* =======================================================
   DISTRICT PIXEL - BUTTON SYSTEM v2.1
   Base: dp-btn
   Variants: --light | --dark | --outline | --outline-down | --down
======================================================= */

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.dp-btn {
  align-items: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.16em;
  line-height: 1;
  min-height: 56px;
  padding: 15px 72px 15px 32px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dp-btn__circle {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease;
  width: 42px;
}

.dp-btn__circle::before {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
}

.dp-btn__circle::after {
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 9px;
}

.dp-btn--light {
  background: #ccc;
  color: #08090a;
}

.dp-btn--light .dp-btn__circle {
  background: #08090a;
}

.dp-btn--light .dp-btn__circle::before {
  background: #fff;
  height: 2px;
  transform: translate(-60%, -55%);
  width: 14px;
}

.dp-btn--light .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-4px, -50%) rotate(45deg);
}

.dp-btn--light:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(220, 220, 220, 0.3);
  color: #08090a !important;
  transform: translateY(-5px);
}

.dp-btn--light:hover .dp-btn__circle {
  background: #2e58ff;
}

.dp-btn--light:hover .dp-btn__circle::before {
  background: #fff;
}

.dp-btn--light:hover .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.dp-btn--dark {
  background: #08090a;
  color: #ccc;
}

.dp-btn--dark .dp-btn__circle {
  background: #ccc;
}

.dp-btn--dark .dp-btn__circle::before {
  background: #08090a;
  height: 2px;
  transform: translate(-60%, -55%);
  width: 14px;
}

.dp-btn--dark .dp-btn__circle::after {
  border-right: 2px solid #08090a;
  border-top: 2px solid #08090a;
  transform: translate(-4px, -50%) rotate(45deg);
}

.dp-btn--dark:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(220, 220, 220, 0.3);
  color: #08090a !important;
  transform: translateY(-5px);
}

.dp-btn--dark:hover .dp-btn__circle {
  background: #2e58ff;
}

.dp-btn--dark:hover .dp-btn__circle::before {
  background: #fff;
}

.dp-btn--dark:hover .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.dp-btn--outline {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dp-btn--outline .dp-btn__circle {
  background: #2e58ff;
}

.dp-btn--outline .dp-btn__circle::before {
  background: #fff;
  height: 2px;
  transform: translate(-60%, -55%);
  width: 14px;
}

.dp-btn--outline .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-4px, -50%) rotate(45deg);
}

.dp-btn--outline:hover {
  background: #2e58ff;
  border-color: #2e58ff;
  box-shadow: 0 0 30px rgba(46, 88, 255, 0.4);
  color: #fff !important;
  transform: translateY(-5px);
}

.dp-btn--outline:hover .dp-btn__circle {
  background: #fff;
}

.dp-btn--outline:hover .dp-btn__circle::before {
  background: #2e58ff;
}

.dp-btn--outline:hover .dp-btn__circle::after {
  border-right: 2px solid #2e58ff;
  border-top: 2px solid #2e58ff;
}

.dp-btn--outline-down {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dp-btn--outline-down .dp-btn__circle {
  background: #2e58ff;
}

.dp-btn--outline-down .dp-btn__circle::before {
  background: #fff;
  height: 14px;
  transform: translate(-50%, -55%);
  width: 2px;
}

.dp-btn--outline-down .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-50%, -70%) rotate(135deg);
}

.dp-btn--outline-down:hover {
  background: #2e58ff;
  border-color: #2e58ff;
  box-shadow: 0 0 30px rgba(46, 88, 255, 0.4);
  color: #fff !important;
  transform: translateY(-5px);
}

.dp-btn--outline-down:hover .dp-btn__circle {
  background: #fff;
}

.dp-btn--outline-down:hover .dp-btn__circle::before {
  background: #2e58ff;
}

.dp-btn--outline-down:hover .dp-btn__circle::after {
  border-right: 2px solid #2e58ff;
  border-top: 2px solid #2e58ff;
}

.dp-btn--down {
  background: #ccc;
  color: #08090a;
}

.dp-btn--down .dp-btn__circle {
  background: #08090a;
}

.dp-btn--down .dp-btn__circle::before {
  background: #fff;
  height: 14px;
  transform: translate(-50%, -55%);
  width: 2px;
}

.dp-btn--down .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-50%, -70%) rotate(135deg);
}

.dp-btn--down:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(220, 220, 220, 0.3);
  color: #08090a !important;
  transform: translateY(-5px);
}

.dp-btn--down:hover .dp-btn__circle {
  background: #2e58ff;
}

.dp-btn--down:hover .dp-btn__circle::before {
  background: #fff;
}

.dp-btn--down:hover .dp-btn__circle::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

@media (max-width: 1024px) {
  .dp-btn {
    font-size: 15px;
    min-height: 62px;
    padding: 16px 82px 16px 28px;
  }

  .dp-btn__circle {
    height: 48px;
    right: 8px;
    width: 48px;
  }
}
