/* ============================================
   DK34 GLOBAL BASE
============================================ */

body {
  margin: 0;
  padding: 0;
  background: #050509;
  color: #e6e6e6;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

a {
  color: #4da6ff;
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  color: #82c0ff;
}

/* HEADER */
.dk34-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.header-center {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.dk34-logo {
  width: 320px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: #777;
  font-size: 14px;
}

.dk34-header.dk34-header--hidden {
  opacity: 0 !important;
  transform: translateY(-80px) !important;
}