body {
  background: radial-gradient(circle at top right, #0A192F 0%, #020C1B 100%);
  color: #E6F1FF;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.03) 0%, transparent 60%);
  top: -50%;
  left: -50%;
  animation: rotateSky 60s linear infinite;
  pointer-events: none;
}

@keyframes rotateSky {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.wrap {
  width: 100%;
  max-width: 550px;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.panel {
  background: rgba(17, 34, 64, 0.6);
  border: 1px solid rgba(100, 255, 218, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(2, 12, 27, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Scrollbar Styles for the panel */
.panel::-webkit-scrollbar {
  width: 8px;
}

.panel::-webkit-scrollbar-track {
  background: rgba(10, 25, 47, 0.5);
  border-radius: 10px;
}

.panel::-webkit-scrollbar-thumb {
  background: rgba(100, 255, 218, 0.3);
  border-radius: 10px;
}

.panel::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 255, 218, 0.5);
}

.hidden {
  display: none !important;
}

h1 {
  color: #64FFDA;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

h2 {
  color: #CCD6F6;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}

input {
  width: calc(100% - 32px);
  padding: 16px;
  margin-bottom: 25px;
  background-color: rgba(10, 25, 47, 0.8);
  border: 2px solid rgba(100, 255, 218, 0.2);
  border-radius: 12px;
  color: #64FFDA;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(2, 12, 27, 0.5);
}

input:focus {
  border-color: #64FFDA;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.2), inset 0 2px 5px rgba(2, 12, 27, 0.5);
}

input::placeholder {
  color: #495670;
  letter-spacing: normal;
  font-weight: 400;
}

button {
  background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 100%;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.4);
  position: relative;
  overflow: hidden;
}

button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
  background: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
}

button:hover::after {
  left: 200%;
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  background: #495670;
  color: #8892B0;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

button:disabled::after {
  display: none;
}

button.muted {
  background: transparent;
  border: 1px solid rgba(136, 146, 176, 0.4);
  color: #8892B0;
  box-shadow: none;
}

button.muted:hover {
  background: rgba(136, 146, 176, 0.1);
  border-color: #CCD6F6;
  color: #E6F1FF;
}

.row {
  margin-top: 25px;
}

.hint {
  margin-top: 20px;
  color: #FF6B6B;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid #FF6B6B;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none;
  animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hint.show {
  display: block;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-10px);
  }

  50% {
    opacity: 1;
    transform: scale(1.02) translateY(5px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

.game-image {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(2, 12, 27, 0.6);
  border: 2px solid rgba(100, 255, 218, 0.15);
  transition: transform 0.3s ease;
}

.game-image:hover {
  transform: scale(1.02);
  border-color: rgba(100, 255, 218, 0.4);
}

.game-image-placeholder {
  width: 100%;
  height: 160px;
  background-color: rgba(17, 34, 64, 0.5);
  border: 2px dashed rgba(100, 255, 218, 0.3);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: #8892B0;
  font-weight: 500;
  font-size: 16px;
}

#accList {
  margin-bottom: 35px;
  text-align: left;
}

.acc-row {
  background-color: rgba(10, 25, 47, 0.7);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 12, 27, 0.4);
  transition: all 0.3s ease;
}

.acc-row:hover {
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 8px 25px rgba(2, 12, 27, 0.6);
}

.acc-head {
  background: linear-gradient(90deg, #112240 0%, #0A192F 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #64FFDA;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.acc-logo {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.acc-body {
  padding: 18px;
}

.acc-item {
  margin-bottom: 12px;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 10px;
  background-color: rgba(17, 34, 64, 0.4);
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.acc-item:last-child {
  margin-bottom: 0;
}

.acc-item:hover {
  background-color: rgba(30, 58, 138, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(4px);
}

.acc-item::after {
  content: "Kopyala";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  background: #3B82F6;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.acc-item:hover::after {
  opacity: 1;
  right: 20px;
}

.acc-item small {
  display: block;
  color: #8892B0;
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.acc-item span {
  display: block;
  color: #E6F1FF;
  font-size: 16px;
  font-weight: 500;
  word-break: break-all;
}

.guard {
  margin-top: 30px;
  font-size: 42px;
  font-weight: 800;
  color: #60A5FA;
  letter-spacing: 8px;
  text-shadow: 0 0 25px rgba(59, 130, 246, 0.6), 0 0 10px rgba(59, 130, 246, 0.4);
  padding: 24px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  border-radius: 16px;
  border: 2px solid rgba(59, 130, 246, 0.4);
  display: none;
  animation: pulseBlue 1.5s infinite alternate;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.guard.show {
  display: block;
}

@keyframes pulseBlue {
  from {
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1), 0 0 10px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
  }

  to {
    box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.2), 0 0 30px rgba(59, 130, 246, 0.5);
    border-color: rgba(96, 165, 250, 0.8);
  }
}

.cf-turnstile {
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

/* --- Added UI Enhancements --- */
.header-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #64FFDA;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.key-icon {
  width: 32px;
  height: 32px;
}

.subtitle {
  color: #8892B0;
  font-size: 15px;
  margin-top: -15px;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 400;
}

/* Animated Light Orbs */
.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  opacity: 0.4;
  animation: floatOrb 10s infinite ease-in-out alternate;
  pointer-events: none;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: #1D4ED8;
  top: -100px;
  left: -100px;
  animation-duration: 12s;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(100, 255, 218, 0.5);
  bottom: -150px;
  right: -100px;
  animation-duration: 15s;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #8B5CF6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
  animation-delay: -2s;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(40px, -60px, 0) scale(1.1);
  }
}

/* Toast Notification (Kopyalandı Bilgisi İçin) */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
}

.toast {
  background: rgba(100, 255, 218, 0.15);
  border: 1px solid rgba(100, 255, 218, 0.4);
  color: #64FFDA;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: toastEnter 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  will-change: transform, opacity;
}

.toast.fade-out {
  animation: toastLeave 0.4s ease forwards;
}

@keyframes toastEnter {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toastLeave {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
}