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

body {
  font-family: Arial, sans-serif;
  color: white;
  background: #000;
}

/* VIDEO BG */
.bg-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #222;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* BUTTON */
.btn {
  background: white;
  color: black;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  font-weight: bold;
}

.btn:hover {
  transform: scale(1.05);
  background: #ddd;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 40px;
}

.card {
  background: #111;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 20px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #444;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #aaa;
}

/* PRO */
.pro-section {
  text-align: center;
  padding: 80px 20px;
}

.pro-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.pro-desc {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 30px;
}

.video-wrapper {
  position: relative;
}

.video-wrapper video {
  width: 90%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.key-input {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  min-width: 260px;
}

.temp-admin {
  text-align: center;
  margin: 20px;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  width: 320px;
  transform: scale(0.8);
  transition: 0.3s;
  border: 1px solid #222;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-content h2 {
  margin-bottom: 10px;
}

/* OPTION BUTTON */
.option {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  border: none;
  background-size: cover;
  background-position: center;
  transition: 0.2s;
}

.option::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.option:hover {
  transform: scale(1.03);
}

.option-text {
  position: relative;
  z-index: 2;
  text-align: left;
}

.option-title {
  font-weight: bold;
  margin-bottom: 4px;
}

.option-desc {
  font-size: 12px;
  color: #ccc;
}

.option.unity {
  background-image: url("../images/code.gif");
}

.option.texture {
  background-image: url("../images/texture.gif");
}

.option.systems {
  background-image: url("../images/systems.gif");
}

.option.ui {
  background-image: url("../images/ui.gif");
}

.option.unity:hover {
  box-shadow: 0 0 25px #00ffff;
}

.option.texture:hover {
  box-shadow: 0 0 25px orange;
}

.option.systems:hover {
  box-shadow: 0 0 25px #a855f7;
}

.option.ui:hover {
  box-shadow: 0 0 25px #38bdf8;
}

   .paypal-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 20px;
    }

    .pp-WFBGRRB4TKVQ4 {
      text-align: center;
      border: none;
      border-radius: 0.25rem;
      min-width: 11.625rem;
      padding: 0 2rem;
      height: 2.625rem;
      font-weight: bold;
      background-color: #FFD140;
      color: #000000;
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 1rem;
      line-height: 1.25rem;
      cursor: pointer;
    }
    /* DOWNLOAD SECTION */
.download-section {
  text-align: center;
  padding: 80px 20px;
}

.download-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.download-section p {
  color: #aaa;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 25px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

/* WINDOWS */
.download-btn.windows {
  background: #0078d6;
  color: white;
}

.download-btn.windows:hover {
  background: #0090ff;
  box-shadow: 0 0 20px #0078d6;
  transform: scale(1.05);
}

/* ANDROID */
.download-btn.android {
  background: #3ddc84;
  color: black;
}

.download-btn.android:hover {
  background: #5fff9f;
  box-shadow: 0 0 20px #3ddc84;
  transform: scale(1.05);
}
/* ICON */
.icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* CODY GLOW */
.cody {
  background: #00d4ff;
  color: black;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  font-weight: bold;

  position: relative;
  overflow: hidden;

  /* GLOW */
  box-shadow: 0 0 10px #00d4ff;
  animation: codyGlow 2s infinite;
}

/* ANIMAȚIE PULSE */
@keyframes codyGlow {
  0% {
    box-shadow: 0 0 10px #00d4ff;
  }
  50% {
    box-shadow: 0 0 25px #00d4ff, 0 0 50px #00d4ff;
  }
  100% {
    box-shadow: 0 0 10px #00d4ff;
  }
}

/* ⚡ ENERGY LINE */
.cody::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );
  transform: skewX(-20deg);
}

/* ANIMAȚIE LINE */
.cody:hover::before {
  animation: energyLine 0.7s forwards;
}

@keyframes energyLine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* HOVER BOOST */
.cody:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #00d4ff, 0 0 60px #00d4ff, 0 0 90px #00d4ff;
}

/* =========================
   SCANNER SECTION
========================= */

.scanner-section {
  text-align: center;
  padding: 80px 20px;
}

.scanner-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.scanner-section p {
  color: #aaa;
  margin-bottom: 25px;
}

#scriptFile {
  background: #111;
  color: white;
  border: 1px solid #333;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  max-width: 350px;
  width: 100%;
}

#scriptFile:hover {
  border-color: #00d4ff;
}

.scan-results {
  margin-top: 30px;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;

  background: rgba(10,10,10,.75);
backdrop-filter: blur(18px);
border: 1px solid rgba(255,255,255,.08);

  
  border-radius: 20px;

  padding: 25px;

  text-align: left;

  white-space: pre-wrap;
  word-break: break-word;

  line-height: 1.7;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);

  display: none;
}

.scan-results.active {
  display: block;
}

/* =========================
   RESULT UI V2
========================= */

.scan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-bottom: 25px;
  padding-bottom: 20px;

  border-bottom: 1px solid #222;
}

.scan-file {
  color: #888;
  margin-top: 5px;
}

.score-circle {
  width: 90px;
  height: 90px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: bold;

  border: 4px solid #22c55e;

  background: rgba(255,255,255,.03);

  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(34,197,94,.25);
}

.scan-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));

  gap: 15px;

  margin-bottom: 25px;
}

.stat-card {
  background: #181818;
  border: 1px solid #2a2a2a;

  border-radius: 16px;

  padding: 20px;
  text-align: center;

  transition: .25s;
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: #444;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
}

.stat-label {
  color: #888;
  margin-top: 5px;
}

.issue {
  background: #181818;

  border-radius: 16px;

  padding: 18px;

  margin-bottom: 15px;

  transition: .25s;
}

.issue:hover {
  transform: translateY(-2px);
}

.issue-warning {
  border-left: 5px solid #facc15;
}

.issue-danger {
  border-left: 5px solid #ef4444;
}

.issue-info {
  border-left: 5px solid #38bdf8;
}

.issue-title {
  font-size: 18px;
  font-weight: bold;

  margin-bottom: 8px;
}

.issue-line {
  color: #888;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;

  padding: 5px 10px;

  border-radius: 999px;

  font-size: 12px;
  font-weight: bold;

  margin-bottom: 10px;
}

.badge-warning {
  background: rgba(250,204,21,.15);
  color: #facc15;
}

.badge-danger {
  background: rgba(239,68,68,.15);
  color: #ef4444;
}

.badge-info {
  background: rgba(56,189,248,.15);
  color: #38bdf8;
}
.score-circle {
  transition: all .3s ease;
}

.score-circle:hover {
  transform: scale(1.08);
}

.scan-results {
  animation: fadeInUp .4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .scan-header {
    flex-direction: column;
    text-align: center;
  }

  .score-circle {
    width: 75px;
    height: 75px;
    font-size: 20px;
  }

  .scan-stats {
    grid-template-columns: 1fr;
  }

}
/* =========================
   DRAG & DROP
========================= */

.drop-zone {
  max-width: 600px;

  margin: 0 auto 20px;

  padding: 40px;

  border: 2px dashed rgba(255,255,255,.15);

  border-radius: 20px;

  background: rgba(255,255,255,.03);

  backdrop-filter: blur(10px);

  cursor: pointer;

  transition: .25s;
}

.drop-zone:hover {
  border-color: #00d4ff;

  box-shadow: 0 0 25px rgba(0,212,255,.15);
}

.drop-zone.dragover {
  border-color: #00d4ff;

  background: rgba(0,212,255,.08);

  transform: scale(1.02);
}

.drop-icon {
  font-size: 48px;

  margin-bottom: 15px;
}

.drop-zone h3 {
  margin-bottom: 10px;
}

.drop-zone p {
  color: #888;
}
.profile-section {
  padding: 60px 20px;
}

.profile-card {
  max-width: 700px;

  margin: auto;

  text-align: center;

  background: rgba(255,255,255,.04);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 25px;

  padding: 40px;
}

.profile-avatar {
  width: 120px;
  height: 120px;

  border-radius: 50%;

  object-fit: cover;

  border: 4px solid #00d4ff;

  margin-bottom: 20px;
}

.profile-plan {
  display: inline-block;

  margin-top: 10px;

  padding: 8px 16px;

  border-radius: 999px;

  background: rgba(0,212,255,.15);

  color: #00d4ff;
}

.profile-stats {
  display: flex;

  justify-content: center;

  gap: 40px;

  margin-top: 30px;
}

.profile-stat h3 {
  font-size: 28px;
}
.header-avatar {
  width: 30px;
  height: 30px;

  border-radius: 50%;
  object-fit: cover;

  cursor: pointer;

  border: 2px solid #00d4ff;

  transition: .25s;
}

.header-avatar:hover {
  transform: scale(1.1);

  box-shadow:
    0 0 15px #00d4ff;
}