@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
  --bg: #031127;
  --panel: #091d3a;
  --cyan: #20d8ff;
  --violet: #367dff;
  --pink: #8ad9ff;
  --text: #f4f8ff;
  --muted: #a7bad4;
  --line: #8bdcff20;
  --max: 1180px;
  --bordes: steelblue;
  --bgcabe: royalblue;
  --bgdato: darkred;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(145deg, #020916 0%, #061a3a 34%, #073766 68%, #0879a8 100%) fixed;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 10% 25%, #168fe845, transparent 32%), radial-gradient(circle at 92% 68%, #20d8ff38, transparent 30%)
}

a {
  color: var(--cyan);
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto
}

.skip-link {
  position: absolute;
  left: -9999px
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 8px
}

.topbar {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 74px;
  border-bottom: 1px solid var(--line);
  background: #080b1aa8;
  backdrop-filter: blur(18px)
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center
}

.social {
  display: flex;
  margin-right: auto;
  gap: 6px
}

.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #c3c9dc;
  font-weight: 700;
  font-size: 11px;
  transition: .2s
}

.social a:hover {
  color: var(--cyan);
  border-color: #28e7ff66;
  box-shadow: 0 0 18px #28e7ff33
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 74px
}

.main-menu>li {
  position: relative
}

.main-menu a {
  display: flex;
  align-items: center;
  height: 74px;
  color: #cbd1e4;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600
}

.main-menu a:hover,
.main-menu a.active {
  color: #fff
}

.main-menu a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px var(--cyan)
}

.has-submenu ul {
  display: none;
  position: absolute;
  z-index: 20;
  top: 64px;
  left: 0;
  margin: 0;
  padding: 8px;
  min-width: 170px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #11162bf2;
  box-shadow: 0 18px 40px #0008;
  backdrop-filter: blur(18px)
}

.has-submenu:hover ul,
.has-submenu:focus-within ul {
  display: block
}

.has-submenu ul a {
  height: 38px;
  border-radius: 7px;
  padding: 0 10px
}

.has-submenu ul a:hover {
  background: #ffffff0b
}

.menu-toggle {
  display: none
}

.site-header {
  position: absolute;
  z-index: 31;
  top: 84px;
  left: 0;
  width: 100%;
  pointer-events: none
}

.masthead {
  display: flex;
  align-items: center
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  pointer-events: auto
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin-right: 12px;
  filter: drop-shadow(0 0 18px #28e7ff44)
}

.brand span {
  display: flex;
  flex-direction: column
}

.brand strong {
  font: 600 24px/1.15 "Space Grotesk"
}

.brand small {
  color: #a5afc8;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.search-button {
  margin-left: auto;
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff09;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  backdrop-filter: blur(10px)
}

.hero {
  min-height: 780px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(105deg, #020916 0%, #061a3aee 45%, #074a7ed8 100%), radial-gradient(circle at 76% 48%, #20d8ff 0, #147ac4 24%, #0a3568 47%, #020916 72%)
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff07 1px, transparent 1px), linear-gradient(90deg, #ffffff07 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, #000);
  opacity: .45
}

.hero-lights {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 48%, #28e7ff28, transparent 16%), radial-gradient(circle at 68% 34%, #ff4fd822, transparent 15%)
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .3
}

.orb-one {
  width: 260px;
  height: 260px;
  right: 7%;
  top: 15%;
  background: var(--pink)
}

.orb-two {
  width: 300px;
  height: 300px;
  left: -10%;
  bottom: -5%;
  background: #344cff
}

.hero-content {
  min-height: 780px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding-top: 35px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aeb7d2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan)
}

.hero-copy h1 {
  margin: 22px 0;
  font: 700 clamp(48px, 6vw, 78px)/.98 "Space Grotesk";
  letter-spacing: -3px
}

.hero-copy h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), #6a9cff, var(--pink));
  background-clip: text
}

.hero-copy>p {
  max-width: 590px;
  color: #adb6d0;
  font-size: 18px
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 35px 0
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 10px;
  font-weight: 700;
  color: #fff
}

.button.primary {
  color: #07101a;
  background: linear-gradient(110deg, var(--cyan), #63a6ff);
  box-shadow: 0 12px 35px #28e7ff2b
}

.button.primary b {
  margin-left: 24px
}

.button.secondary {
  border: 1px solid #ffffff24;
  background: #ffffff08;
  backdrop-filter: blur(10px)
}

.hero-trust {
  display: flex;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 570px
}

.hero-trust span {
  display: flex;
  flex-direction: column;
  color: #7f8aa8;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.hero-trust b {
  color: #fff;
  font: 600 18px "Space Grotesk";
  text-transform: none
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center
}

.portal {
  position: relative;
  width: 390px;
  height: 390px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #17264f, #0d1024 55%, transparent 56%);
  box-shadow: inset 0 0 55px #28e7ff33, 0 0 80px #7653ff22
}

.portal:before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid #28e7ff33;
  border-radius: 50%;
  box-shadow: 0 0 35px #28e7ff22
}

.portal img {
  width: 245px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 30px #28e7ff44)
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid
}

.ring-a {
  inset: -18px;
  border-color: #28e7ff33;
  border-top-color: var(--cyan);
  animation: spin 18s linear infinite
}

.ring-b {
  inset: 60px;
  border-color: #9b6cff44;
  border-bottom-color: var(--violet);
  animation: spin 12s linear infinite reverse
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 45px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #ffffff24;
  border-radius: 12px;
  background: #11162bd9;
  box-shadow: 0 15px 40px #0008;
  backdrop-filter: blur(15px)
}

.floating-card>i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #43e08b;
  box-shadow: 0 0 12px #43e08b
}

.floating-card span {
  display: flex;
  flex-direction: column
}

.floating-card small {
  font-size: 8px;
  color: #8792af;
  letter-spacing: 1px
}

.floating-card b {
  font-size: 12px
}

.floating-card strong {
  color: #43e08b;
  font-size: 8px;
  margin-left: 14px
}

.quick-access {
  position: relative;
  z-index: 8;
  margin-top: -48px
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #10152beb;
  box-shadow: 0 22px 55px #0008;
  backdrop-filter: blur(20px);
  overflow: hidden
}

.quick-grid>a {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  color: #fff;
  border-right: 1px solid var(--line);
  transition: .25s
}

.quick-grid>a:last-child {
  border: 0
}

.quick-grid>a:hover {
  background: #ffffff08
}

.quick-grid>a>span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, #28e7ff1e, #9b6cff29);
  color: var(--cyan);
  font-size: 21px
}

.quick-grid div {
  display: flex;
  flex-direction: column
}

.quick-grid b {
  font-size: 13px
}

.quick-grid small {
  color: #7f89a6;
  font-size: 10px
}

.quick-grid i {
  margin-left: auto;
  color: #5e6986;
  font-style: normal
}

.news {
  padding: 115px 0 100px
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px
}

.section-head>a {
  font-size: 12px;
  font-weight: 700
}

.section-title {
  margin: 10px 0 0;
  font: 600 clamp(28px, 4vw, 44px) "Space Grotesk";
  letter-spacing: -1.5px
}

.carousel-wrap {
  position: relative
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 14px);
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth
}

.news-card {
  height: 410px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #151a30
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s
}

.news-card:after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: linear-gradient(transparent, #080b1af5)
}

.news-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 21px;
  display: flex;
  flex-direction: column
}

.news-card small {
  color: var(--cyan);
  font-size: 9px;
  letter-spacing: 1.6px
}

.news-card span {
  color: #fff;
  font: 600 20px/1.25 "Space Grotesk";
  margin: 7px 0 14px
}

.news-card b {
  color: #98a3c1;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.news-card:hover img {
  transform: scale(1.06)
}

.news-card:hover {
  border-color: #28e7ff55
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0b0f20d9;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
  backdrop-filter: blur(10px)
}

.carousel-button.prev {
  left: -20px
}

.carousel-button.next {
  right: -20px
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(270px, .8fr);
  gap: 30px;
  padding-top: 90px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line)
}

.article-title {
  margin-bottom: 30px
}

.article h1 {
  margin: 10px 0 0;
  font: 600 clamp(30px, 4vw, 45px) "Space Grotesk"
}

.schedule {
  position: relative;
  margin-bottom: 45px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #10152b;
  overflow: hidden;
  box-shadow: 0 22px 60px #0005
}

.schedule-heading {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: #151b34;
  color: #fff;
  font-size: 12px;
  font-weight: 600
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #43e08b;
  box-shadow: 0 0 10px #43e08b
}

.schedule-link {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff
}

.schedule-image {
  width: min(100%, 570px);
  height: auto;
  margin: 0 auto;
  object-fit: contain
}

.glass-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #151a30, #0f1428);
  color: #b9c1d8;
  text-align: justify
}

.copy h2 {
  color: #fff;
  text-align: left;
  font: 600 30px/1.15 "Space Grotesk"
}

.copy p {
  margin: 0 0 18px
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line)
}

.community-stats span {
  display: flex;
  flex-direction: column
}

.community-stats b {
  color: var(--cyan);
  font: 600 20px "Space Grotesk"
}

.community-stats small {
  color: #77829f;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.cta-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 25px 0;
  font-size: 12px;
  font-weight: 700
}

.cta-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 8px
}

.share {
  padding-top: 10px
}

.share-separator {
  height: 6px;
  margin: 34px 0 22px;
  border: 0;
  border-top: 1px solid var(--cyan);
  border-bottom: 1px solid var(--cyan);
  opacity: .55
}

/* Botones para compartir en los tutoriales */
.sd-sharing .sd-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 13px
}

.sd-sharing .sd-content ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none
}

.sd-sharing .sd-content li {
  flex: 0 0 auto;
  margin: 0;
  padding: 0
}

.sd-sharing .sd-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 7px 18px #0004;
  transition: transform .2s, filter .2s
}

.sd-sharing button.sd-button {
  border: 0;
  font-family: inherit;
  cursor: pointer
}

.sd-sharing .sd-button:hover,
.sd-sharing .sd-button:focus-visible {
  color: #fff;
  filter: brightness(1.12);
  transform: translateY(-2px)
}

.sd-sharing .sd-button::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 20px
}

.sd-sharing .share-twitter .sd-button {
  background: #111
}

.sd-sharing .share-twitter .sd-button::before {
  content: "𝕏"
}

.sd-sharing .share-facebook .sd-button {
  background: #1877f2
}

.sd-sharing .share-facebook .sd-button::before {
  content: "f";
  border-radius: 50%;
  background: #fff;
  color: #1877f2;
  font-family: Arial, sans-serif
}

.sd-sharing .share-jetpack-whatsapp .sd-button {
  background: #25d366
}

.sd-sharing .share-jetpack-whatsapp .sd-button::before {
  content: "☎";
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 12px
}

.sd-sharing .share-instagram .sd-button {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #f77737)
}

.sd-sharing .share-instagram .sd-button::before {
  content: "◎";
  border: 2px solid #fff;
  border-radius: 6px;
  box-sizing: border-box;
  font-size: 15px
}

.sd-sharing .share-telegram .sd-button {
  background: #229ed9
}

.sd-sharing .share-telegram .sd-button::before {
  content: "➤";
  font-size: 15px;
  transform: rotate(-15deg)
}

.share-feedback {
  min-height: 18px;
  margin: 9px 0 0;
  color: var(--cyan);
  font-size: 12px
}

.sd-sharing .share-end {
  display: none
}

.sidebar {
  padding-top: 65px
}

.widget {
  margin-bottom: 25px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #11162b;
  overflow: hidden
}

.widget h2 {
  margin: 0 0 17px;
  color: #fff;
  font: 600 17px "Space Grotesk"
}

.widget h2:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--violet))
}

.donate img {
  width: 100%
}

.discord {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px
}

.destination {
  width: 100%;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0b0f20
}

.destination img {
  width: 100%;
  border-radius: 6px
}

.destination b {
  display: block;
  padding: 9px 5px 0;
  color: var(--cyan);
  font-size: 16px
}

.destination p {
  margin: 4px 5px;
  color: #9ea7be;
  font-size: 11px;
  line-height: 1.4
}

.destination span {
  display: block;
  margin-top: 10px;
  border-radius: 7px;
  text-align: center;
  color: #07101a;
  background: linear-gradient(90deg, var(--cyan), #7c9dff);
  font: bold 12px/33px Inter
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #020916;
  color: #69738f;
  font-size: 11px
}

footer a {
  color: #9fa9c3
}

.to-top {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid #28e7ff55;
  border-radius: 50%;
  background: #10152be8;
  color: var(--cyan);
  font-size: 19px;
  opacity: 0;
  pointer-events: none;
  transition: .2s
}

.to-top.show {
  opacity: 1;
  pointer-events: auto
}

.search-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  background: #080b1af5;
  color: #fff;
  backdrop-filter: blur(20px)
}

.search-overlay.open {
  display: grid
}

.search-form {
  width: min(650px, 80vw)
}

.search-form label {
  display: block;
  font: 600 24px "Space Grotesk";
  margin-bottom: 12px
}

.search-form div {
  display: flex
}

.search-form input {
  flex: 1;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 9px 0 0 9px;
  background: #171d36;
  color: #fff;
  font-size: 16px
}

.search-form button {
  border: 0;
  border-radius: 0 9px 9px 0;
  background: var(--cyan);
  color: #07101a;
  padding: 0 25px;
  font-weight: 700
}

.search-close {
  position: absolute;
  right: 30px;
  top: 20px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
  cursor: pointer
}

@media(max-width:920px) {
  .main-menu a {
    padding: 0 7px;
    font-size: 10px
  }

  .hero-content {
    grid-template-columns: 1.1fr .9fr
  }

  .portal {
    width: 300px;
    height: 300px
  }

  .portal img {
    width: 190px
  }

  .quick-grid {
    grid-template-columns: 1fr 1fr
  }

  .quick-grid>a:nth-child(2) {
    border-right: 0
  }

  .quick-grid>a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  .carousel {
    grid-auto-columns: calc(50% - 10px)
  }

  .layout {
    gap: 20px
  }

}

@media(max-width:700px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .topbar {
    height: auto;
    min-height: 64px
  }

  .topbar-inner {
    flex-wrap: wrap
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #ffffff08;
    color: #fff;
    padding: 7px 10px
  }

  .main-menu {
    display: none;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 8px 0
  }

  .main-menu.open {
    display: flex
  }

  .main-menu a {
    height: 38px;
    font-size: 13px
  }

  .has-submenu ul {
    position: static;
    box-shadow: none
  }

  .site-header {
    top: 74px
  }

  .brand img {
    width: 59px;
    height: 59px
  }

  .brand strong {
    font-size: 20px
  }

  .brand small {
    font-size: 8px
  }

  .hero,
  .hero-content {
    min-height: 760px
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 155px;
    text-align: center
  }

  .hero-copy>p {
    margin-inline: auto
  }

  .hero-actions,
  .hero-trust {
    justify-content: center
  }

  .hero-visual {
    display: none
  }

  .quick-access {
    margin-top: -28px
  }

  .carousel {
    grid-auto-columns: 78%
  }

  .news-card {
    height: 380px
  }

  .layout {
    grid-template-columns: 1fr;
    padding-top: 70px
  }

  .sidebar {
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
  }

  .widget {
    min-width: 0;
    margin: 0
  }

  .widget:last-child {
    grid-column: 1/-1
  }

  .discord {
    height: 330px
  }

}

@media(max-width:480px) {
  .social a {
    width: 29px;
    height: 29px
  }

  .hero-copy h1 {
    letter-spacing: -2px
  }

  .hero-actions {
    flex-direction: column
  }

  .hero-trust {
    gap: 15px
  }

  .quick-grid {
    grid-template-columns: 1fr
  }

  .quick-grid>a {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important
  }

  .quick-grid>a:last-child {
    border-bottom: 0 !important
  }

  .news {
    padding: 90px 0 70px
  }

  .section-head>a {
    display: none
  }

  .carousel {
    grid-auto-columns: 90%
  }

  .news-card {
    height: 350px
  }

  .sidebar {
    grid-template-columns: 1fr
  }

  .widget:last-child {
    grid-column: auto
  }

  .glass-copy {
    padding: 24px
  }

  .community-stats {
    grid-template-columns: 1fr 1fr
  }

  .cta-links {
    flex-direction: column
  }
}

/* Componentes globales compartidos */
.global-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  border-bottom: 1px solid var(--line);
  background: #031127c7;
  backdrop-filter: blur(18px)
}

.global-header-inner {
  height: 100%;
  display: flex;
  align-items: center
}

.header-brand-area {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start
}

.global-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: #fff
}

.global-brand img {
  width: 54px;
  height: 54px;
  margin-right: 10px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px #28e7ff44)
}

.global-brand span,
.footer-brand span {
  display: flex;
  flex-direction: column
}

.global-brand strong {
  font: 600 19px/1.1 "Space Grotesk", sans-serif
}

.global-brand small {
  color: #8893af;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -6px 0 0 64px
}

.social-icons a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff08;
  color: #aebbd1;
  font-size: 14px;
  transition: .2s
}

.social-icons a:hover,
.social-icons a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px #20d8ff45;
  outline: none
}

.global-header .primary-nav {
  margin-left: auto
}

.global-header .main-menu {
  height: 86px
}

.global-header .main-menu a {
  height: 86px
}

.global-header .search-button {
  margin-left: 9px;
  flex: 0 0 auto
}

.site-footer {
  padding: 58px 0 0;
  border-top: 1px solid var(--line);
  background: #020916;
  color: #7d87a2
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 42px
}

.footer-grid>div>p {
  max-width: 350px;
  font-size: 12px
}

.footer-brand {
  display: flex;
  align-items: center;
  color: #fff
}

.footer-brand img {
  width: 52px;
  height: 52px;
  margin-right: 10px
}

.footer-brand b {
  font: 600 18px "Space Grotesk", sans-serif
}

.footer-brand small {
  font-size: 9px;
  color: #77819a
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.footer-grid nav b {
  margin-bottom: 5px;
  color: #fff;
  font-size: 12px
}

.footer-grid nav a {
  color: #818ba5;
  font-size: 11px
}

.footer-grid nav a:hover {
  color: var(--cyan)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px
}

.tutorial-page .global-header {
  position: sticky
}

.tutorial-page .tutorial-main,
.tutorial-page .catalog {
  min-height: 70vh
}

.content-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(250px, .7fr);
  gap: 30px;
  align-items: start
}

.content-sidebar-layout>.catalog,
.content-sidebar-layout>.tutorial-main {
  width: auto;
  min-width: 0;
  margin: 0
}

.content-sidebar-layout>.sidebar {
  padding-top: 70px
}

.content-sidebar-layout>.tutorial-main+.sidebar {
  padding-top: 105px
}

.standalone-sidebar-wrap {
  padding-top: 80px;
  padding-bottom: 90px
}

.standalone-sidebar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0
}

.standalone-sidebar .widget {
  margin: 0
}

.standalone-sidebar .discord {
  height: 300px
}

@media(max-width:960px) {
  .global-brand small {
    display: none
  }

  .global-header .main-menu a {
    padding: 0 7px;
    font-size: 10px
  }
}

@media(max-width:850px) {
  .content-sidebar-layout {
    grid-template-columns: 1fr
  }

  .content-sidebar-layout>.sidebar,
  .content-sidebar-layout>.tutorial-main+.sidebar {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-bottom: 70px
  }

  .content-sidebar-layout>.sidebar .widget {
    margin: 0
  }

  .content-sidebar-layout>.sidebar .widget:last-child {
    grid-column: 1/-1
  }

  .standalone-sidebar {
    grid-template-columns: 1fr 1fr
  }

  .standalone-sidebar .widget:last-child {
    grid-column: 1/-1
  }
}

@media(max-width:520px) {

  .content-sidebar-layout>.sidebar,
  .content-sidebar-layout>.tutorial-main+.sidebar,
  .standalone-sidebar {
    grid-template-columns: 1fr
  }

  .content-sidebar-layout>.sidebar .widget:last-child,
  .standalone-sidebar .widget:last-child {
    grid-column: auto
  }
}

@media(max-width:700px) {
  .global-header {
    height: auto;
    min-height: 72px
  }

  .global-header-inner {
    min-height: 72px;
    flex-wrap: wrap
  }

  .global-brand img {
    width: 52px;
    height: 52px
  }

  .global-header .menu-toggle {
    display: block;
    margin-left: auto
  }

  .global-header .primary-nav {
    order: 4;
    width: 100%;
    margin: 0
  }

  .global-header .main-menu {
    height: auto
  }

  .global-header .main-menu a {
    height: 38px
  }

  .global-header .search-button {
    margin-left: 9px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .footer-grid>div {
    grid-column: 1/-1
  }

  .footer-bottom {
    gap: 15px;
    flex-direction: column
  }

  .home-page .hero-content {
    padding-top: 90px
  }
}

/* Novedades compactas en acordeón */
.news {
  padding: 85px 0 75px
}

.news-accordion {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #061a3ab8;
  box-shadow: 0 20px 50px #0004;
  overflow: hidden
}

.news-item {
  border-bottom: 1px solid var(--line)
}

.news-item:last-child {
  border: 0
}

.news-item>button {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 115px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer
}

.news-item>button:hover,
.news-item.open>button {
  background: #ffffff08
}

.news-item>button small {
  color: var(--cyan);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px
}

.news-item>button span {
  font: 600 14px "Space Grotesk", sans-serif
}

.news-item>button i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
  font-style: normal
}

.news-panel {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 20px 18px 151px;
  animation: newsOpen .22s ease
}

.news-panel[hidden] {
  display: none
}

.news-panel img {
  width: 105px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover
}

.news-panel p {
  margin: 0;
  color: #a7bad4;
  font-size: 11px;
  line-height: 1.5
}

.news-panel a {
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px
}

@keyframes newsOpen {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }
}

@media(max-width:650px) {
  .news-item>button {
    grid-template-columns: 82px 1fr 26px;
    padding: 0 14px;
    gap: 10px
  }

  .news-panel {
    grid-template-columns: 80px 1fr;
    padding: 0 14px 15px
  }

  .news-panel img {
    width: 80px;
    height: 60px
  }

  .news-panel a {
    grid-column: 2
  }

  .news-panel p {
    font-size: 10px
  }
}

@media(min-width:651px) {
  .news-accordion {
    display: flex;
    max-width: none;
    height: 285px;
    background: #04142c;
    overflow: hidden
  }

  .news-item {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 100%;
    border: 0;
    border-right: 1px solid #8bdcff2b;
    overflow: hidden;
    transition: flex .55s cubic-bezier(.22, .75, .2, 1)
  }

  .news-item:last-child {
    border-right: 0
  }

  .news-item:hover,
  .news-item:focus-within {
    flex: 3.4
  }

  .news-item>button {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    min-height: 0;
    padding: 18px;
    border: 0;
    background: linear-gradient(180deg, #0209160d 20%, #020916eb 100%);
    color: #fff;
    text-align: left
  }

  .news-item>button:hover,
  .news-item:focus-within>button {
    background: linear-gradient(180deg, #02091608 15%, #020916e3 100%)
  }

  .news-item>button small {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 5px 8px;
    border: 1px solid #20d8ff50;
    border-radius: 12px;
    background: #031127b8;
    color: var(--cyan);
    font-size: 7px;
    letter-spacing: 1px
  }

  .news-item>button span {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 18px;
    font: 600 14px/1.3 "Space Grotesk", sans-serif;
    transition: font-size .35s
  }

  .news-item:hover>button span,
  .news-item:focus-within>button span {
    bottom: 72px;
    font-size: 19px
  }

  .news-item>button i {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #0311279c;
    color: var(--cyan);
    font-style: normal
  }

  .news-panel {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block !important;
    padding: 0;
    animation: none
  }

  .news-panel:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #02091625, #02091608 45%, #0209163d)
  }

  .news-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    filter: saturate(.85) brightness(.67);
    transition: transform .7s, filter .45s
  }

  .news-item:hover .news-panel img,
  .news-item:focus-within .news-panel img {
    transform: scale(1.04);
    filter: saturate(1) brightness(.76)
  }

  .news-panel p {
    position: absolute;
    z-index: 4;
    left: 17px;
    right: 125px;
    bottom: 18px;
    margin: 0;
    color: #c7d7e9;
    font-size: 10px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s .12s;
    pointer-events: none
  }

  .news-panel a {
    position: absolute;
    z-index: 5;
    right: 17px;
    bottom: 18px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s .12s
  }

  .news-item:hover .news-panel p,
  .news-item:hover .news-panel a,
  .news-item:focus-within .news-panel p,
  .news-item:focus-within .news-panel a {
    opacity: 1;
    transform: none
  }
}

/* Fondos rotativos del hero */
.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.5s ease, transform 12s ease;
  filter: saturate(.9)
}

.hero-background:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020916f2 0%, #03132bcb 43%, #05234f70 72%, #0311278f 100%), linear-gradient(0deg, #0209168c, transparent 48%, #02091657)
}

.hero-background.active {
  opacity: 1;
  transform: scale(1)
}

.hero-lights,
.hero-orb {
  z-index: 1
}

.hero-content {
  z-index: 2
}

@media(prefers-reduced-motion:reduce) {
  .hero-background {
    transition: none;
    transform: none
  }
}

/* Coverflow de novedades, equivalente al carrusel del sitio publicado */
.wp-carousel-wrap {
  position: relative;
  perspective: 1800px
}

.wp-carousel {
  position: relative;
  display: block;
  width: 100%;
  height: 410px;
  padding-block: 10px;
  overflow: hidden;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
  user-select: none
}

.wp-carousel.is-dragging {
  cursor: grabbing
}

.wp-news-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 300px;
  height: 300px;
  border: 2px solid #ffffff24;
  border-radius: 8px;
  opacity: 0;
  overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #236699, #06162d 67%);
  box-shadow: 0 18px 38px #0008;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), opacity .65s ease, box-shadow .35s, filter .35s
}

.wp-news-card img {
  position: absolute;
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  margin: 0;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none
}

.wp-news-card:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #000e)
}

.wp-news-card div {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 15px 16px;
  background: #0007;
  text-align: center
}

.wp-news-card small {
  display: none
}

.wp-news-card span {
  color: #fff;
  font: 600 16px/1.25 "Space Grotesk", sans-serif;
  text-shadow: 0 2px 5px #000
}

.wp-news-card.is-active {
  border-color: #ffffffb8;
  box-shadow: inset 0 0 0 1px #fff6, 0 28px 62px #000b;
  filter: saturate(1.08)
}

.wp-news-card.is-side {
  filter: saturate(.78) brightness(.72)
}

.wp-carousel-wrap .carousel-button {
  top: 50%;
  z-index: 20;
  margin-top: -21px;
  background: #031127e8;
  box-shadow: 0 6px 18px #0008
}

.wp-carousel-wrap .prev {
  left: 10px
}

.wp-carousel-wrap .next {
  right: 10px
}

@media(max-width:700px) {
  .wp-carousel {
    height: 305px
  }

  .wp-news-card {
    width: 210px;
    height: 210px
  }

  .wp-news-card span {
    font-size: 13px
  }

  .wp-news-card div {
    padding: 13px 10px
  }

  .wp-carousel-wrap .prev {
    left: 0
  }

  .wp-carousel-wrap .next {
    right: 0
  }
}

@media(prefers-reduced-motion:reduce) {
  .wp-news-card {
    transition: none
  }
}

/* Visor global de imágenes */
img[role="button"] {
  cursor: zoom-in
}

img[role="button"]:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px
}

body.lightbox-open {
  overflow: hidden
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #02091680;
  backdrop-filter: blur(3px)
}

.lightbox.open {
  display: flex
}

.lightbox-dialog {
  position: relative;
  width: fit-content;
  max-width: min(1000px, 92vw);
  max-height: 88vh;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #10162a;
  box-shadow: 0 28px 90px #000c
}

.lightbox-content {
  max-width: 100%;
  margin: 0;
  text-align: center
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: calc(88vh - 75px);
  margin: auto;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 10px 35px #0008;
  cursor: default
}

.lightbox-caption {
  margin-top: 12px;
  color: #eaf6ff;
  font-size: 13px
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  background: #08152b;
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer
}

@media(max-width:560px) {
  .lightbox {
    padding: 16px
  }

  .lightbox-dialog {
    max-width: 94vw;
    padding: 12px
  }

  .lightbox-image {
    max-height: calc(88vh - 55px)
  }

  .lightbox-close {
    top: -10px;
    right: -8px
  }
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: none
}

.key-style {
  background-color: #f7f7f7;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
  font-size: 0.85em;
  font-weight: 600;
  padding: 4px 7px;
  margin: 0 3px;
  
  /* Bordes redondeados sutiles */
  border-radius: 5px;
  
  /* El secreto del efecto 3D: Un borde inferior más oscuro */
  border: 1px solid #ccc;
  border-bottom: 4px solid #b5b5b5;
  
  /* Sombras para dar profundidad en la base y luz interna */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15), 
              0 1px 0 rgba(255, 255, 255, 0.8) inset;
              
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  top: 0;
  transition: all 0.05s ease;
}

/* Efecto opcional al pasar el mouse */
.key-style:hover {
  background-color: #ffffff;
}

/* 🔘 Efecto de presionar la tecla (Simulación de clic) */
.key-style:active {
  /* Reduce el borde inferior simulando que se hunde */
  border-bottom-width: 1px;
  /* Desplaza la tecla hacia abajo para compensar la pérdida de borde */
  top: 3px;
  /* Reduce la sombra para simular cercanía con el fondo */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 
              0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
