:root {
  --primary: #101820; /* Very dark blue/navy */
  --secondary: #1a2636; /* Dark blue-grey */
  --accent: #bfa14a; /* Muted gold */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --highlight: #274472; /* Muted blue */
  --green: #14532d; /* Dark green */
  --gold: #bfa14a; /* Muted gold */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(16,24,32,0.92) 0%, rgba(0,234,255,0.18) 100%);
  box-shadow: 0 4px 24px 0 rgba(0,234,255,0.10);
}

.navbar.scrolled {
  background: linear-gradient(90deg, rgba(16,24,32,0.98) 0%, rgba(0,234,255,0.22) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 32px 0 rgba(0,234,255,0.13);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #7fd6c7;
  text-decoration: none;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.97rem;
  transition: color 0.25s, text-shadow 0.25s, transform 0.18s;
  position: relative;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}

.nav-links a:hover, .nav-links a:focus, .nav-links a.active {
  background: linear-gradient(90deg, #00eaff, #00ffb8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px #00eaff55, 0 1px 2px #000a;
  transform: translateY(-2px) scale(1.06);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  padding: 1rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
  filter: brightness(0.6) blur(1px);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, #0f202726 0%, #2c536426 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) 0.2s both;
}

.hero-logo {
  width: 120px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 16px #00eaffcc) brightness(0.7) contrast(1.1);
  animation: logoPulse 2.5s infinite alternate;
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 16px #00eaffcc); }
  100% { filter: drop-shadow(0 0 32px #00eaff); }
}

.hero-title {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  text-shadow: 0 4px 32px #00eaff99, 0 2px 8px #000a;
  margin: 0.5rem 0;
  background: linear-gradient(90deg, #00eaff, #00ffb8, #fff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0e6ed;
  text-shadow: 0 2px 8px #000a;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--accent), #d97706);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}

.download-icon {
  font-size: 1.25rem;
}

.discover-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.discover-btn:hover {
  color: var(--accent);
}

.arrow-down {
  animation: bounce 2s infinite;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85));
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('assets/images/13.jpg') center center/cover no-repeat;
  opacity: 0.08;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.about-images {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.overlay-image {
  position: absolute;
  width: 60%;
  bottom: -2rem;
  left: -2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-images:hover .main-image {
  transform: translateY(-10px);
}

.about-images:hover .overlay-image {
  transform: translate(10px, -10px);
}

/* Features Section */
.features {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('assets/images/ARK_Genesis_6-1920x1080.jpg') center center/cover no-repeat;
  opacity: 0.13;
}

.features::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(120deg, #00eaff, #00ffb8, #ffd700, #00eaff);
  background-size: 400% 400%;
  animation: features-bg-anim 12s ease-in-out infinite;
  opacity: 0.10;
}

.features > .container {
  position: relative;
  z-index: 2;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(26, 38, 54, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border-left: 5px solid var(--green);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(96, 165, 250, 0.4);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.features-animated-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 900;
  background: linear-gradient(270deg, #00eaff, #00ffb8, #ffd700, #00eaff);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: animated-gradient 5s ease-in-out infinite;
}

@keyframes animated-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Media Section */
.media {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.media::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('assets/images/ark_bg1-1-scaled-e1698031726769.jpg') center center/cover no-repeat;
  opacity: 0.13;
}

.media::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: radial-gradient(circle at 70% 30%, #00ffb8 0%, #00eaff 40%, #ffd700 100%);
  background-size: 300% 300%;
  animation: media-bg-anim 16s linear infinite;
  opacity: 0.15;
}

.media > .container {
  position: relative;
  z-index: 2;
}

.media h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.media-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: var(--secondary);
  color: var(--text-primary);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.tab-btn.active {
  background: var(--highlight);
}

.media-content > div {
  display: none;
}

.media-content > div.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.screenshot {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
}

.screenshot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,24,32,0.18);
  transition: opacity 0.3s;
  z-index: 1;
  border-radius: 0.5rem;
}

.screenshot:hover::before {
  opacity: 0;
}

.screenshot img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  position: relative;
  z-index: 0;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Specs Section */
.specs {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.specs::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, #ffd700 0%, #00eaff 60%, #00ffb8 100%);
  background-size: 350% 350%;
  animation: specs-bg-anim 20s ease-in-out infinite;
  opacity: 0.13;
}

@keyframes specs-bg-anim {
  0% { background-position: 100% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 100% 0%; }
}

.specs > .container {
  position: relative;
  z-index: 1;
}

.specs h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.spec-card {
  background: rgba(26, 38, 54, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 2rem;
  border-radius: 0.5rem;
}

.spec-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--green);
}

.spec-card ul {
  list-style: none;
}

.spec-card li {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.spec-card li span:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Download Section */
.download {
  padding: 6rem 0;
  background: linear-gradient(to top, rgba(16,24,32,0.98), rgba(26,38,54,0.96));
}

.download-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(26,38,54,0.92);
  border-radius: 1.2rem;
  box-shadow: 0 6px 32px 0 rgba(16,24,32,0.18);
  padding: 2.5rem 2rem;
}

.download-col-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-logo {
  width: 90px;
  height: 90px;
  border-radius: 1rem;
  box-shadow: 0 2px 16px 0 rgba(0,234,255,0.10);
  background: rgba(16,24,32,0.7);
  object-fit: contain;
}

.download-col-center {
  flex: 2;
  text-align: center;
}

.download-title {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}

.download-motivation {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 0;
}

.download-col-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.download-now-btn {
  background: linear-gradient(90deg, #00eaff, #00ffb8);
  color: #0f2027;
  border: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0,234,255,0.10);
  margin-bottom: 0.5rem;
  padding: 1rem 2.5rem;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.download-now-btn:hover {
  background: linear-gradient(90deg, #00ffb8, #00eaff);
  color: #0f2027;
  box-shadow: 0 0 24px 0 rgba(0,255,184,0.18);
  transform: translateY(-2px) scale(1.04);
}

.download-btn-icon {
  font-size: 1.5rem;
  margin-right: 0.2rem;
}

.download-social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.social-link.twitter { background: #1DA1F2; }
.social-link.facebook { background: #1877F2; }
.social-link.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-link.twitch { background: #9146FF; }
.social-link.youtube { background: #FF0000; }

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Footer */
.footer {
  background: linear-gradient(120deg, var(--primary) 60%, var(--green) 100%);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-info {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(203, 213, 225, 0.1);
  color: var(--text-secondary);
}

/* Sticky Download Button */
.sticky-download {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--accent), #d97706);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  z-index: 100;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.sticky-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.8);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 0.5rem;
}

.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox button:hover {
  color: var(--accent);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .overlay-image {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .features-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .download-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .download-col-left, .download-col-center, .download-col-right {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .download-col-center {
    margin-bottom: 0.5rem;
  }
}

.btn-download.hero {
  font-size: 1.22rem;
  padding: 1rem 3.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 32px #00eaff99;
  background: linear-gradient(135deg, #00eaff, #00ffb8);
  color: #0f2027;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.btn-download.hero:hover {
  background: linear-gradient(135deg, #00ffb8, #00eaff);
  box-shadow: 0 8px 48px #00eaffcc;
  transform: scale(1.05);
}
.floating-download {
  position: fixed;
  right: 18px;
  bottom: 28px;
  background: linear-gradient(135deg, #00eaff, #00ffb8);
  color: #0f2027;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 32px #00eaff99;
  z-index: 2000;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: bounce 2s infinite;
  text-decoration: none;
}
.floating-download:hover {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 48px #00eaffcc;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 600px) {
  .floating-download {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    right: 10px;
    bottom: 14px;
  }
}

.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(10, 18, 24, 0.97);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.video-modal.active {
  display: flex;
  animation: videoModalZoomIn 0.3s cubic-bezier(.23,1.01,.32,1);
}
@keyframes videoModalZoomIn {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.video-modal-content {
  background: #181f25;
  border-radius: 1.2rem;
  box-shadow: 0 8px 48px #00eaff44;
  padding: 0;
  max-width: 98vw;
  width: 98vw;
  max-height: 96vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.video-modal-iframe-wrap {
  width: 100%;
  height: 80vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.video-modal-close:hover {
  color: #00eaff;
}
@media (max-width: 700px) {
  .video-modal-content {
    max-width: 100vw;
    width: 100vw;
    padding: 0;
    border-radius: 0;
  }
  .video-modal-iframe-wrap {
    height: 40vh;
    min-height: 180px;
  }
}

.navbar-game-title {
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00eaff, #00ffb8, #ffd700, #00eaff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: navbar-title-gradient 6s ease-in-out infinite;
  text-shadow: 0 2px 12px #00eaff55, 0 1px 2px #000a;
}
@keyframes navbar-title-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}