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

body {
  position: relative;
  font-family: 'Orbitron', 'Inter', sans-serif;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
}

/* Layout Container */
.container {
  position: absolute;
  top: 20vh;
  bottom: 5vh;
  left: 0;
  right: 0;
  display: flex;
  padding: 2vw;
  gap: 1.5vw;
  justify-content: center;
  max-width: 90vw;
  margin: 0 auto;
}

.left {
  flex: 0.1;
  max-height: 75vh;
  overflow-y: auto;
}

.center {
  flex: 0.7;
}

.right {
  flex: 0.1;
  max-height: 25vh;
  margin-top: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel {
  background: #000810;
  opacity: 1;
  padding: 1.5vw;
  border-radius: 0.8vw;
}

/* Left Panel */
.left hr {
  border: none;
  border-top: 1px solid #35f9fb33;
  margin: 1rem 0;
}

.left h2,
.center h2,
.right h2 {
  color: #35f9fb;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.panel p,
.panel pre {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Back to Home Button */
.back-to-home {
  width: clamp(80px, 8vw, 100px);
  height: auto;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
}

.back-to-home:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px #d468e0;
}

/* Center Panel Target Entries */
.panel.center {
  flex: 1.5;
  padding: 1rem;
  min-width: 0;
  max-width: 800px;
  overflow-y: auto;
  overflow-x: hidden;
}

.panel.center .target-entry {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
}

.target-entry-wrapper {
  padding: 0.25rem;
  overflow: visible;
}

.panel.center .target-entry:hover {
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 0 10px 3px var(--glow-color, #0ff);
  background: rgba(0, 0, 0, 0.6);
}

.panel.center {
  overflow: visible;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.panel.center .target-entry:hover {
  background: rgba(255, 255, 255, 0.05);
}

.panel.center .target-name {
  all: unset;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #17c9e2;
  transition: text-shadow 0.2s;
}

.panel.center .target-name:hover {
  text-shadow: 0 0 6px #17c9e2;
}

.panel.center .LEO .target-tag {
  background: #00cc00;
}

.panel.center .target-entry.impersonator .target-tag,
.panel.center .target-entry.cheat .target-tag {
  color: #111;
}

.panel.center .target-entry.cheat .target-name {
  color: #bd51ea;
}

.panel.center .target-entry.cheat .target-name:hover {
  text-shadow: 0 0 6px #bd51ea;
}

/* Color-coded tags */
.panel.center .target-tag {
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  margin-left: 1rem;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid #d468e0;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}

.filter-btn:hover {
  box-shadow: 0 0 10px #d468e0;
  background-color: rgba(212, 104, 224, 0.1);
}

/* Report Terminal */
.report-terminal {
  font-family: monospace;
  background: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  color: #7e9a5e;
  margin-top: 1rem;
  border: 1px solid #7e9a5e;
}

.report-terminal button,
.report-terminal a {
  display: block;
  margin-top: 0.5rem;
  background: none;
  border: 1px solid #35f9fb;
  color: white;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}

.report-terminal button:hover,
.report-terminal a:hover {
  background-color: rgba(53, 249, 251, 0.1);
  box-shadow: 0 0 10px #35f9fb;
}

/* Header */
.page-header {
  position: fixed;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
  font-family: 'Orbitron', 'Inter', sans-serif;
  user-select: none;
  max-width: 50vw;
  padding: 1rem;
}

.page-header h1 {
  color: #88edfa;
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  margin-bottom: 0.5rem;
  animation: fadeInUp 1.2s ease-out;
  text-shadow: 0 0 10px #88edfa, 0 0 20px #235b7d;
}

.page-header .subtitle {
  color: #a8b0b4;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.page-header .small-title {
  color: #479ba5;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Button Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

.Btn {
  width: clamp(80px, 6vw, 100px);
  height: clamp(30px, 2.5vw, 35px);
  background-color: rgb(65, 64, 64);
  border: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.342);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
  transition-duration: 0.5s;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
}

.Btn:hover {
  background-color: #d468e0;
  box-shadow: 3px 3px 10px rgba(212, 104, 224, 0.7);
}

.Btn .text {
  color: white;
  font-weight: 600;
  user-select: none;
}

.Btn .effect {
  position: absolute;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
  width: 30px;
  height: 100%;
  top: 0;
  left: -40px;
  transform: skewX(-20deg);
  animation: btn-effect 2.5s infinite;
  opacity: 0.8;
  border-radius: 0 2px 2px 0;
}

@keyframes btn-effect {
  0% {
    left: -40px;
  }
  100% {
    left: 120%;
  }
}

.Btn .svgIcon {
  fill: white;
  stroke: white;
  width: clamp(14px, 1.2vw, 16px);
  height: clamp(14px, 1.2vw, 16px);
  user-select: none;
  pointer-events: none;
  transition: fill 0.3s, stroke 0.3s;
}

.Btn:hover .svgIcon {
  fill: white;
  stroke: white;
}

/* Target Card */
.target-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid #0ff;
  border-radius: 0.8rem;
  color: #35f9fb;
  padding: 1rem 1.2rem;
  margin: 0.6rem 0;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-align: left;
  text-shadow: 0 0 4px #00f2ff;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.target-card:hover {
  background: rgba(10, 10, 10, 0.95);
  border-color: #ff00cc;
  color: #ff00cc;
  box-shadow: 0 0 12px #ff00cc80;
  transform: scale(1.02);
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #35f9fb40, transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease-in-out;
}

.target-card:hover::before {
  left: 125%;
}

/* Credits Footer */
#credits-footer {
  position: fixed;
  bottom: 1vh;
  right: 1vw;
  font-size: clamp(0.7rem, 0.8vw, 0.75rem);
  color: #00ffffc0;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.5rem 0.8rem;
  border: 1px solid #00ffff55;
  border-radius: 0.6rem;
  box-shadow: 0 0 8px #00ffff88;
  font-style: italic;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  animation: fadeInCredits 1.5s ease-out 2s forwards;
  backdrop-filter: blur(3px);
}

@keyframes fadeInCredits {
  to {
    opacity: 1;
  }
}

.target-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-x: hidden;
  padding-right: 4px;
}

.target-list button {
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #00ffffcc, #0088ffcc);
  border-radius: 10px;
  box-shadow: 0 0 6px #00ffff88;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg, #00ffff, #0077ff);
  box-shadow: 0 0 8px #00ffff;
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media screen and (max-width: 1920px) {
  .container {
    top: 18vh;
    bottom: 4vh;
    padding: 1.5vw;
    gap: 1vw;
    max-width: 95vw;
  }

  .page-header {
    top: 4vh;
    max-width: 60vw;
  }

  .page-header h1 {
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  }

  .left, .right {
    flex: 0.12;
  }

  .center {
    flex: 0.72;
  }

  .back-to-home {
    width: clamp(75px, 7.5vw, 95px);
  }

  .Btn {
    width: clamp(75px, 5.5vw, 90px);
    height: clamp(28px, 2.3vw, 32px);
    font-size: clamp(0.65rem, 0.75vw, 0.75rem);
  }

  .Btn .svgIcon {
    width: clamp(12px, 1vw, 14px);
    height: clamp(12px, 1vw, 14px);
  }
}

@media screen and (max-width: 1440px) {
  .container {
    top: 15vh;
    bottom: 3vh;
    padding: 1vw;
    gap: 0.8vw;
  }

  .panel {
    padding: 1vw;
    border-radius: 0.6vw;
  }

  .left {
    max-height: 70vh;
  }

  .right {
    max-height: 20vh;
    margin-top: 1.5vh;
  }

  .center {
    flex: 0.74;
  }

  .back-to-home {
    width: clamp(70px, 7vw, 90px);
  }

  .Btn {
    width: clamp(70px, 5vw, 85px);
    height: clamp(26px, 2.2vw, 30px);
    font-size: clamp(0.6rem, 0.7vw, 0.7rem);
  }

  .Btn .svgIcon {
    width: clamp(10px, 0.9vw, 12px);
    height: clamp(10px, 0.9vw, 12px);
  }
}

@media screen and (max-width: 900px) {
  .container {
    flex-direction: column;
    top: 12vh;
    bottom: 2vh;
    padding: 1rem;
    max-width: 100vw;
    gap: 1rem;
  }

  .left, .center, .right {
    flex: 1;
    max-height: none;
    margin-top: 0;
  }

  .panel {
    width: 100%;
    padding: 1.5rem;
  }

  .panel.center {
    flex: 1;
    padding: 1.5rem;
    overflow: visible;
    z-index: 2;
  }

  #searchInput {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #35f9fb;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .target-button {
    display: block;
    width: 100%;
    margin: 0.3rem 0;
    padding: 1rem;
    border: 1px solid #d468e0;
    background: rgba(212, 104, 224, 0.1);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .target-button:hover {
    box-shadow: 0 0 8px #d468e0;
    background-color: rgba(212, 104, 224, 0.2);
  }

  .back-to-home {
    width: clamp(80px, 20vw, 100px);
  }

  .Btn {
    width: clamp(80px, 20vw, 100px);
    height: clamp(30px, 8vw, 35px);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
  }

  .Btn .svgIcon {
    width: clamp(12px, 3vw, 14px);
    height: clamp(12px, 3vw, 14px);
  }
}

@media screen and (max-width: 600px) {
  .container {
    top: 10vh;
    padding: 0.5rem;
  }

  .page-header {
    top: 2vh;
    max-width: 90vw;
  }

  .page-header h1 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
  }

  .panel.center #targetButtons {
    grid-template-columns: 1fr;
  }

  .hidden {
    display: none;
  }

  .report-toggle {
    margin-top: 1rem;
  }

  .reveal-prompt {
    background: none;
    border: 1px solid #35f9fb;
    color: #35f9fb;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  }

  .reveal-prompt:hover {
    background-color: rgba(53, 249, 251, 0.1);
    box-shadow: 0 0 10px #35f9fb;
  }

  .back-to-home {
    width: clamp(70px, 18vw, 90px);
  }

  .Btn {
    width: clamp(70px, 18vw, 90px);
    height: clamp(28px, 7vw, 32px);
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
  }

  .Btn .svgIcon {
    width: clamp(10px, 2.5vw, 12px);
    height: clamp(10px, 2.5vw, 12px);
  }
}

/* Button Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

.Btn {
  width: clamp(30px, 15vw, 40px);
  height: clamp(24px, 6vw, 28px);
  background-color: rgb(65, 64, 64);
  border: none;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.342);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
  transition-duration: 0.5s;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
}

.Btn .svgIcon {
  fill: white;
  stroke: white;
  width: clamp(8px, 2vw, 10px);
  height: clamp(8px, 2vw, 10px);
  user-select: none;
  pointer-events: none;
  transition: fill 0.3s, stroke 0.3s;
}

.Btn:hover {
  background-color: #d468e0;
  box-shadow: 5px 5px 15px rgba(212, 104, 224, 0.7);
}

.Btn .text {
  color: white;
  font-weight: 600;
  user-select: none;
}

.Btn .effect {
  position: absolute;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.22) 0%, transparent 60%);
  width: 40px;
  height: 100%;
  top: 0;
  left: -50px;
  transform: skewX(-20deg);
  animation: btn-effect 2.5s infinite;
  opacity: 0.8;
  border-radius: 0 2px 2px 0;
}

@keyframes btn-effect {
  0% {
    left: -50px;
  }
  100% {
    left: 120%;
  }
}

.Btn .svgIcon {
  fill: white;
  stroke: white;
  width: 20px;
  height: 20px;
  user-select: none;
  pointer-events: none;
  transition: fill 0.3s, stroke 0.3s;
}

/* Hover icon color change */
.Btn:hover .svgIcon {
  fill: white;
  stroke: white;
}
.target-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid #0ff;
  border-radius: 12px;
  color: #35f9fb;
  padding: 16px 20px;
  margin: 10px 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  text-align: left;
  text-shadow: 0 0 4px #00f2ff;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.target-card:hover {
  background: rgba(10, 10, 10, 0.95);
  border-color: #ff00cc;
  color: #ff00cc;
  box-shadow: 0 0 12px #ff00cc80;
  transform: scale(1.02);
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #35f9fb40, transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease-in-out;
}

.target-card:hover::before {
  left: 125%;
}
#credits-footer {
  position: fixed;
  bottom: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-family: 'Orbitron', sans-serif; /* Adjust if you're using another font */
  color: #00ffffc0; /* Neon cyan with transparency */
  background: rgba(0, 0, 0, 0.55); /* translucent dark */
  padding: 6px 12px;
  border: 1px solid #00ffff55;
  border-radius: 12px;
  box-shadow: 0 0 8px #00ffff88;
  font-style: italic;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  animation: fadeInCredits 1.5s ease-out 2s forwards;
  backdrop-filter: blur(3px); /* optional: softens background */
}

@keyframes fadeInCredits {
  to {
    opacity: 1;
  }
}

.panel.center {
  overflow: visible;         /* Let the hover grow outside */
  padding: 1rem;             /* Give extra space inside */
  display: flex;
  flex-direction: column;
  align-items: center;       /* Center the cards horizontally */
}

.target-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-x: hidden;
  padding-right: 4px; /* room for vertical scrollbar */
}

.target-list button {
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
/* Scrollbar Track */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Scrollbar Track Background */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

/* Scrollbar Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #00ffffcc, #0088ffcc);
  border-radius: 10px;
  box-shadow: 0 0 6px #00ffff88;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg, #00ffff, #0077ff);
  box-shadow: 0 0 8px #00ffff;
}

/* Optional: make the corner area styled too (where vertical & horizontal bars meet) */
::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.2);
}

@keyframes fadeInCredits {
  to {
    opacity: 1;
  }
}

