
:root {
  
  --bg: #0c0c0e;
  --bg-alt: #09090b;
  --surface: #141416;
  --surface-2: #1a1a1e;
  --surface-3: #222226;
  --card-bg: #141416;
  --card-bg-hover: #1a1a1e;
  --nav-bg: #0c0c0eee;

  
  --neon: #f0d000;
  --neon-light: #ffe566;
  --neon-dim: #bfa800;
  --neon-glow: #f0d00066;
  --neon-glow-strong: #f0d000aa;
  --neon-glow-subtle: #f0d00022;
  --neon-glow-xs: #f0d00015;

  
  --text: #f0ead0;
  --text-secondary: #d8d2b8;
  --text-muted: #9a9480;
  --text-dark: #0c0c0e;

  
  --border: #f0d00025;
  --border-light: #f0d00015;
  --border-neon: #f0d00040;
  --danger: #ff4444;
  --success: #44dd88;
  --warning: #f0d000;
  --live: #ff8833;

  
  --round-sm: 4px;
  --round-md: 8px;
  --round-lg: 14px;
  --round-xl: 20px;

  
  --nav-height: 84px;
  --site-top-h: 120px;
  --max-width: 2300px;

  
  --timing: cubic-bezier(0.22, 0.68, 0.35, 1);
  --effect: all 0.25s cubic-bezier(0.22, 0.68, 0.35, 1);

  
  --font-heading: 'Encode Sans Condensed', sans-serif;
  --font-body: 'Oxygen', sans-serif;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  scrollbar-width: none; 
}
html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none;
  
  
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font-family: inherit; }


body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--neon) 20%, var(--neon-light) 50%, var(--neon) 80%, transparent);
  box-shadow:
    0 0 15px 5px var(--neon-glow),
    0 0 50px 15px var(--neon-glow-subtle),
    0 0 120px 30px var(--neon-glow-xs);
  animation: slow-edge-glow 4s ease-in-out infinite;
  opacity: 0.8;
}
body::before { left: 0; }
body::after { right: 0; }


.neon-edge-top,
.neon-edge-bottom {
  position: fixed;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--neon) 15%, var(--neon-light) 50%, var(--neon) 85%, transparent);
  box-shadow:
    0 0 15px 5px var(--neon-glow),
    0 0 50px 15px var(--neon-glow-subtle),
    0 0 120px 30px var(--neon-glow-xs);
  animation: slow-edge-glow 4s ease-in-out infinite;
  opacity: 0.8;
}
.neon-edge-top { top: 0; }
.neon-edge-bottom { bottom: 0; }

@media (max-width: 1380px) {
  .neon-edge-bottom {
    display: none;
  }
}

@keyframes slow-edge-glow {
  0%, 100% {
    opacity: 0.6;
    filter: brightness(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
  }
}


.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}


.noticebar {
  position: relative;
  background: linear-gradient(90deg, #0c0c0e, #141416 40%, #0c0c0e);
  border-bottom: 1px solid var(--border);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noticebar_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  text-align: center;
}
.noticebar_text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
}
.noticebar_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffcc00; 
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.6), 0 0 14px rgba(255, 204, 0, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(255, 204, 0, 0.6); }
  50% { opacity: 0.4; box-shadow: 0 0 10px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 204, 0, 0.4); }
}


.header {
  position: relative;
  z-index: 90;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.header_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo_mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--round-md);
  background: var(--neon);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--neon-glow);
}
.logo_text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo_title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 27px;
  color: #fef08a; 
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 0 8px rgba(254, 240, 138, 0.6),
               0 0 16px rgba(254, 240, 138, 0.4);
  animation: logo-glow-pulse 2.5s infinite alternate;
}

@keyframes logo-glow-pulse {
  from {
    text-shadow: 0 0 8px rgba(254, 240, 138, 0.6),
                 0 0 16px rgba(254, 240, 138, 0.3);
  }
  to {
    text-shadow: 0 0 12px rgba(254, 240, 138, 0.8),
                 0 0 24px rgba(254, 240, 138, 0.5),
                 0 0 32px rgba(254, 240, 138, 0.3);
  }
}



.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}


.page-news .header_inner,
.page-subpage .header_inner {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.page-news .nav,
.page-subpage .nav {
  margin-left: 0;
}
.nav_link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  padding: 12px 20px;
  border-radius: var(--round-md);
  white-space: nowrap;
  transition: var(--effect);
}
.nav_link:hover,
.nav_link-active {
  color: var(--neon-light);
  background: var(--neon-glow-xs);
  text-shadow: 0 0 8px var(--neon-glow-subtle);
}


.header_actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_githubBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  padding: 8px 10px;
  border-radius: var(--round-md);
  transition: var(--effect);
  border: 1px solid transparent;
}
.header_githubBtn:hover {
  color: var(--neon-light);
  background: var(--neon-glow-xs);
  border-color: var(--border-neon);
  box-shadow: 0 0 10px var(--neon-glow-subtle);
}

.header_searchToggle {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--neon-glow-xs);
  border-radius: var(--round-md);
  color: var(--neon-dim);
  padding: 8px 10px;
  cursor: pointer;
  transition: var(--effect);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_searchToggle:hover {
  color: var(--neon-light);
  border-color: var(--border-neon);
  box-shadow: 0 0 10px var(--neon-glow-subtle);
}


.searchDropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--timing);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.searchDropdown.is-open {
  max-height: 220px;
}
.searchDropdown_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
}


.searchRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.searchRow_input,
.searchRow_select,
.searchRow_btn {
  height: 54px;
  border-radius: var(--round-md);
  border: 1px solid var(--border-neon);
  font-size: 17px;
  font-family: var(--font-heading);
  font-weight: 600;
  outline: none;
  transition: var(--effect);
}
.searchRow_input {
  flex: 1;
  min-width: 240px;
  background: #111113;
  color: var(--text);
  padding: 0 16px;
}
.searchRow_input::placeholder {
  color: var(--text-muted);
}
.searchRow_input:focus {
  border-color: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow-subtle), inset 0 0 6px var(--neon-glow-xs);
}


.searchRow_select {
  min-width: 75px;
  background: #111113;
  color: var(--neon-light);
  padding: 0 10px;
  cursor: pointer;
}
.searchRow_select option {
  background: #141416;
  color: var(--text);
}
.searchRow_select:focus {
  border-color: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow-subtle);
}

.searchRow_btn {
  background: var(--neon);
  border-color: var(--neon);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  box-shadow: 0 0 10px var(--neon-glow-subtle);
}
.searchRow_btn:hover {
  background: var(--neon-light);
  border-color: var(--neon-light);
  box-shadow: 0 0 18px var(--neon-glow), 0 0 40px var(--neon-glow-subtle);
}
.searchRow_btn svg {
  stroke: var(--text-dark);
}


.statusLine {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-heading);
  min-height: 16px;
}
.statusLine.isError {
  color: var(--danger);
}

.legal-disclaimer {
  margin: 10px 0 0;
  padding: 14px 16px;
  border-radius: var(--round-md);
  border: 1px solid var(--border-light);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  max-width: 720px;
}

.legal-disclaimer-tight {
  margin-top: 6px;
  max-width: none;
}

.disclaimer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.disclaimer-container .legal-disclaimer {
  margin-top: 0;
  flex: 1 1 auto;
}

.legal-disclaimer-tip {
  background: var(--success) !important;
  color: var(--text-dark) !important;
  font-weight: 700;
  max-width: fit-content;
  flex: 0 0 auto !important;
  border: none;
  box-shadow: 0 0 10px rgba(68, 221, 136, 0.2);
}

@media (max-width: 1380px) {
  .disclaimer-container {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 6px;
  }
  .statusLine {
    margin-top: 4px;
    min-height: auto;
  }
  .disclaimer-container .legal-disclaimer {
    margin-top: 0;
  }
  .legal-disclaimer {
    padding: 10px 12px;
    font-size: 12px;
  }
  .legal-disclaimer-tip {
    max-width: none;
    text-align: center;
  }
}



.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.content-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}
.content-section:last-of-type {
  border-bottom: none;
}


.section-heading {
  margin-bottom: 28px;
}
.section-heading_title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--neon-light);
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-shadow: 0 0 20px var(--neon-glow-subtle);
}
.section-heading_desc {
  font-size: 18px;
  margin-top: 10px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 400;
}


.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.search-results-header > div:first-child {
  flex: 1 1 200px;
  min-width: 0;
}

.close-search-btn {
  appearance: none;
  background: var(--neon-glow-xs);
  border: 1px solid var(--border-neon);
  color: var(--neon-light);
  border-radius: var(--round-md);
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--effect);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.verify-btn:hover {
  background: var(--neon);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--neon-glow);
}

.support-card {
  position: fixed;
  top: 380px;
  right: 20px;
  z-index: 1001;
  width: 160px;
  background: rgba(18, 18, 20, 0.85);
  border: 1px solid var(--border-neon);
  border-radius: var(--round-md);
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 25px var(--neon-glow-subtle);
}
.support-card_msg {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}
.support-card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon) 0%, #00d4ff 100%);
  color: #000;
  padding: 10px 16px;
  border-radius: var(--round-md);
  font-weight: 800;
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}
.support-card_btn:hover {
  transform: scale(1.02);
}
.support-card_icon {
  width: 16px;
  height: 16px;
}
@media (max-width: 1380px) {
  .support-card {
    top: auto;
    bottom: 20px;
    right: auto;
    left: 20px;
    width: 150px;
    padding: 10px;
    margin-top: 0;
  }
}

.support-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 170, 0.15);
  border-radius: var(--round-full);
  padding: 3px 3px 3px 14px;
  margin-left: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.support-badge:hover {
  background: rgba(0, 255, 170, 0.05);
  border-color: var(--neon-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.support-badge_msg {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.support-badge_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon) 0%, #00d4ff 100%);
  color: #000;
  padding: 6px 16px;
  border-radius: var(--round-full);
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 255, 170, 0.3);
}
.support-badge_btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 255, 170, 0.5);
}
.support-badge_icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}


@media (max-width: 1380px) {
  .noticebar_inner {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .support-badge {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}




.tool-section .tool-search {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 8px;
}
.tool-section .tool-search .searchRow_input {
  flex: 1 1 220px;
  min-width: 0;
}
.tool-section .tool-search .searchRow_select {
  flex: 0 1 180px;
  min-width: 140px;
}
.tool-section_status {
  min-height: 1.5em;
}


#searchResultsSection {
  display: none;
  border-bottom: 1px solid var(--border-neon);
  background: linear-gradient(180deg, #121214, var(--bg));
}
#searchResultsSection.is-open {
  display: block;
}


.hero {
  padding: 40px 0 52px;
  background:
    radial-gradient(ellipse 900px 500px at 30% -20%, #f0d00010, transparent),
    radial-gradient(ellipse 700px 400px at 80% 20%, #f0d00008, transparent),
    linear-gradient(180deg, #111113, var(--bg));
  border-bottom: 1px solid var(--border);
}
.hero_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}


.hero-card {
  position: relative;
  border-radius: var(--round-xl);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--effect);
}
.hero-card:hover {
  border-color: var(--border-neon);
  box-shadow:
    0 0 15px var(--neon-glow-subtle),
    0 0 40px var(--neon-glow-xs),
    0 8px 30px #00000066;
}
.hero-card_feat {
  position: relative;
  padding-bottom: 130%;
  background: #000;
}
.hero-card_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--timing);
}
.hero-card:hover .hero-card_img {
  transform: scale(1.06);
}
.hero-card_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000000ee 0%, #000000aa 35%, #00000044 60%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 8px;
}
.hero-card_badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--round-sm);
  color: var(--text-dark);
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  text-shadow: none;
}
.hero-card_badge.is-upcoming {
  background: var(--live);
  box-shadow: 0 0 10px #ff883355;
}
.hero-card_title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.hero-card_meta {
  display: flex;
  gap: 12px;
  font-size: 16px;
  color: #ccc;
  font-family: var(--font-heading);
  font-weight: 500;
}
.hero-card_platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 460px), 1fr));
  gap: 26px;
  min-width: 0;
}


.card {
  display: flex;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--round-xl);
  overflow: hidden;
  transition: var(--effect);
  min-height: 288px;
}
.card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-neon);
  box-shadow:
    0 0 12px var(--neon-glow-subtle),
    0 0 35px var(--neon-glow-xs),
    0 6px 24px #00000055;
}


.card_feat {
  position: relative;
  width: 200px;
  flex-shrink: 0;
  background: #000;
  overflow: hidden;
}
.card_imgLink {
  display: block;
  width: 100%;
  height: 100%;
}
.card_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--timing);
}
.card:hover .card_img {
  transform: scale(1.06);
}


.card_badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--round-sm);
  color: var(--text-dark);
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
  z-index: 2;
}
.card_badge.is-upcoming {
  background: var(--live);
  box-shadow: 0 0 8px #ff883355;
}
.card_badge.is-available,
.hero-card_badge.is-available {
  background: var(--success);
  box-shadow: 0 0 10px #44dd8844;
  color: #04160b;
}
.card_badge.is-unavailable,
.hero-card_badge.is-unavailable {
  background: var(--danger);
  box-shadow: 0 0 10px #ff444444;
  color: #1a0606;
}


.card_typeBadge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  color: var(--neon-light);
  background: #0c0c0ecc;
  border: 1px solid var(--border-neon);
  z-index: 2;
}


.card_body {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.card_title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
}
.card_titleLink {
  transition: var(--effect);
}
.card_titleLink:hover {
  color: var(--neon-light);
  text-shadow: 0 0 10px var(--neon-glow-subtle);
}
.card_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.card_year {
  background: var(--neon-glow-xs);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.card_age {
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.card_age.is-online {
  background: #44dd8820;
  border: 1px solid #44dd8840;
  color: var(--success);
}
.card_age.is-upcoming {
  background: #ff883320;
  border: 1px solid #ff883340;
  color: var(--live);
}
.card_age.is-unknown {
  background: var(--neon-glow-xs);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tool-card-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
}
.tool-card-grid .card {
  flex-direction: row;
  align-items: center;
  min-height: 160px;
}
.tool-card-grid .card_img-wrap {
  width: 140px;
  height: auto;
  align-self: stretch;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border-neon);
}
.tool-card-grid .card_body {
  justify-content: center;
}
@media (max-width: 600px) {
  .tool-card-grid .card {
    flex-direction: column;
  }
  .tool-card-grid .card_img-wrap {
    width: 100%;
    height: 240px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.card_platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card_extra {
  margin-top: auto;
  padding-top: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.movie-status-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  flex: 1;
}

.movie-status {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 1000;
  margin-bottom: 0;
  text-align: left;
}

.movie-status.is-pending {
  font-weight: 600;
  color: var(--text-muted);
}
.movie-status.is-inconclusive {
  color: var(--warning);
}

.spacer {
  width: 20px;
  visibility: hidden;
}

.arrow {
  width: 20px;
  text-align: right;
}

.redirect-btn,
.tmdb-page-btn {
  appearance: none;
  background: var(--neon-glow-xs);
  border: 1px solid var(--border-neon);
  color: var(--neon-light);
  border-radius: var(--round-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 44px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  text-decoration: none;
}

.card_action-btns,
.hero-card_action-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}

.card_action-btns {
  max-width: 190px;
}

.hero-card_action-btns {
  max-width: 100%;
}

.redirect-btn:hover,
.tmdb-page-btn:hover {
  background: var(--neon);
  color: var(--text-dark);
  border-color: var(--neon);
  box-shadow: 0 0 12px var(--neon-glow);
  transform: translateY(-1px);
}

.tmdb-page-btn {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}





.hero-card_footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.hero-card_status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.hero-card_movie-status {
  font-family: var(--font-heading);
  font-weight: 1000;
  font-size: 20px;
  line-height: 1.35;
  color: #ddd;
  text-align: center;
}

.hero-card_movie-status.is-pending {
  color: #aaa;
  font-weight: 600;
}

.hero-card_movie-status.is-inconclusive {
  color: var(--warning);
}

.hero-card_movie-status.found {
  color: var(--success);
}

.hero-card_movie-status.not-found {
  color: var(--danger);
}

.hero-card_action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  min-height: 150px;
  justify-content: flex-end;
}



.trailer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  appearance: none;
  background: var(--neon-glow-xs);
  color: var(--neon-light);
  border: 1px solid var(--border-neon);
  padding: 12px 16px;
  border-radius: var(--round-sm);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
  min-height: 44px;
  width: 100%;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.05);
  text-decoration: none;
  text-shadow: none;
  text-align: center;
}

.trailer-spacer {
  width: 16px;
  visibility: hidden;
  flex-shrink: 0;
}

.trailer-text-wrap {
  text-align: center;
}


.trailer-btn:hover {
  background: #dc2626; 
  border-color: #ef4444; 
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
  color: #fff;
}

.trailer-btn-hero {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--round-md);
}

.movie-status.found {
  color: var(--success);
  text-shadow: 0 0 8px #44dd8840;
}

.movie-status.not-found {
  color: var(--danger);
  text-shadow: 0 0 8px #ff444440;
}

.search-tips {
  background: var(--surface-3);
  padding: 14px;
  border-radius: var(--round-md);
  border: 1px solid var(--border-neon);
  font-family: var(--font-body);
  font-size: 15px;
  margin-top: 8px;
}

.search-tips_label {
  display: block;
  font-weight: 700;
  color: var(--neon-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.search-tips_query {
  display: block;
  color: var(--text-secondary);
  font-style: italic;
  font-family: 'Courier New', Courier, monospace;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--round-md);
  border: 1px solid var(--border);
  background: var(--neon-glow-xs);
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: var(--effect);
  white-space: nowrap;
}
.platform-pill:hover {
  border-color: var(--neon);
  background: var(--neon-glow-subtle);
  color: var(--neon-light);
  box-shadow: 0 0 10px var(--neon-glow-subtle);
}
.platform-pill_logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
}


.empty-state {
  padding: 36px;
  border: 1px dashed var(--border-neon);
  border-radius: var(--round-xl);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  background: var(--neon-glow-xs);
}


.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--round-lg);
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


.footer {
  margin-top: 50px;
  background: #09090b;
  border-top: 2px solid var(--neon);
  box-shadow: 0 -4px 20px var(--neon-glow-subtle), 0 -2px 50px var(--neon-glow-xs);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--text-muted) 0.5px, transparent 0.5px);
  background-size: 18px 18px;
  opacity: 0.03;
  pointer-events: none;
}
.footer_top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 52px 28px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  position: relative;
}
.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer_desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
}
.footer_links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer_linksTitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--neon-light);
  margin-bottom: 4px;
  text-shadow: 0 0 10px var(--neon-glow-subtle);
}
.footer_link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  transition: var(--effect);
}
.footer_link:hover {
  color: var(--neon-light);
  text-shadow: 0 0 8px var(--neon-glow-subtle);
}
.footer_bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.footer_copy {
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.65;
}
.footer_tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--neon-dim);
  letter-spacing: 0.02em;
}


.news-page {
  min-height: 45vh;
}
.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 920px;
}
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--round-xl);
  padding: 26px 30px;
  transition: var(--effect);
}
.news-card:hover {
  border-color: var(--border-neon);
  box-shadow: 0 0 18px var(--neon-glow-subtle), 0 8px 28px #00000055;
}
.news-card_meta {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.news-card_title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
}
.news-card_title a {
  color: var(--text);
  transition: var(--effect);
}
.news-card_title a:hover {
  color: var(--neon-light);
  text-shadow: 0 0 12px var(--neon-glow-subtle);
}





@media (max-width: 1380px) {
  :root {
    --nav-height: 60px;
  }
  .noticebar_text { font-size: 12px; }
  .nav { display: none; }
  .hero_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 180px;
  }
  .card_feat {
    width: 120px;
  }
  .section-heading_title { font-size: 26px; }
  .hero-card_feat {
    padding-bottom: 150%;
  }
  .hero-card_title { font-size: 18px; }
  .hero-card_overlay { padding: 12px; }
  .footer_top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer_bottom {
    flex-direction: column;
    text-align: center;
  }
  .searchRow {
    flex-direction: column;
    align-items: stretch;
  }
  .searchRow_input { min-width: 0; }
  .logo_title { font-size: 20px; }
  .section-wrap { padding: 0 10px; }
  .header_inner { padding: 0 10px; }
  .searchDropdown_inner { padding: 12px 10px; }
}
@media (max-width: 480px) {
  .hero_grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-card_title { font-size: 15px; }
  .hero-card_meta { display: none; }
  .card_body { padding: 12px 14px; }
  .card_title { font-size: 18px; }
  .news-card { padding: 20px 22px; }
  .news-card_title { font-size: 19px; }
}
