/* === BASE STYLES === */
body {
  background-color: #000 !important;
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  color: white;
  text-align: center;

  /* === CROSSHAIR CURSOR === */
  cursor: url("https://syfyi.com/wp-content/uploads/2026/02/crosshair.png") 32 32, auto;
}

/* === THE NUCLEAR UFO FIX === */
/* Targets every layer of the Elementor widget to force 100px width */
.syfyi-pulse img, 
.syfyi-pulse .elementor-widget-container img,
.elementor-widget-image.syfyi-pulse img {
  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  animation: ufo-pulse-animation 3s infinite ease-in-out !important;
  cursor: pointer;
}

@keyframes ufo-pulse-animation {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 15px rgba(255,255,255,0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); }
}

/* === TITLE BAR & HEADER FIX === */
#wpadminbar, 
.elementor-location-header, 
.site-header, 
.title-bar {
  display: none !important;
}

/* Forces the main content to start at the very top */
#primary, #content, .elementor-section-wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* === NAVIGATION === */
.gfx-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: #0a0a0a;
  padding: 1.5rem 0;
  border-bottom: 1px solid #222;
}

.gfx-button span {
  font-family: 'Orbitron', sans-serif;
  color: #ff5f6d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.gfx-button span:hover {
  color: #ffc371;
}

.gfx-nav .gfx-button:not(:last-child)::after {
  content: "|";
  margin-left: 1.5rem;
  margin-right: -1.5rem;
  color: #555;
  font-weight: 300;
  pointer-events: none;
}

/* === VAULT GRID === */
.gfx-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 60px;
}

.gfx-grid.active {
  display: grid;
}

.gfx-item {
  background-color: #111;
  border: 1px solid #333;
  width: 100%;
  display: block;
  overflow: hidden;
  transition: border 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gfx-item:hover {
  border: 1px solid #ffffff;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.gfx-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* === HIDE SYSTEM ELEMENTS === */
.site-title, 
.custom-logo-link, 
.custom-logo, 
.site-footer {
  display: none !important;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .gfx-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
}

/* HIDE WORDPRESS PAGE TITLE ONLY */
.page-title,
.entry-title,
.elementor-page-title {
  display: none !important;
}