:root {
  --black: #040404;
  /* CSS HEX */
  --hunyadi-yellow: #f9b041ff;
  --eerie-black: #262626ff;
  --azure-web: #ecf8f8ff;
  --blue-crayola: #3777ffff;
  --harvest-gold: #ebac00ff;

  /* CSS HSL */
  --hunyadi-yellow: hsla(36, 94%, 62%, 1);
  --eerie-black: hsla(0, 0%, 15%, 1);
  --azure-web: hsla(180, 46%, 95%, 1);
  --blue-crayola: hsla(221, 100%, 61%, 1);
  --harvest-gold: hsla(44, 100%, 46%, 1);

  --gradient-top: linear-gradient(
    0deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-right: linear-gradient(
    90deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-bottom: linear-gradient(
    180deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-left: linear-gradient(
    270deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-top-right: linear-gradient(
    45deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-bottom-right: linear-gradient(
    135deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-top-left: linear-gradient(
    225deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-bottom-left: linear-gradient(
    315deg,
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );
  --gradient-radial: radial-gradient(
    #f9b041ff,
    #262626ff,
    #ecf8f8ff,
    #3777ffff,
    #ebac00ff
  );

  /* Additional styles for coming soon page */
  --main-bg-color: var(--black);
  --text-color: var(--azure-web);
  --accent-color: var(--hunyadi-yellow);
  --highlight-color: var(--blue-crayola);
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  position: absolute;
  top: 50%;
}

.company-name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 1px var(--black), 0 0 10px var(--black);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--azure-web);
}

.contact-info {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icons i {
  font-size: 2rem;
  color: var(--accent-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons i:hover {
  color: var(--highlight-color);
  transform: scale(1.2);
}

ul {
  margin: 0;
  padding: 0;
  display: flex;
}

ul li {
  list-style: none;
  color: #a6a6a6;
  font-size: 80px;
  letter-spacing: 15px;
  animation: lighting 1s linear infinite;
  animation-delay: 2s;
  animation-fill-mode: forwards;
}

ul li:nth-child(1) {
  animation-delay: 1s;
}
ul li:nth-child(2) {
  animation-delay: 1s;
}
ul li:nth-child(3) {
  animation-delay: 1s;
}
ul li:nth-child(4) {
  animation-delay: 1.9s;
}
ul li:nth-child(5) {
  animation-delay: 1.9s;
}
ul li:nth-child(6) {
  animation-delay: 1.9s;
}
ul li:nth-child(7) {
  animation-delay: 2.2s;
}
ul li:nth-child(8) {
  animation-delay: 2.2s;
}
ul li:nth-child(9) {
  animation-delay: 2.2s;
}

@keyframes lighting {
  0% {
    color: var(--hunyadi-yellow);
    text-shadow: none;
  }

  55% {
    color: var(--hunyadi-yellow);
    text-shadow: none;
  }

  65% {
    color: #fff;
    text-shadow: 0 0 7px #fff900, 0 0 50px #fff;
  }
  75% {
    color: var(--hunyadi-yellow);
    text-shadow: none;
  }
  85% {
    color: var(--hunyadi-yellow);
    text-shadow: none;
  }
  90% {
    color: #fff;
    text-shadow: 0 0 7px #fff900, 0 0 50px #fff;
  }
  100% {
    color: #363636;
    text-shadow: none;
  }
}

@keyframes flash1 {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes flash2 {
  0%,
  40%,
  60%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes flash3 {
  0%,
  35%,
  45%,
  65%,
  75%,
  100% {
    opacity: 0;
  }
  40%,
  70% {
    opacity: 0.4;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .company-name {
    font-size: 3rem;
  }

  .coming-soon {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  ul li {
    font-size: 60px;
    letter-spacing: 10px;
  }
}

/* Smaller tablets and large phones */
@media (max-width: 576px) {
  .container {
    padding: 1.5rem;
  }

  .company-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  ul li {
    font-size: 40px;
    letter-spacing: 5px;
  }

  .contact-info {
    font-size: 1rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icons i {
    font-size: 1.5rem;
  }
}

/* Small phones */
@media (max-width: 398px) {
  .company-name {
    font-size: 2rem;
  }

  ul li {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .contact-info {
    font-size: 0.9rem;
  }
}

/* Handle height issues for very short screens */
@media (max-height: 600px) {
  body {
    height: auto;
    min-height: 100vh;
  }

  .container {
    padding: 1rem;
  }

  .company-name {
    margin-bottom: 0.5rem;
  }

  ul li {
    font-size: 40px;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
  body {
    height: auto;
    min-height: 100vh;
  }

  .container {
    padding: 1rem;
  }

  .company-name {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }

  ul {
    flex-wrap: wrap;
  }

  ul li {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

.area {
  width: 200px;
  height: 500px;
  animation: swing 1s infinite ease-in-out alternate;
  transform-origin: top;
  -moz-transform-origin: top;
  -webkit-transform-origin: top;
  position: relative;
}

.wire {
  position: relative;
  left: 98px;
  height: 200px;
  width: 4px;
  background-color: rgba(0, 0, 0, 0.479);
}

.fixture {
  position: relative;
  background-color: grey;
  width: 16px;
  height: 20px;
  left: 92px;
}

.strip {
  position: relative;
  width: 18px;
  height: 2px;
  right: 1px;
  top: 4px;
  background-color: darkgrey;
}

.strip:nth-of-type(2) {
  top: 7px;
}

.strip:nth-of-type(3) {
  top: 10px;
}

.bulb {
  position: relative;
  width: 40px;
  height: 40px;
  left: 80px;
  bottom: 2px;
  z-index: -1;
  background-color: var(--azure-web);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 300px 77px rgba(235, 209, 164, 1);
  -moz-box-shadow: 0px 0px 300px 77px rgba(235, 209, 164, 1);
  box-shadow: 0px 0px 300px 77px rgba(235, 209, 164, 1);
}

.zig {
  position: relative;
  background-color: transparent;
  width: 10px;
  height: 5px;
  border-radius: 5px / 2.5px;
  left: 14px;
  border: black solid 1px;
}

.zig:nth-of-type(2) {
  top: -3px;
}

.zig:nth-of-type(3) {
  top: -6px;
}

@keyframes swing {
  from {
    -moz-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    transform: rotate(-3deg);
  }
}
