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

.header-section{
    padding-top: 70px;
    padding-bottom: 20px;
}


.header-text{
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.timer-container {
  color: #ffffff;
  margin: 0 auto;
  text-align: center;
}


#headline {
  font-weight: bold;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  font-size: 5em;
}

.countdown-el {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
}

.countdown-el span {
  display: block;
  font-size: 4.5rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }
  
  li {
    font-size: calc(1.125rem * var(--smaller));
  }
  
  li span {
    font-size: calc(3.375rem * var(--smaller));
  }
}/* custom.css */

.spark-container {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10;
  bottom: 30px;
}

.spark {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  background: orange;
  border-radius: 50%;
  opacity: 0.8;
  animation: sparkUp linear forwards;
}

@keyframes sparkUp {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x-move), -100px) scale(0);
    opacity: 0;
  }
}

.header-buttons{
    margin-top: 50px;
}

.l2-button {
  display: inline-block;
  padding: 18px 40px;
  font-family: 'Georgia', serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to right, #600000, #a50000);
  border: 4px solid #eee;
  text-align: center;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.l2-button::before,
.l2-button::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background: #a50000;
  top: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.l2-button::before {
  left: -10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.l2-button::after {
  right: -10px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

/* 👇 Наведение */
.l2-button:hover {
  color: #fff;
  border-color: gold;
  background: linear-gradient(to right, #800000, #cc0000);
  box-shadow: 0 0 15px rgba(255, 200, 0, 0.5), 0 0 5px rgba(255, 255, 255, 0.3) inset;
  transform: scale(1.03);
}

.l2-button:hover::before,
.l2-button:hover::after {
  background: gold;
}