/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #00121A;
  color: #E6F7FF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.accent {
  color: #00B1FF;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #00121A;
}
::-webkit-scrollbar-thumb {
  background: #003247;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: #005275;
}

/* ========== SECTION ========== */
.section {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-icon {
  color: #00B1FF;
  font-size: 1.5rem;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  background: #00B1FF;
  color: #00121A;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(0, 177, 255, 0.15);
}

.btn-primary:hover {
  background: #0092D1;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 177, 255, 0.25);
}

.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  color: #E6F7FF;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1rem;
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

/* ========== BADGES ========== */
.badge {
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

.badge-active {
  background: rgba(0, 177, 255, 0.12);
  color: #8ADCFF;
  border: 1px solid rgba(0, 177, 255, 0.15);
}

.badge-coming {
  background: rgba(0, 50, 71, 0.5);
  color: #5CCEFF;
  border: 1px solid rgba(0, 114, 163, 0.2);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  background: rgba(0, 18, 26, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 18, 26, 0.88);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 177, 255, 0.1));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-menu a {
  color: rgba(184, 234, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
  background: transparent;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #E6F7FF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 18, 26, 0.9) 0%, rgba(0, 50, 71, 0.4) 50%, rgba(0, 18, 26, 0.8) 100%);
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(to top, #00121A 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: heroFadeIn 1.2s ease-out forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 30px;
}

.hero-logo-wrapper {
  display: inline-block;
}

.hero-logo-img {
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 177, 255, 0.12));
  transition: transform 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.02);
}

.hero-sub {
  font-size: 1.3rem;
  color: rgba(184, 234, 255, 0.7);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}

.hero-ip-block {
  margin-top: 0.5rem;
  background: rgba(0, 50, 71, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(0, 177, 255, 0.06);
  max-width: 420px;
}

.ip-block-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(184, 234, 255, 0.3);
  margin-bottom: 0.6rem;
}

.ip-block-header i {
  color: #00B1FF;
  font-size: 0.8rem;
}

.ip-block-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ip-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ip-address {
  font-family: 'Inter', monospace;
  color: #E6F7FF;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.ip-bedrock {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(184, 234, 255, 0.4);
}

.ip-bedrock i {
  color: rgba(0, 177, 255, 0.3);
  font-size: 0.7rem;
}

.copy-btn {
  background: transparent;
  border: none;
  color: rgba(0, 177, 255, 0.3);
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}

.copy-btn:hover {
  color: #00B1FF;
  background: rgba(0, 177, 255, 0.08);
}

.copy-btn.copied {
  color: #5CCEFF;
}

.hero-right {
  display: none;
}

/* ========== MODALIDADES ========== */
.modes-section {
  padding: 2.5rem 0 3rem;
}

.modes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.mode-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 240px;
  border: 1px solid transparent;
  opacity: 0;
  animation: modeFadeIn 0.8s ease forwards;
}

.mode-card:nth-child(1) { animation-delay: 0.1s; }
.mode-card:nth-child(2) { animation-delay: 0.2s; }
.mode-card:nth-child(3) { animation-delay: 0.3s; }
.mode-card:nth-child(4) { animation-delay: 0.4s; }
.mode-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes modeFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mode-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 177, 255, 0.15);
}

.mode-card:hover .mode-image {
  transform: scale(1.04);
}

.mode-card-large {
  grid-row: 1 / 3;
  min-height: 500px;
}

.mode-card-large .mode-content {
  padding: 2.2rem;
}

.mode-card-large .mode-title {
  font-size: 2rem;
}

.mode-card-coming {
  opacity: 0.7;
}

.mode-card-coming:hover {
  opacity: 0.9;
}

.mode-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #003247;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.mode-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 26, 0.9) 0%, rgba(0, 18, 26, 0.15) 60%, rgba(0, 18, 26, 0.05) 100%);
  transition: all 0.5s ease;
  z-index: 1;
}

.mode-card:hover .mode-overlay {
  background: linear-gradient(to top, rgba(0, 18, 26, 0.95) 0%, rgba(0, 18, 26, 0.5) 50%, rgba(0, 18, 26, 0.3) 100%);
}

/* ========== MODALIDADES HOVER CONTENT ========== */
.mode-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  pointer-events: none;
}

.mode-card:hover .mode-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.mode-hover-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mode-hover-desc {
  font-size: 0.8rem;
  color: rgba(184, 234, 255, 0.75);
  max-width: 280px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ========== TARJETA GRANDE ========== */
.mode-card-large .mode-hover-title {
  font-size: 1.4rem;
}

.mode-card-large .mode-hover-desc {
  font-size: 0.9rem;
  max-width: 400px;
}

/* ========== TARJETAS PEQUEÑAS ========== */
.mode-card:not(.mode-card-large) .mode-hover-content {
  padding: 0.8rem;
}

.mode-card:not(.mode-card-large) .mode-hover-title {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.mode-card:not(.mode-card-large) .mode-hover-desc {
  font-size: 0.7rem;
  max-width: 200px;
  color: rgba(184, 234, 255, 0.6);
}

/* ========== CONTENIDO INFERIOR ========== */
.mode-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.mode-card:hover .mode-content {
  opacity: 0;
}

.mode-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.mode-version {
  font-size: 0.85rem;
  color: rgba(184, 234, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mode-version i {
  font-size: 0.7rem;
  color: rgba(0, 177, 255, 0.3);
}

/* ========== GALERÍA ========== */
.gallery-section {
  padding: 3rem 0 4rem;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.gallery-header-left {
  flex: 1;
  min-width: 280px;
}

.gallery-sub {
  font-size: 1.05rem;
  color: rgba(184, 234, 255, 0.4);
  max-width: 580px;
  line-height: 1.7;
  margin-top: 0.2rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: none;
  color: rgba(184, 234, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.filter-btn:hover {
  color: rgba(184, 234, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
}

.filter-btn.active {
  color: #E6F7FF;
  background: rgba(0, 177, 255, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 50, 71, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 16 / 9;
  opacity: 0;
  transform: translateY(20px);
  animation: galleryFadeIn 0.8s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery-item:nth-child(10) { animation-delay: 0.5s; }
.gallery-item:nth-child(11) { animation-delay: 0.55s; }
.gallery-item:nth-child(12) { animation-delay: 0.6s; }
.gallery-item:nth-child(13) { animation-delay: 0.65s; }
.gallery-item:nth-child(14) { animation-delay: 0.7s; }
.gallery-item:nth-child(15) { animation-delay: 0.75s; }

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  z-index: 2;
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 18, 26, 0.92) 0%, transparent 60%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gallery-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 177, 255, 0.5);
}

.gallery-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.05rem;
}

.gallery-desc {
  font-size: 0.75rem;
  color: rgba(184, 234, 255, 0.4);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: 2.8rem;
  display: box;
  line-clamp: 2;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .gallery-overlay {
    padding: 1rem 0.8rem 0.8rem;
  }
  .gallery-title {
    font-size: 0.85rem;
  }
  .gallery-desc {
    font-size: 0.7rem;
    -webkit-line-clamp: 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .gallery-overlay {
    padding: 0.6rem 0.6rem 0.6rem;
  }
  .gallery-title {
    font-size: 0.7rem;
  }
  .gallery-desc {
    font-size: 0.6rem;
    display: none;
  }
  .gallery-label {
    font-size: 0.5rem;
  }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 18, 26, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 82vw;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.lightbox-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox-counter {
  color: rgba(184, 234, 255, 0.2);
  font-size: 0.8rem;
  font-family: 'Inter', monospace;
}

.lightbox-details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.lightbox-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.lightbox-desc {
  font-size: 0.85rem;
  color: rgba(184, 234, 255, 0.3);
  margin: 0;
}

.lightbox-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 177, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(184, 234, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #E6F7FF;
  transform: scale(1.05);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(184, 234, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #E6F7FF;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

/* ========== PLATAFORMAS ========== */
.platforms-section {
  padding: 2rem 0;
}

.platforms-wrapper {
  background: rgba(0, 50, 71, 0.06);
  border-radius: 24px;
  padding: 3rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.platforms-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.platforms-icon {
  color: #00B1FF;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.platforms-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.platforms-sub {
  font-size: 0.95rem;
  color: rgba(184, 234, 255, 0.35);
  margin-top: 0.2rem;
}

.platforms-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(0, 18, 26, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  flex: 1;
  max-width: 400px;
  transition: all 0.3s ease;
}

.platform-item:hover {
  background: rgba(0, 18, 26, 0.5);
  border-color: rgba(0, 177, 255, 0.05);
  transform: translateY(-2px);
}

.platform-item-icon {
  font-size: 2.2rem;
  color: #00B1FF;
  width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.platform-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.platform-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.platform-item-ip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: 'Inter', monospace;
  color: rgba(184, 234, 255, 0.4);
}

.platform-item-ip i {
  color: rgba(0, 177, 255, 0.2);
  font-size: 0.75rem;
}

.platform-item-port {
  color: rgba(184, 234, 255, 0.2);
}

.platform-item-ip .copy-btn {
  color: rgba(0, 177, 255, 0.2);
  font-size: 0.75rem;
}

.platform-item-ip .copy-btn:hover {
  color: #00B1FF;
}

.platform-features {
  list-style: none;
  margin-top: 0.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(184, 234, 255, 0.25);
}

.platform-features li i {
  color: rgba(0, 177, 255, 0.2);
  font-size: 0.6rem;
}

.platform-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

/* ========== COMUNIDAD HERO ========== */
.community-hero-section {
  padding: 0;
  position: relative;
}

.community-hero-bg {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/hero/slide2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.community-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 18, 26, 0.92) 0%, rgba(0, 50, 71, 0.7) 50%, rgba(0, 18, 26, 0.92) 100%);
}

.community-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-hero-icon {
  font-size: 4rem;
  color: #5865F2;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(88, 101, 242, 0.2));
}

.community-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.community-hero-sub {
  font-size: 1.1rem;
  color: rgba(184, 234, 255, 0.4);
  margin-bottom: 2rem;
}

.community-hero-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.community-hero-links .btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.community-hero-links .btn-large i {
  font-size: 1.2rem;
}

.community-hero-separator {
  color: rgba(184, 234, 255, 0.1);
  font-size: 1.2rem;
}

.community-hero-store {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(184, 234, 255, 0.3);
  font-size: 1rem;
}

.community-hero-store i {
  color: rgba(0, 177, 255, 0.2);
}

.community-hero-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: #5CCEFF;
  background: rgba(0, 50, 71, 0.4);
  padding: 0.15rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 114, 163, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== SHYRO HOSTING ========== */
.hosting-section {
  padding: 4rem 0;
  background: #00121A;
}

.hosting-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  background: rgba(0, 50, 71, 0.08);
  border-radius: 28px;
  padding: 4.5rem 5rem;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.hosting-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hosting-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hosting-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 177, 255, 0.06);
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 177, 255, 0.06);
  width: fit-content;
}

.hosting-icon {
  color: #00B1FF;
  font-size: 0.9rem;
}

.hosting-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(184, 234, 255, 0.4);
}

.hosting-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hosting-title .accent {
  color: #00B1FF;
}

.hosting-desc {
  font-size: 1.05rem;
  color: rgba(184, 234, 255, 0.5);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 0.2rem;
}

.hosting-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hosting-buttons .btn-primary {
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
}

.hosting-buttons .btn-secondary {
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
}

.hosting-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hosting-server-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.server-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: rgba(0, 18, 26, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  min-width: 90px;
}

.server-block:hover {
  background: rgba(0, 18, 26, 0.5);
  border-color: rgba(0, 177, 255, 0.06);
  transform: translateY(-3px);
}

.server-block i {
  font-size: 2.2rem;
  color: rgba(0, 177, 255, 0.3);
  transition: color 0.3s ease;
}

.server-block:hover i {
  color: #00B1FF;
}

.server-block span {
  font-size: 0.75rem;
  color: rgba(184, 234, 255, 0.25);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ========== CTA ========== */
.cta-section {
  padding: 0;
  position: relative;
}

.cta-background {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/images/hero/slide.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-background-alt {
  background-image: url('../assets/images/hero/slide3.png');
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 18, 26, 0.92) 0%, rgba(0, 50, 71, 0.7) 50%, rgba(0, 18, 26, 0.92) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo {
  margin-bottom: 1.5rem;
}

.cta-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 177, 255, 0.15));
}

.cta-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(184, 234, 255, 0.4);
  margin-bottom: 1.5rem;
}

.cta-ip-block {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.5rem;
  background: rgba(0, 18, 26, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: 1px solid rgba(0, 177, 255, 0.06);
  margin-bottom: 2rem;
}

.cta-ip-block i {
  color: #00B1FF;
  font-size: 0.8rem;
}

/* ========== BOTÓN VOLVER ARRIBA ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: rgba(0, 18, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(184, 234, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 177, 255, 0.12);
  border-color: rgba(0, 177, 255, 0.1);
  color: #E6F7FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 177, 255, 0.06);
}

.back-to-top:active {
  transform: scale(0.92);
}

.back-to-top i {
  pointer-events: none;
}

/* ========== MENÚ MÓVIL INDEPENDIENTE ========== */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background: #00121A;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 600px;
  padding: 1.5rem 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 50, 71, 0.3);
}

.mobile-menu-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: rgba(184, 234, 255, 0.3);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  color: #E6F7FF;
  transform: rotate(90deg);
}

.mobile-menu-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.mobile-menu-links li {
  list-style: none;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(184, 234, 255, 0.5);
  padding: 0.7rem 0.5rem;
  transition: all 0.2s ease;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-menu-links a:hover {
  color: #ffffff;
  background: rgba(0, 177, 255, 0.04);
  padding-left: 1rem;
}

.mobile-menu-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 50, 71, 0.3);
}

.mobile-menu-cta {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  display: block;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid rgba(0, 50, 71, 0.12);
  padding: 2.5rem 0 2rem;
  background: #00121A;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 50, 71, 0.08);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-brand {
  gap: 0.3rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 2px 12px rgba(0, 177, 255, 0.05));
  transition: all 0.3s ease;
  margin-bottom: 0.2rem;
}

.footer-logo-img:hover {
  filter: drop-shadow(0 4px 16px rgba(0, 177, 255, 0.1));
  transform: scale(1.05);
}

.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: rgba(184, 234, 255, 0.25);
  font-weight: 400;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(184, 234, 255, 0.15);
  margin-bottom: 0.1rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
}

.footer-col-links a {
  color: rgba(184, 234, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.footer-col-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #00B1FF;
  transition: width 0.3s ease;
}

.footer-col-links a:hover {
  color: #E6F7FF;
}

.footer-col-links a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 50, 71, 0.15);
  color: rgba(184, 234, 255, 0.2);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.social-link:hover {
  background: rgba(0, 177, 255, 0.08);
  color: #00B1FF;
  border-color: rgba(0, 177, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 177, 255, 0.05);
}

.social-link:hover .fa-discord {
  color: #5865F2;
}
.social-link:hover .fa-twitter {
  color: #1DA1F2;
}
.social-link:hover .fa-youtube {
  color: #FF0000;
}
.social-link:hover .fa-tiktok {
  color: #00f2ea;
}
.social-link:hover .fa-instagram {
  color: #E4405F;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-ips {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: rgba(184, 234, 255, 0.2);
  font-family: 'Inter', monospace;
}

.footer-ips i {
  color: rgba(0, 177, 255, 0.15);
  font-size: 0.7rem;
  margin-right: 0.3rem;
}

.footer-ips span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-separator {
  color: rgba(184, 234, 255, 0.04);
}

.footer-copy {
  color: rgba(184, 234, 255, 0.1);
  font-size: 0.75rem;
}

/* ========== LEGAL PAGES ========== */
.legal-section {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 177, 255, 0.4);
  background: rgba(0, 177, 255, 0.06);
  padding: 0.2rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 177, 255, 0.04);
  margin-bottom: 1rem;
}

.legal-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-sub {
  font-size: 1.1rem;
  color: rgba(184, 234, 255, 0.4);
  max-width: 600px;
  margin: 0 auto 0.5rem;
}

.legal-date {
  font-size: 0.8rem;
  color: rgba(184, 234, 255, 0.15);
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
}

.legal-block {
  margin-bottom: 2.5rem;
}

.legal-block h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.legal-block p {
  font-size: 0.95rem;
  color: rgba(184, 234, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.legal-block ul li {
  font-size: 0.9rem;
  color: rgba(184, 234, 255, 0.4);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.legal-block ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(0, 177, 255, 0.2);
}

.legal-link {
  color: #00B1FF;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #8ADCFF;
}

.legal-footer-note {
  max-width: 820px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 50, 71, 0.2);
  text-align: center;
}

.legal-footer-note p {
  font-size: 0.75rem;
  color: rgba(184, 234, 255, 0.12);
  line-height: 1.6;
}

/* ========== SELECTOR DE TEXTO PERSONALIZADO ========== */
::selection {
  background: rgba(0, 177, 255, 0.15);
  color: inherit;
  text-shadow: none;
}

::-moz-selection {
  background: rgba(0, 177, 255, 0.15);
  color: inherit;
  text-shadow: none;
}

::-webkit-selection {
  background: rgba(0, 177, 255, 0.15);
  color: inherit;
}

/* ========== PROTECCIÓN IMÁGENES GALERÍA ========== */
.gallery-item img,
.lightbox-content img {
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
  pointer-events: auto !important;
  -webkit-touch-callout: none;
}

.gallery-item,
.lightbox-content {
  -webkit-touch-callout: none;
}

.lightbox-content img {
  cursor: default;
}

/* ========== FOOTER LEGAL NOTE ========== */
.footer-legal-note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.footer-copy-note {
  font-size: 0.65rem;
  color: rgba(184, 234, 255, 0.08);
  max-width: 500px;
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-legal-note {
    align-items: center;
    text-align: center;
  }
  .footer-copy-note {
    text-align: center;
  }
}

/* ========== NAVBAR SCROLL ========== */
.navbar.scrolled {
  background: rgba(0, 18, 26, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}