:root {
  --bg-dark-red: #140522;
  --bg-dark-gray: #101614;
  --bg-black: #000;
  --bg-bright-red: rgba(66, 2, 118, 0.6);
  --bg-overlay-transparent: rgba(30, 30, 30, 0);
  --bg-navbar: radial-gradient(
    54.65% 131.26% at 45.35% -41.95%,
    #4a018e 0%,
    #110022 100%
  );
  --border-red: #8300ff;
  --button-gradient-start: #111;
  --button-gradient-end: #4a018e;
  --button-text: #00ffff;
  --button-gradient-start-register: #eeca68;
  --button-gradient-end-register: #d4a746;
  --button-text-register: white;
  --border-button-register: #eeca68;
  --announcement-bg: rgba(60, 9, 108, 0.9);
  --announcement-text: #fff;
  --announcement-text-shadow: #b0f;
  --announcement-date: #0278ff;
  --menu-bg-transparent: rgba(255, 255, 255, 0);
  --badge-bg-red: #ee3634;
  --badge-bg-yellow: #ffc500;
  --badge-text: #fff;
  --glow-color-primary: rgba(131, 0, 255, 0.6);
  --glow-color-secondary: #8300ff;
}

body {
  background: var(--bg-black);
}
body > * {
  position: relative;
  z-index: 1;
}
body .header {
  margin-bottom: 12px;
}
body .header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-navbar);
  padding-inline: 16px;
  padding-block: 8px;
}
body .header__nav-logo {
  width: 425px;
  max-width: 100%;
  height: 85px;
  border-radius: 10px;
  padding-inline: 2%;
}
body .header__nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .header__nav-button-container {
  display: flex;
  gap: 10px;
}
body .header__nav-button-container-button {
  border-radius: 10px;
  border: 2px solid var(--border-red);
  text-decoration: none;
  background: linear-gradient(95deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
  color: var(--button-text);
  font-weight: 700;
  padding-inline: 18px;
  padding-block: 8px;
  font-family: "Arial", sans-serif;
  animation: breathing-glow 2s ease-in-out infinite;
}
body .header__nav-button-container-button-register {
  background: linear-gradient(95deg, var(--button-gradient-end-register) 0%, var(--button-gradient-start-register) 100%);
  border: 2px solid var(--border-button-register);
  color: var(--button-text-register);
}
body main {
  padding-inline: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .section__hero-banner {
  width: 100%;
  height: 250px;
  padding-inline: 8px;
}
body main .section__hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body main .section__announcement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  border: 2px solid var(--border-red);
  background: var(--announcement-bg);
  animation: breathing-glow 2s ease-in-out infinite;
}
body main .section__announcement-icon {
  width: 3%;
  height: 3%;
}
body main .section__announcement-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body main .section__announcement-marquee {
  width: 83%;
  overflow: hidden;
  position: relative;
  display: flex;
}
body main .section__announcement-marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
}
body main .section__announcement-marquee-content p {
  display: inline-block;
  color: var(--announcement-text);
  text-shadow: 0 0 6px var(--announcement-text-shadow);
  font-family: Tahoma;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding-right: 50px;
}
body main .section__announcement-date {
  width: 12%;
  color: var(--announcement-date);
  font-size: 14px;
  font-weight: 700;
  text-wrap: nowrap;
  text-align: center;
  font-family: "Arial", sans-serif;
}
body .section__menu-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 100%;
  padding: 0;
}
body .section__menu-nav-list-item {
  border-radius: 8px;
  border: 2px solid var(--border-red);
  background: var(--bg-dark-red);
  width: 33%;
  height: 40px;
  animation: breathing-glow 2s ease-in-out infinite;
}
body .section__menu-nav-list-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .section__menu-nav-list-item:hover {
  background: var(--bg-bright-red);
}
body .section__game-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  row-gap: 5px;
}
@media (max-width: 1024px) {
  body .section__game-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  body .section__game-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  body .section__game-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
body .section__game-list-item {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  position: relative;
  width: 100%;
  height: 230px;
}
body .section__game-list-item-background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
body .section__game-list-item-background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .section__game-list-item-link {
  display: inline-block;
  width: 52%;
  margin-top: 18%;
}
body .section__game-list-item-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .section__game-list-item-percentage {
  border-radius: 6px;
  background: var(--badge-bg-red);
  font-size: 14px;
  font-weight: 700;
  padding-inline: 6px;
  padding-block: 0.3px;
  text-align: center;
  margin-top: 2%;
  color: var(--badge-text);
  animation: breathing-glow 2s ease-in-out infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes breathing-glow {
  0%, 100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 18px 0 var(--glow-color-primary), 0 0 35px 0 var(--glow-color-secondary);
  }
}
@keyframes breathing-glow-background {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  body .header__nav {
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  body .header__nav-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
  body .header__nav-button {
    width: 100%;
    max-width: 250px;
    font-size: 12px;
    padding-inline: 12px;
    padding-block: 6px;
  }
  body main {
    padding-inline: 4px;
    gap: 8px;
  }
  body main .section__hero-banner {
    height: 70px;
    padding-inline: 4px;
  }
  body main .section__announcement {
    padding: 8px;
    gap: 8px;
  }
  body main .section__announcement-icon {
    width: 10%;
    height: auto;
  }
  body main .section__announcement-marquee {
    width: 100%;
  }
  body main .section__announcement-marquee-content p {
    font-size: 12px;
  }
  body main .section__announcement-date {
    width: 100%;
    font-size: 12px;
  }
  body .section__menu-nav-list-item {
    height: 35px;
  }
  body .section__game-list {
    column-gap: 8px;
    row-gap: 8px;
    padding-inline: 4px;
  }
  body .section__game-list-item {
    height: 180px;
  }
  body .section__game-list-item-link {
    width: 60%;
    margin-top: 15%;
  }
  body .section__game-list-item-percentage {
    font-size: 12px;
    padding-inline: 4px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

img {
  width: 100%;
}

ul {
  list-style: none;
}

/*# sourceMappingURL=main.css.map */
