html {
  font-size: clamp(20px 1.75vw, 50px);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0d14;
  color: #dce3f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 3.5rem;
}

body.dark {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #020205;
}

.dark {
  display: flex;
  flex-direction: column;
  min-height: 76vh;

  max-height: 100vh;
  margin: 0;
}


::-webkit-scrollbar {
  width: 0.625rem;

}

::-webkit-scrollbar-thumb {
  background: #1e3a5f;
  border-radius: 0.625rem;
}

::-webkit-scrollbar-track {
  background: #0a0d14;
}


.container {
  width: 90%;
  max-width: 75rem;

  margin: 0 auto;
  flex: 1;
}


a {
  color: #6bb6ff;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

a:hover {
  color: #aad2fa;
  transform: none;

}


.brand {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.brand::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-image: url("../assets/images/bg7.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s ease;
  animation: spin-slow 10s linear infinite, glitch 7s steps(25) infinite;
  animation-play-state: paused;
}

.brand:hover::before {
  width: 4.375rem;

  height: 4.375rem;
  animation-play-state: running;
}

.brand:hover {
  font-size: 1.6rem;

}


@keyframes spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


@keyframes glitch {

  0%,
  100% {
    opacity: 0.5;
  }

  10% {
    opacity: 0.1;
  }

  12% {
    opacity: 0.5;
  }

  24% {
    opacity: 0.15;
  }

  25% {
    opacity: 0.5;
  }

  41% {
    opacity: 0.07;
  }

  42% {
    opacity: 0.5;
  }

  58% {
    opacity: 0.2;
  }

  59% {
    opacity: 0.5;
  }

  70% {
    opacity: 0.5;
  }

  90% {
    opacity: 0.5;
  }
}


.site-header {
  background-image: url(../assets/images/bg5.png);
  background-position: center center;
  border-bottom: 0.0625rem solid #1b2536;

  padding: 0.9375rem 0;

  position: sticky;
  top: 0;
  z-index: 99;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
}

.main,
.download-section {
  flex: 1;
}

.main-nav a {
  margin-left: 1.25rem;

  font-weight: 500;
  position: relative;
  display: inline-block;
  cursor: pointer;
  flex: 1;
}

.main-nav a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-image: url("../assets/images/bg7.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s ease;
  animation: spin 4s linear infinite;
  animation-play-state: paused;
}

.main-nav a:hover::before {
  width: 4.375rem;

  height: 4.375rem;
  animation-play-state: running;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.nav-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 1.75rem;

  border: none;
}



#toggleSound {
  background: linear-gradient(180deg, #0b0f16, #0a0c12);
  border: 0.0625rem solid rgba(80, 120, 255, 0.4);
  padding: 0.375rem 0.75rem;

  font-size: 0.5rem;

  font-weight: 600;
  color: #c8d8ff;
  border-radius: 0.375rem;

  cursor: pointer;
  transition: 0.25s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(60, 120, 255, 0.3), inset 0 0 4px rgba(255, 60, 60, 0.25);
}

#toggleSound::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(60, 120, 255, 0.4), rgba(255, 60, 60, 0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

#toggleSound:hover::after {
  left: 150%;
}

#toggleSound:hover {
  transform: translateY(-0.125rem);

  border-color: rgba(110, 160, 255, 0.7);
  box-shadow: 0 0 10px rgba(90, 140, 255, 0.4), inset 0 0 6px rgba(255, 60, 60, 0.35);
}

#toggleSound:active {
  transform: scale(0.95);
  box-shadow: 0 0 4px rgba(255, 70, 70, 0.4), inset 0 0 10px rgba(255, 60, 60, 0.5);
}


#volumeControl {
  -webkit-appearance: none;
  width: 2.5rem;

  height: 0.5rem;

  background: #0a0c12;
  border: 0.0625rem solid rgba(255, 40, 40, 0.4);
  border-radius: 0.25rem;

  outline: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 6px rgba(255, 40, 40, 0.3), inset 0 0 4px rgba(255, 30, 30, 0.4);
  animation: shockGlow 1.4s infinite ease-in-out;
}

#volumeControl::-webkit-slider-runnable-track {
  height: 0.375rem;

  background: linear-gradient(90deg, #450000, #8b0000, #450000);
  border-radius: 0.25rem;
}

#volumeControl::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0.3125rem;

  width: 0.3125rem;
  background: #ff1e1e;
  border-radius: 50%;
  border: 0.125rem solid #ff7777;
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.8);
  transition: 0.15s ease;
}

#volumeControl:active::-webkit-slider-thumb {
  transform: scale(1.4);
  box-shadow: 0 0 14px rgba(255, 90, 90, 1);
}


#volumeControl::-moz-range-track {
  height: 0.375rem;
  background: linear-gradient(90deg, #450000, #8b0000, #450000);
  border-radius: 0.25rem;
}

#volumeControl::-moz-range-thumb {
  height: 0.3125rem;
  width: 0.3125rem;
  background: #ff1e1e;
  border: 0.125rem solid #ff7777;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 60, 60, 0.8);
  transition: 0.15s ease;
}

#volumeControl:active::-moz-range-thumb {
  transform: scale(1.4);
  box-shadow: 0 0 14px rgba(255, 90, 90, 1);
}

@keyframes shockGlow {
  0% {
    box-shadow: 0 0 4px rgba(255, 40, 40, 0.3), inset 0 0 3px rgba(255, 20, 20, 0.3);
  }

  50% {
    box-shadow: 0 0 10px rgba(255, 70, 70, 0.6), inset 0 0 6px rgba(255, 40, 40, 0.55);
  }

  100% {
    box-shadow: 0 0 4px rgba(255, 40, 40, 0.3), inset 0 0 3px rgba(255, 20, 20, 0.3);
  }
}


.audio-controls {
  display: flex;
  align-items: center;
  gap: 0.625rem;

}

.audio-floating {
  position: fixed;
  top: 0.75rem;

  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.25rem 0.375rem;
  border-radius: 0.375rem;
  backdrop-filter: blur(2px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 99999;
}

.audio-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.625rem);
}


.hero {
  position: relative;
  height: 60vh;
  min-height: 32rem;

  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

  animation: heroShadowMaster 18s ease-in-out infinite alternate;
}

@keyframes heroShadowMaster {


  0% {
    filter: brightness(0.5) hue-rotate(0deg) saturate(0.8);
  }

  94% {
    filter: brightness(0.8) hue-rotate(0deg) saturate(1);
  }


  94.2% {

    filter: brightness(0.3) hue-rotate(280deg) contrast(1.4);
    transform: scale(1) translate(0, 0);
  }

  94.5% {

    transform: scale(1) translate(15px, 0);
    filter: brightness(0.4) hue-rotate(210deg) saturate(1.5);
  }

  94.8% {

    transform: scale(1) translate(0, 4px);
    filter: brightness(0.2) hue-rotate(300deg);
  }


  95.7%,
  100% {
    transform: scale(1.1) translate(0, 0);
    filter: brightness(0.8) hue-rotate(0deg) saturate(1);
  }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 37.5rem;

}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;

}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-actions {
  margin-top: 1.5625rem;

}


.btn {
  background: #1e3a5f;
  padding: 0.75rem 1.5625rem;

  border-radius: 0.375rem;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin-right: 0.625rem;
  transition: 0.2s;
}

.btn:hover {
  background: linear-gradient(45deg, #952222a2, #2747ffaf);
}

.btn.ghost {
  background: transparent;
  border: 0.125rem solid #1e3a5f;
}

.btn.ghost:hover {
  background: linear-gradient(45deg, #952222a2, #2747ffaf);
}


.card {
  background: linear-gradient(45deg, #3e0d0d5a, #070d3039);
  border: 0.0625rem solid #00000037;
  padding: 1.25rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.344);
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}

.highlights {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;

}

.highlights .card {
  flex: 1;
  text-align: center;
}


.features {
  display: flex;
  gap: 1.875rem;

  justify-content: center;
  align-items: center;
}

.feature-left,
.feature-right {
  flex: 1;
}

.feature-left h2 {
  margin-bottom: 0.9375rem;
}

.feature-left ul {
  list-style: square;
  padding-left: 1.25rem;
}


.latest-news .news-grid {
  display: flex;
  gap: 1.25rem;
  flex: 1;
}


.form-card label {
  display: block;
  margin-bottom: 0.9375rem;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 0.0625rem solid #2a354b;
  background: #0d121b;
  color: #dce3f5;
  font-size: 1rem;
}

.form-actions {
  margin-top: 0.9375rem;
}

.form-page h1 {
  margin-bottom: 1.25rem;
}


.donate-card {
  text-align: center;
}

.donate-options {
  margin: 1.25rem 0;
}

.donate-options .btn {
  margin-right: 0.625rem;
}

.donate-block {
  margin-top: 1.25rem;
}

.donate-block img {
  margin-top: 1.25rem;
  border-radius: 0.5rem;
  border: 0.125rem solid #1c2739;
}


.panel-page .panel-grid {
  display: flex;
  gap: 1.25rem;
}

.panel-side {
  width: 16.25rem;

  background: #0f131d;
  padding: 1.25rem;
  border-radius: 0.625rem;
}

.panel-nav button {
  display: block;
  width: 100%;
  background: #1e3a5f;
  border: none;
  padding: 0.75rem;
  color: #fff;
  margin-bottom: 0.625rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: bold;
}

.panel-nav button.active {
  background: #29507f;
}

.panel-main {
  flex: 1;
}


.panel-view {
  padding: 1.25rem;
}

.chars-list {
  margin-top: 0.9375rem;
}

.char-card {
  background: #111722;
  border: 0.0625rem solid #1c2739;
  padding: 0.9375rem;
  margin-bottom: 0.9375rem;
  border-radius: 0.5rem;
}


.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.video-grid iframe {
  width: 100%;
  height: 22.5rem;

  border: none;
  border-radius: 0.625rem;
}

@media (max-width: 48rem) {


  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-grid iframe {
    height: 15.625rem;
  }


}


.site-footer {
  background: #0f131d;
  padding: 1.5625rem 0;
  margin-top: 2.5rem;
  border-top: 0.0625rem solid #1b2536;
  width: 100%;
  flex-shrink: 0;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.footer-nav a {
  margin-left: 1.25rem;
  z-index: 1;
}

.discord-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #cfe4ff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: 0.25s ease;
  z-index: 1;
}

.discord-footer-btn img {
  width: auto;
  height: 1.875rem;

  filter: drop-shadow(0 0 4px rgba(100, 150, 255, 0.5));
  z-index: 1;
}

.discord-footer-btn:hover {
  transform: translateY(-0.1875rem);
  z-index: 1;
}


@media (max-width: 56.25rem) {


  .highlights,
  .features,
  .latest-news .news-grid,
  .panel-page .panel-grid,
  .video-grid {
    flex-direction: column;
    display: block;
  }

  .panel-side {
    width: 100%;
  }

  .grid-2,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}


.bodydownload {
  background-image: url("../assets/images/bg16.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}


.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particles-container::before {
  content: "";
  position: absolute;

  top: -300px;
  left: -150px;
  width: calc(100% + 300px);
  height: calc(100% + 600px);

  background-image:
    radial-gradient(circle, rgba(202, 52, 52, 0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(67, 101, 186, 0.5) 1.5px, transparent 1.5px);


  background-size: 100px 100px, 150px 150px;
  background-position: 0 0, 50px 50px;

  filter: blur(0.5px);


  animation: particlesFallingFlow 15s linear infinite;
}

@keyframes particlesFallingFlow {
  0% {

    transform: translate(0, 0);
  }

  25% {

    transform: translate(25px, 75px);
  }

  50% {

    transform: translate(0px, 150px);
  }

  75% {

    transform: translate(-25px, 225px);
  }

  100% {


    transform: translate(0px, 300px);
  }
}

.site-header-download {
  background-image: url(../assets/images/bg5.png);
  border-bottom: 0.0625rem solid #1b2536;
  padding: 0.9375rem 0;
  position: sticky;
  background-position: center center;
  top: 0;
  z-index: 99;
  box-shadow: 0 0 0 0;

}

.download-section {
  position: relative;
  margin-top: 6.25rem;

  margin-bottom: 0.625rem;

  min-height: 10.625rem;

  max-height: 10.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.char-left,
.char-right {
  width: 18.75rem;

  height: 18.75rem;
  position: relative;
}

.char-left img,
.char-right img {
  position: absolute;
  width: 90%;
  height: 95%;
  object-fit: contain;
}

.char-left {
  transform: scaleX(-1);
}


.download-box {
  background: linear-gradient(45deg, #3e0d0d5a, #070d3039);
  border: 0.0625rem solid #00000037;
  padding: 1.875rem 2.5rem;

  border-radius: 0.75rem;

  text-align: center;
  margin: 0 2.5rem;
  box-shadow: 0 0 10px #00000079;
}

.info-box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.download-box h1 {
  font-size: 2rem;
  margin-bottom: 0.9375rem;
}

.download-box p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}


.info-compact {
  text-align: center;
  padding-top: 2.5rem;
}

.info-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin: 1.5625rem 0;
}

.info-box {
  width: 28%;
  min-height: 12.5rem;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin-top: 0.9375rem;
}

.info-box li {
  padding: 0.25rem 0;
  font-size: 0.9375rem;
}


.rule-line {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.rule-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}

.rule-item img {
  width: 2.5rem;
  opacity: 0.9;
  transition: 0.2s;
}

.rule-item img:hover {
  transform: scale(1.2);
  opacity: 1;
}


.register-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625rem;
}

.register-box {
  width: 23.75rem;
  text-align: left;
}

.register-box h3 {
  text-align: center;
  margin-bottom: 0.9375rem;
}


#npc-button {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.2s;
}

#npc-button img {
  width: 3.75rem;
  height: 1.875rem;
  object-fit: contain;
}

#npc-button:hover {
  opacity: 1;
  transform: scale(1.08);
}


#npc-window {
  position: fixed;
  bottom: 5.625rem;

  right: 1.25rem;
  width: 20rem;

  background: #101828;
  border: 0.125rem solid #6bc1ff;
  border-radius: 0.625rem;
  z-index: 10000;
  box-shadow: 0 0 15px #00000070;
  animation: fadeIn 0.25s ease;
}

.hidden {
  display: none;
}

.npc-header {
  background: #23344a;
  padding: 0.625rem;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-bottom: 0.125rem solid #6bc1ff;
}

.npc-header button {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}

.npc-dialog {
  padding: 0.75rem;
  color: #d9e5ff;
  font-size: 0.875rem;
  min-height: 3.75rem;
}

.npc-options {
  padding: 0.625rem;
  border-top: 0.0625rem solid #4d637d;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.npc-options button {
  background: #1f2d40;
  border: 0.0625rem solid #6bc1ff;
  color: #d9e5ff;
  padding: 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: 0.15s;
}

.npc-options button:hover {
  background: #25405d;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(0.625rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.deviling-helper {
  position: fixed;
  bottom: 1.5625rem;
  right: 1.5625rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 9999;
}

.deviling-icon {
  width: 4.375rem;
  height: 4.375rem;
  cursor: pointer;
  object-fit: contain;
}

.deviling-message {
  opacity: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(20, 20, 30, 0.85);
  color: #dcdcff;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  border: 0.0625rem solid rgba(120, 120, 255, 0.3);
  transition: opacity 0.6s ease;
  pointer-events: none;
}




.equip-section {
  flex: 1;

  padding: 1.25rem 0;
  background-image: url("../assets/images/bg18.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title-equip {
  display: none;
}


.equip-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.equip-box {

  width: 34rem;
  min-height: 32rem;
  margin-top: 1rem;
  background: var(--card-bg, #ffffff15);
  backdrop-filter: blur(8px);
  border-radius: 0.9375rem;
  padding: 1rem;
  box-shadow: 0 0 12px #00000040;
  display: flex;
  justify-content: center;
  align-items: center;
}

.equip-grid {
  display: grid;

  grid-template-columns: 8rem 1fr 8rem;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
  align-items: center;
}

.slot-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 0.4rem;
}


.slot {
  background: #ffffff15;
  border: 0.0625rem solid #ffffff30;
  border-radius: 0.5rem;
  text-align: center;
  padding: 0.25rem;

  height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.75rem;

  position: relative;
  overflow: visible;
}

.slot span {
  display: block;
  line-height: 1.1;
  max-height: 2.2em;
  overflow: hidden;
  margin-bottom: 2px;
}

.slot img {
  width: 2rem;

  height: 2rem;
  object-fit: contain;
  margin: 0 auto;
}


.char-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.char-preview img {
  max-height: 28rem;
  max-width: 100%;
  object-fit: contain;
}


.card-box {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  position: absolute;
  bottom: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
}

.equip-item:hover .card-box {
  opacity: 1;
  pointer-events: all;
}

.card-slot {
  width: 1.25rem;
  height: 1.25rem;
  background: #0e0f13;
  border: 1px solid #798bff;
  border-radius: 0.25rem;
}


.finance-block {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
  padding-bottom: 1.5rem;
}


.admin-panel {
  background: rgba(255, 0, 0, 0.05);
  border: 0.0625rem solid rgba(255, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}

.admin-input {
  background: #000;
  border: 0.0625rem solid #333;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.25rem;
  width: 100%;
  margin-bottom: 0.5rem;
  box-sizing: border-box;
}

.btn-adm {
  background: #ff4d4d;
  color: white;
  padding: 0.625rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 0.6875rem;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.btn-adm:hover {
  background: #cc0000;
}


.msg-container {
  grid-column: span 2;
  background: #111;
  padding: 0.9375rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #222;
  margin-top: 0.625rem;
}

.msg-item {
  background: #000;
  padding: 0.625rem;
  border-bottom: 0.0625rem solid #333;
  margin-bottom: 0.3125rem;
  border-radius: 0.25rem;
}


.btn-reset {
  background: #FFA500;
  color: #000;
  font-weight: bold;
}

.btn-reset:hover {
  background: #FF8C00;
  color: #fff;
}

.btn-equip {
  background: #5D3FD3;
  color: #fff;
}

.btn-equip:hover {
  background: #4832a8;
  color: #fff;
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}


@media (max-width: 56.25rem) {

  .grid-2,
  .admin-grid {
    grid-template-columns: 1fr;
  }
}


.slot-container {
  padding: 0.625rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.slot-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: #6bb6ff;
  display: block;
  margin-bottom: 0.125rem;
}


.panel-container {
  max-width: 87.5rem;

  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.panel-top {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.panel-box {
  background: linear-gradient(135deg, #1a0f1f, #0b1020);
  border-radius: 1rem;
  padding: 1.875rem;
  color: #fff;
  flex: 1;
}

.panel-box h2 {
  text-align: center;
  margin-bottom: 1.5625rem;
}


.character-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.char-info span {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.8;
}

.profile-status {
  font-size: 0.75rem;
  font-weight: bold;
  margin-top: 0.25rem;
}

.profile-status.private {
  color: #ff4d4d;
}

.profile-status.public {
  color: #3cff6b;
}


.char-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-publish {
  background: #1e3a5f;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.btn-warning {
  background: #ffb300;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.btn-purple {
  background: #6f5bd7;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.btn-secondary {
  background: #2a3f5f;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}

.btn-save {
  width: 100%;
  margin-top: 1.25rem;
  height: 2.25rem;

  background: #1e3a5f;
  color: #fff;
  border-radius: 0.375rem;
}


.divider {
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.1);
  margin: 1.125rem 0;
}


.security-box label {
  font-size: 0.75rem;
  opacity: 0.7;
}

.security-box input {
  width: 100%;
  margin: 0.375rem 0 1rem 0;
  padding: 0.5625rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  background: #000;
  color: #fff;
}


.equipment-box {
  margin-top: 2.5rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.equip-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.equip-item span {
  font-size: 0.8125rem;
  color: #4da3ff;
}

.highlight {
  font-weight: bold;
}


.btn_zeny {
  color: #FFD700;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.625rem;
  display: block;
}

.letra_zeny {
  font-size: 1.125rem;
  color: #FFF;
}

.btn_cash {
  color: #00BFFF;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.625rem;
  display: block;
}

.letras_adm {
  font-size: 1.125rem;
  color: #84c3f7;
}

.msg-style {
  color: #00FF7F;
  margin: 0 0 0.625rem 0;
}


.precise {
  font-size: 0.875rem;
}




.register-box {
  width: 23.75rem;
}


@media (min-width: 120rem) {



  .container,
  .header-inner,
  .panel-container {
    max-width: 95rem;
  }
}


.profile-status.public {
  color: #3cff6b;
}


.msgfeedback1 {
  color: #00FF7F;
  margin-bottom: 10px;
}

.msgfeedback2 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

.msgfeedback3 {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.sgfeedback4 {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

.accent2 {

  background: linear-gradient(90deg, #00d4ff, #ff004c, #00d4ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;


  animation:
    magicGradient 4s linear infinite,
    colorGlitch 4s step-end infinite;
}


@keyframes magicGradient {
  to {
    background-position: 200% center;
  }
}


@keyframes colorGlitch {

  0%,
  90%,
  100% {
    text-shadow: none;
  }
}




.info-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at 50% 0%, #1a0b2e 0%, #020205 70%);
}

.register-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-title-magic {
  font-size: 2.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  text-shadow: 0 0 20px rgba(162, 89, 255, 0.4);
  margin: 0;
}

.subtitle-magic {
  color: #666;
  letter-spacing: 0.2rem;
  margin-top: 0.5rem;
}


.register-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.5rem;
  max-width: 1200px;
  width: 100%;
}


.box-magic {
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.box-magic:hover {
  transform: translateY(-10px);
}


.box-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, var(--box-color), transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}


.identity-box {
  --box-color: #ff2d55;
  border-top: 2px solid var(--box-color);
}

.security-box {
  --box-color: #a259ff;
  border-top: 2px solid var(--box-color);
  margin-top: 2rem;
}


.action-box {
  --box-color: #00f2ff;
  border-top: 2px solid var(--box-color);
}

.box-magic h3 {
  color: var(--box-color);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(var(--box-color), 0.3);
}


.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  color: #aaa;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--box-color);
  box-shadow: 0 0 15px rgba(var(--box-color), 0.2);
}


.btn-magic {
  background: transparent;
  border: 1px solid var(--box-color);
  color: #fff;
  padding: 1.2rem;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
  margin: 1.5rem 0;
}

.btn-magic:hover {
  background: var(--box-color);
  box-shadow: 0 0 30px var(--box-color);
}

.desc-text {
  color: #888;
  font-size: 0.9rem;
}

.muted-text {
  color: #444;
  font-size: 0.7rem;
  text-align: center;
}


@media (max-width: 1024px) {
  .register-layout-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .security-box {
    margin-top: 0;
  }
}




body.dark-theme-bg {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #0d0a13;

  color: #e0e0e0;
  font-family: 'Roboto', sans-serif;

}

.download-main-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem;
  background: radial-gradient(circle at 50% 0%, #1a0b2e 0%, #0d0a13 70%);
}

.download-hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 1rem;
}

.download-title {
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8rem;
  text-shadow: 0 0 30px rgba(162, 89, 255, 0.6);
  margin: 0;
  line-height: 1.2;
}

.download-subtitle {
  font-size: 1.1rem;
  color: #888;
  letter-spacing: 0.2rem;
  margin-top: 0.8rem;
}


.magic-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  grid-auto-rows: minmax(auto, auto);

  gap: 2.5rem;

  max-width: 1000px;
  width: 100%;
}


.magic-download-card,
.magic-info-card {
  background: rgba(15, 10, 25, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.magic-download-card:hover,
.magic-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


.card-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, var(--card-glow-color, transparent) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


.client-full-left {
  --card-glow-color: #ff0077;
}

.client-full-right {
  --card-glow-color: #00e0ff;
}

.patch-full-left {
  --card-glow-color: #ff4081;
}

.patch-full-right {
  --card-glow-color: #00aaff;
}

.support-info {
  --card-glow-color: #a259ff;
}

.install-guide {
  --card-glow-color: #5eff00;
}


.magic-download-card h3,
.magic-info-card h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.magic-download-card p,
.magic-info-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;

}


.btn-magic-download {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  border: 2px solid;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}


.btn-magic-download.--pink {
  border-color: #6f1d1d;
  background: linear-gradient(45deg, #270a0c, #ff5e5e);
}

.btn-magic-download.--blue {
  border-color: #0051ff;
  background: linear-gradient(45deg, #0062ff, #5eb7ff);
}

.btn-magic-download.--red {
  border-color: #ff4081;
  background: linear-gradient(45deg, #ff4081, #ff7ba0);
}

.btn-magic-download.--cyan {
  border-color: #00aaff;
  background: linear-gradient(45deg, #00aaff, #5ed7ff);
}

.btn-magic-download.--purple {
  border-color: #a259ff;
  background: linear-gradient(45deg, #3b1f60, #704992);
}

.btn-magic-download.--green {
  border-color: #3da700;
  background: linear-gradient(45deg, #3da700, #5eff00);
}


.btn-magic-download:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 0 25px var(--hover-shadow-color, rgba(0, 0, 0, 0.5));
}

.btn-magic-download.--pink:hover {
  --hover-shadow-color: rgba(255, 0, 119, 0.6);
}

.btn-magic-download.--blue:hover {
  --hover-shadow-color: rgba(0, 224, 255, 0.6);
}

.btn-magic-download.--red:hover {
  --hover-shadow-color: rgba(255, 64, 129, 0.6);
}

.btn-magic-download.--cyan:hover {
  --hover-shadow-color: rgba(0, 170, 255, 0.6);
}

.btn-magic-download.--purple:hover {
  --hover-shadow-color: rgba(162, 89, 255, 0.6);
}

.btn-magic-download.--green:hover {
  --hover-shadow-color: rgba(94, 255, 0, 0.6);
}





#link-start-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #230404, #070d30);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#link-start-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.ls-text {
  font-family: 'Arial Black', sans-serif;
  font-size: 3rem;
  color: #00d4ff;
  letter-spacing: 1.2rem;
  text-shadow: 0 0 15px #00d4ff, 0 0 40px #00d4ff;
  transform: scale(0.8);
  opacity: 0;
}

#link-start-overlay.active .ls-text {
  animation: text-impact 2.5s cubic-bezier(0.17, 0.88, 0.32, 1.28) forwards;
}

@keyframes text-impact {
  0% {
    transform: scale(0.6);
    opacity: 0;
    filter: blur(10px);
  }

  40% {
    transform: scale(1.1);
    opacity: 1;
    filter: blur(0px);
  }

  80% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
    filter: blur(15px);
  }
}





.main-arsenal {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 15px !important;
}


.search-bar-slim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 25px auto;
  padding: 8px 25px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.search-label {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dot-pink {
  color: #ff2dd1;
  margin-right: 5px;
}

.search-bar-slim input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  padding: 6px 15px;
  width: 180px;
  text-align: center;
  outline: none;
}

.btn-magic-slim {
  padding: 5px 20px;
  font-size: 0.7rem;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff2dd1, #00d4ff);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}


.arsenal-box {
  padding: 20px !important;
  border-radius: 8px !important;
  position: relative;
}

.equip-columns-container {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  gap: 15px;
  align-items: center;
}

.slot.equip-item {
  padding: 6px 12px !important;
  margin-bottom: 8px !important;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 4px;
}

.item-pink {
  border-left: 3px solid #ff2dd1;
}

.item-blue {
  border-right: 3px solid #00d4ff;
}

.equip-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.row-reverse {
  flex-direction: row-reverse;
}

.equip-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.align-right {
  text-align: right;
}

.equip-name {
  font-size: 0.8rem !important;
  font-weight: bold;
  color: #fff;
}

.equip-slot-label {
  font-size: 0.55rem !important;
  color: #ff2dd1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.item-blue .equip-slot-label {
  color: #00d4ff;
}

.equip-item img {
  width: 24px !important;
  height: 24px !important;
}


.card-box-compact {
  margin-top: 4px;
  min-height: 14px;
}

.pad-right {
  padding-right: 34px;
}

.card-box-compact:not(.pad-right) {
  padding-left: 34px;
}

.card-name-mini {
  font-size: 0.65rem !important;
  color: #00ffaa !important;
  display: block;
  font-style: italic;
}


.char-preview-arsenal {
  text-align: center;
}

.char-preview-arsenal img {
  max-width: 230px;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8));
  opacity: 1;
}


.private-notice {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px !important;
  text-align: center;
  border-radius: 12px !important;
}

.lock-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 10px #ff2dd1);
}

.private-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.private-text {
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}




.main-market {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 50px;
}


.search-bar-center {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.search-bar-center input {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #444;
  border-radius: 4px;
  color: #fff;
  padding: 8px 15px;
  width: 140px;
  outline: none;
  transition: 0.3s;
}

.btn-search-market {
  background: #ff2dd1;

  color: #000;
  border: none;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}


.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 15px;
}

.item-group-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.2s;
}

.item-group-card:hover {
  border-color: #ff2dd1;
}

.item-header {
  background: #1a1a1a;
  padding: 10px 15px;
  border-bottom: 1px solid #ff2dd1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-id-tag {
  color: #ff2dd1;
  font-size: 0.8rem;
}

.vender-count {
  font-size: 0.65rem;
  color: #666;
}


.vending-table {
  width: 100%;
  border-collapse: collapse;
}

.vending-table th {
  font-size: 0.55rem;
  color: #666;
  text-transform: uppercase;
  padding: 8px 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
}

.vending-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vendor-name {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}

.loc-info {
  color: #00BFFF;
  font-size: 0.625rem;
  display: block;
  opacity: 0.8;
  margin-top: 2px;
}

.qty-badge {
  background: #222;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  color: #ccc;
}

.price-tag {
  font-size: 0.8rem;
  color: #fff;
}

.price-low {
  color: #00FF7F !important;
}


.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.no-items {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px;
  color: #555;
}


.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-link {
  background: #111;
  border: 1px solid #333;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.8rem;
}

.page-link.active {
  background: #ff2dd1;
  color: #000;
  font-weight: bold;
  border-color: #ff2dd1;
}




.site-header-v2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 3.5rem;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10000;
  display: flex;
  align-items: center;
}


.site-header-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      #ff2dd1 20%,
      #00d4ff 80%,
      transparent 100%);
  opacity: 0.6;
}

.header-inner-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 85rem;

  margin: 0 auto;
  padding: 0 1.5rem;
}


.brand-v2 {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand-v2 .accent2 {
  color: #ff2dd1;
  text-shadow: 0 0 10px rgba(255, 45, 209, 0.5);
}


.main-nav-v2 {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.nav-link-v2 {
  color: #bbb;
  text-decoration: none;
  font-size: 0.75rem;

  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;

  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}


.nav-link-v2:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-link-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 8px #00d4ff;
}

.nav-link-v2:hover::after {
  width: 60%;
}


.login-v2 {
  border: 1px solid rgba(0, 212, 255, 0.4);
  color: #00d4ff !important;
  margin-left: 0.5rem;
}

.login-v2:hover {
  background: rgba(0, 212, 255, 0.1) !important;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.accent3 {

  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;


  background: linear-gradient(90deg, #ff00ff, #00f2ff, #ff00ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


  animation: magicGradient 3s linear infinite;
}

.accent3:hover {
  background-color: rgba(255, 0, 255, 0.05);
  -webkit-background-clip: text;
  text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}


.accent3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;

  background: linear-gradient(90deg, #ff00ff, #00f2ff);
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
  box-shadow: 0 0 12px #ff00ff;
}

.accent3:hover::after {
  width: 80%;
}

.nav-toggle-v2 {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}


@media (max-width: 80rem) {
  .header-inner-v2 {
    max-width: 95%;
  }

  .nav-link-v2 {
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 64rem) {
  .nav-toggle-v2 {
    display: block;
  }

  .main-nav-v2 {
    display: none;
  }
}





.site-footer-v2 {
  width: 100%;

  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(0.625rem);
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
  margin-top: auto;
}


.site-footer-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;

  background: linear-gradient(90deg,
      transparent 0%,
      #00d4ff 20%,
      #ff2dd1 80%,
      transparent 100%);
  opacity: 0.6;
}

.footer-inner-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 90rem;

  margin: 0 auto;
  padding: 0 1.5rem;
}


.footer-brand-v2 strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
}

.footer-brand-v2 .accent2 {
  color: #ff2dd1;
  text-shadow: 0 0 0.625rem rgba(255, 45, 209, 0.5);
}

.footer-subtitle-v2 {
  color: #888;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}


.footer-nav-v2 {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.social-links-v2 {
  display: flex;
  gap: 0.75rem;
}

.footer-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;

  height: 2.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.footer-btn-v2 img {
  width: 1.125rem;

  height: auto;
  filter: grayscale(1) brightness(1.5);
  transition: all 0.3s ease;
}


.footer-btn-v2:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  transform: translateY(-0.1875rem);
  box-shadow: 0 0 0.625rem rgba(0, 212, 255, 0.3);
}

.footer-btn-v2:hover img {
  filter: grayscale(0) brightness(1);
}


.footer-player-v2 {
  min-width: 3.125rem;
}


@media (max-width: 768px) {


  .register-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
  }

  .form-card.register-box {
    width: 100% !important;
    max-width: 400px;
    padding: 25px 20px !important;
    box-sizing: border-box;
  }


  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 18px;
  }

  .form-card label {
    display: block;
    margin-bottom: 15px;
    width: 100%;
  }

  .form-card input {
    width: 100% !important;
    height: 45px;
    font-size: 16px !important;
    margin-top: 8px;
  }


  .register-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .box-magic {
    width: 100%;
    min-height: auto;
    padding: 20px;
  }

  .btn-magic,
  .btn {
    width: 100% !important;
    padding: 15px !important;
    font-size: 1.1rem;
    box-sizing: border-box;
  }


  .info-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .info-box {
    width: 100% !important;
  }

  .rule-line {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center;
  }

  .video-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .video iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
  }


  .container {
    width: 95% !important;
    padding: 0 15px;
    margin: 0 auto;
  }

  .hero {
    padding: 4rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .highlights,
  .news-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .card,
  .news {
    width: 100% !important;
  }

  .hero-bg {
    object-fit: cover;
    object-position: center;
  }
}


@media (max-width: 992px) {
  .header-inner-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 10001;
  }

  .main-nav-v2 {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }

  .main-nav-v2.active {
    display: flex !important;
  }

  .nav-link-v2 {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    width: 100%;
    text-align: center;
    display: block;
    color: #fff;
    text-decoration: none;
  }

  .nav-toggle-v2 {
    display: block !important;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
  }

  .audio-player-v2,
  #toggleSound,
  #volumeControl {
    display: none;
  }
}

@media (min-width: 993px) {
  .nav-toggle-v2 {
    display: none;
  }
}
/* Estilos para a página de votos */
.voto-links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 1rem;
}

.voto-item {
    width: 100%;
}

.voto-btn {
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.voto-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.voto-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.timer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
    font-family: monospace;
}

.msgfeedback {
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}

.msgfeedback.error {
    background: rgba(255, 0, 0, 0.1);
    color: #f44336;
    border-color: rgba(255, 0, 0, 0.2);
}

.muted {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.5;
}

.nota-voto {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 768px) {
    .voto-links-container {
        gap: 12px;
    }
    
    .voto-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}