:root {
  --primary-color: #fa0011;
  --secondary-color: #a00028;
  --accent-color: #ffcc00;
  --dark-bg: #1a1a1a;
  --darker-bg: #0d0d0d;
  --light-text: #f5f5f5;
  --header-height: 80px;
  --glow-color: #fa0011aa;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: var(--darker-bg);
}

::-webkit-scrollbar-track {
  background: linear-gradient(to right, rgba(13, 13, 13, 0.9), rgba(26, 26, 26, 0.8), rgba(13, 13, 13, 0.9));
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 0 2px rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 10px;
  border: 2px solid var(--darker-bg);
  box-shadow: 0 0 8px var(--glow-color);
  animation: scrollbar-pulse 3s infinite;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff1a2b 0%, var(--primary-color) 100%);
  box-shadow: 0 0 12px var(--glow-color);
  animation: scrollbar-pulse-intense 1.5s infinite;
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  border: 2px solid var(--accent-color);
  animation: scrollbar-pulse-intense 1s infinite;
}


* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--darker-bg);
}

.tiros-marquee-section {
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  padding: 15px 0;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  position: relative;
}

.tiros-marquee-section::before,
.tiros-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.tiros-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.9), transparent);
}

.tiros-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(13, 13, 13, 0.9), transparent);
}

.tiros-marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: auto;
  position: relative;
}

.tiros-marquee-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
  padding: 0 50px;
  animation: text-glow 3s infinite;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tiros-marquee-text::before {
  content: '⬤';
  font-size: 0.5rem;
  color: var(--primary-color);
  margin-right: 10px;
  text-shadow: 0 0 5px var(--glow-color);
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.tiros-marquee-separator {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin: 0 30px;
  box-shadow: 0 0 15px var(--glow-color);
  animation: pulse 2s infinite;
  position: relative;
}

.tiros-marquee-separator::before,
.tiros-marquee-separator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 10px var(--glow-color);
}

.tiros-marquee-separator::before {
  left: -20px;
  transform: translateY(-50%);
}

.tiros-marquee-separator::after {
  right: -20px;
  transform: translateY(-50%);
}

@keyframes text-glow {
  0% {
    text-shadow: 0 0 10px var(--glow-color);
    color: var(--light-text);
  }

  50% {
    text-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
    color: #ffffff;
  }

  100% {
    text-shadow: 0 0 10px var(--glow-color);
    color: var(--light-text);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px var(--glow-color);
  }

  50% {
    transform: scale(1.2);
    box-shadow: 0 0 25px var(--glow-color), 0 0 35px var(--glow-color);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 15px var(--glow-color);
  }
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(250, 0, 17, 0.05) 50%, transparent 100%);
  background-size: 100% 10px;
  animation: scan-line 3s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@keyframes scan-line {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes scrollbar-pulse {
  0% {
    box-shadow: 0 0 8px var(--glow-color);
  }

  50% {
    box-shadow: 0 0 15px var(--glow-color), 0 0 20px var(--glow-color);
  }

  100% {
    box-shadow: 0 0 8px var(--glow-color);
  }
}

@keyframes scrollbar-pulse-intense {
  0% {
    box-shadow: 0 0 10px var(--glow-color);
  }

  50% {
    box-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
  }

  100% {
    box-shadow: 0 0 10px var(--glow-color);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  background-color: #000000fc;
  overflow-x: hidden;
  background-image: url('../images/paginaweb.png');
  background-position: relative;
  background-attachment: fixed;
  background-size: 100% 100%;
  scrollbar-color: var(--primary-color) var(--darker-bg);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
}

.home-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.site-header {
  background-color: rgba(8, 13, 20, 0.9);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--primary-color);
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  filter: drop-shadow(0 0 5px var(--glow-color));
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--light-text);
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--glow-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light-text);
}

.main-content {
  flex: 1;
  padding: 2rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(8, 13, 20, 0.8);
  z-index: 100;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 168, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px var(--glow-color);
}

@keyframes spin {
 to {
   transform: rotate(360deg);
 }
}

.site-footer {
  background-color: var(--darker-bg);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--primary-color);
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--light-text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  text-shadow: 0 0 10px var(--glow-color);
}

.tiros-hero-section {
  height: calc(100vh - var(--header-height) - 4rem);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  flex-direction: column;
  padding-bottom: 50px;
}

.tiros-logo-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto; /* Cambiar de 100% a auto para ajustar altura */
  margin-bottom: 20px; /* Añadir espacio entre el logo y el texto */
  padding-top: 30px; /* Añadir espacio en la parte superior */
}

.tiros-hero-logo {
  max-width: 922px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 0 25px var(--glow-color)) drop-shadow(0 0 40px var(--glow-color));
  animation: logo-zoom 10s infinite alternate ease-in-out;
  transition: all 0.5s ease;
}

.tiros-hero-logo:hover {
  filter: drop-shadow(0 0 40px var(--glow-color)) drop-shadow(0 0 60px var(--glow-color)) brightness(1.3);
  transform: scale(1.08);
}

.tiros-hero-tagline {
  margin-top: 30px; /* Aumentar el espacio entre el logo y el texto */
  text-align: center;
  margin-bottom: 10px; /* Añadir espacio entre el texto y los botones */
}

.tiros-hero-tagline::before {
  content: '';
  display: block;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0 auto 15px;
  box-shadow: 0 0 10px var(--glow-color);
}

.tiros-hero-tagline h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--glow-color);
  animation: text-glow 2s infinite alternate;
}

.tiros-hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 20px; /* Ajustar el espacio entre el texto y los botones */
  margin-bottom: 30px; /* Añadir espacio en la parte inferior de los botones */
}

.tiros-hero-buttons .cta-button {
  min-width: 180px;
  animation: pulse-button 2s infinite alternate;
}

@keyframes logo-pulse {
  0% {
    filter: drop-shadow(0 0 15px var(--glow-color));
  }

  50% {
    filter: drop-shadow(0 0 30px var(--glow-color)) drop-shadow(0 0 50px var(--glow-color));
  }

  100% {
    filter: drop-shadow(0 0 15px var(--glow-color));
  }
}

@keyframes logo-zoom {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 25px var(--glow-color));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px var(--glow-color)) drop-shadow(0 0 60px var(--glow-color));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 25px var(--glow-color));
  }
}

.tiros-features-banner {
  height: 300px;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tiros-banner-section {
  height: 350px;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.tiros-banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tiros-fullwidth-image {
  height: 848px;
  max-height: 848px;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(250, 0, 17, 0.2);
  border: 1px solid rgba(250, 0, 17, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.tiros-fullwidth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tiros-features-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tiros-features-content {
  position: relative;
  z-index: 2;
  color: var(--light-text);
  padding: 2rem;
  max-width: 800px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.cta-button {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background-color: var(--primary-color);
  color: var(--darker-bg);
  box-shadow: 0 0 15px var(--glow-color);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--light-text);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px var(--glow-color);
}

.cta-button.primary:hover {
  background-color: #FF4D5C;
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--glow-color);
}

.cta-button.secondary:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--glow-color);
}

.tiros-promo-section {
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.tiros-promo-content {
  display: flex;
  align-items: center;
  padding: 3rem;
}

.tiros-promo-text {
  flex: 1;
  padding-right: 2rem;
}

.tiros-promo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--light-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--glow-color);
}

.tiros-promo-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.tiros-promo-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tiros-promo-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tiros-logo-large {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px var(--glow-color));
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 15px var(--glow-color));
  }

  50% {
    filter: drop-shadow(0 0 25px var(--glow-color));
  }

  100% {
    filter: drop-shadow(0 0 15px var(--glow-color));
  }
}

.server-preview-section {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.server-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--light-text);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-text);
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: block;
  padding-bottom: 0.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 100px;
 height: 3px;
 background: rgba(13, 13, 13, 0.7);
 box-shadow: 0 0 10px var(--glow-color);
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-top: 1rem;
}

.server-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.8) 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(85, 85, 85, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.server-card.online {
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
}

.server-card.online:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.server-card.offline {
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
  opacity: 0.8;
}

.server-card.offline:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.server-status {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.server-card.online .status-indicator {
  background-color: #00ff00;
  box-shadow: 0 0 10px #00ff00;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

.server-card.offline .status-indicator {
  background-color: #ff0000;
  box-shadow: 0 0 10px #ff0000;
}

.status-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
}

.server-card.online .status-text {
  color: #00ff00;
}

.server-card.offline .status-text {
  color: #ff0000;
}

.server-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  text-align: center;
  padding-top: 1rem;
}

.server-name-text {
  display: inline-block;
  max-width: 100%;
  overflow: visible;
  white-space: normal;
}

.server-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background-color: rgba(250, 0, 17, 0.1);
  transform: translateX(5px);
}

.detail-label {
  font-weight: 600;
  color: var(--primary-color);
}

.detail-value {
  color: var(--light-text);
}

.server-actions {
  display: flex;
  justify-content: center;
}

.connect-button {
  font-family: 'Orbitron', sans-serif;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(250, 0, 17, 0.3);
  width: 100%;
  text-align: center;
}

.connect-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(250, 0, 17, 0.5);
}

.section-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--glow-color);
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.server-card {
  background-color: #0d0d0dd6;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(85 85 85 / 44%);
}

.server-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.1) 0%, transparent 100%);
  z-index: -1;
}

.server-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.server-card.online {
  border-left: 3px solid #00ff9d;
}

.server-card.offline {
  border-left: 3px solid var(--secondary-color);
}

.server-status {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.online .status-indicator {
  background-color: #00ff9d;
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.7);
}

.offline .status-indicator {
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 62, 62, 0.7);
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.online .status-text {
  color: #00ff9d;
}

.offline .status-text {
  color: var(--secondary-color);
}

.server-name {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-align: center;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.server-name-text {
  display: inline-block;
  white-space: nowrap;
  transform: translateX(0%);
}

.server-name.scrolling .server-name-text {
  animation: scrollPause 15s linear infinite;
}

@keyframes scrollPause {
  0% {
    transform: translateX(0%);
  }

  10% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.server-details {
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  font-weight: 600;
  color: var(--primary-color);
}

.server-actions {
  display: flex;
  gap: 0.5rem;
}

.connect-button,
.details-button {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  border-radius: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.connect-button {
  background-color: var(--primary-color);
  color: var(--darker-bg);
}

.details-button {
  background-color: transparent;
  color: var(--light-text);
  border: 1px solid var(--primary-color);
}

.connect-button:hover {
  background-color: #FF4D5C;
  box-shadow: 0 0 10px var(--glow-color);
}

.details-button:hover {
  color: var(--primary-color);
  box-shadow: 0 0 10px var(--glow-color);
}

.features-section {
  margin-bottom: 3rem;
  text-align: center;
  border-radius: 10px;
  padding: 2rem;
  max-width: 1400px;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}

.feature-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(13, 13, 13, 0.8) 100%);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(250, 0, 17, 0.1);
  box-shadow: 0 5px 10px rgba(250, 0, 17, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(250, 0, 17, 0.2);
  border: 1px solid rgba(250, 0, 17, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px var(--glow-color));
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-description {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
}

.has-submenu {
  position: relative;
}

.submenu-icon {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.has-submenu:hover .submenu-icon {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: 150%;
  left: 0;
  background-color: #0d0d0dd6;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px var(--glow-color);
  backdrop-filter: blur(10px);
  z-index: 1001;
  overflow: hidden;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-link {
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--light-text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.submenu-link i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
  color: var(--primary-color);
}

.submenu-link:hover {
  background-color: rgba(0, 168, 255, 0.1);
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
  padding-left: 1.5rem;
}

.submenu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 168, 255, 0.1), transparent);
  background-size: 200% 200%;
  animation: submenuGlow 3s ease infinite;
  pointer-events: none;
}

@keyframes submenuGlow {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

.submenu li {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.has-submenu:hover .submenu li {
  opacity: 1;
  transform: translateX(0);
}

.has-submenu:hover .submenu li:nth-child(1) {
  transition-delay: 0.1s;
}

.has-submenu:hover .submenu li:nth-child(2) {
  transition-delay: 0.2s;
}

.has-submenu:hover .submenu li:nth-child(3) {
  transition-delay: 0.3s;
}

@media screen and (max-width: 1024px) {
  .hero-section {
    height: auto;
    padding: 4rem 0;
  }

  .glitch-text {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .server-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 0 1rem;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--darker-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .main-nav.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .menu-toggle {
    display: block;
  }

  .glitch-text {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .server-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .site-header {
    height: 70px;
    --header-height: 70px;
  }

  .logo {
    height: 40px;
  }

  .glitch-text {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .main-content {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

.tiros-fullwidth-image {
  height: 848px;
  max-height: 848px;
  border-radius: 10px;
  margin-bottom: 3rem;
  box-shadow: rgba(250, 0, 17, 0.2) 0px 0px 15px;
  background: rgba(13, 13, 13, 0.7);
  border-color: rgba(250, 0, 17, 0.1);
  border: 1px solid rgba(250, 0, 17, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.download-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.download-button {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7) !important;
  text-shadow: 0 0 5px #000 !important;
  transition: all 0.3s ease;
}

.download-button:hover {
  transform: scale(1.05);
  background-color: #000000 !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.9) !important;
  border-color: var(--primary-color) !important;
}