/* ===============================
   RESET + BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(1200px 600px at 10% -10%, #1e3a8a33, transparent),
        radial-gradient(900px 500px at 90% 10%, #7c3aed22, transparent),
        linear-gradient(180deg, #020617, #020617);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   WRAPPER
================================ */
.wrap {
    width: 100%;
    max-width: 520px;
    padding: 20px;
}

/* ===============================
   PANEL
================================ */
.panel {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 42px 36px;
    box-shadow:
        0 30px 80px rgba(0,0,0,.6),
        inset 0 0 0 1px rgba(255,255,255,.06);
    animation: panelIn .45s ease;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hidden {
    display: none;
}

/* ===============================
   HEADINGS
================================ */
.panel h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.panel h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}

/* ===============================
   INPUT
================================ */
input {
    width: 100%;
    padding: 16px 18px;
    margin-top: 22px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: .25s;
}

input::placeholder {
    color: #9ca3af;
    letter-spacing: 1px;
}

input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.25);
}

/* ===============================
   ROW + BUTTONS
================================ */
.row {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

button {
    flex: 1;
    padding: 15px 18px;
    border-radius: 14px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    transition: .25s;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(99,102,241,.45);
}

button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

button.muted {
    background: rgba(255,255,255,.08);
    color: #e5e7eb;
}

button.muted:hover {
    box-shadow: none;
    transform: none;
}

/* ===============================
   HINT / INFO
================================ */
.hint {
    margin-top: 14px;
    font-size: 14px;
    color: #93c5fd;
    min-height: 18px;
}

/* ===============================
   ACCOUNT LIST
================================ */
#accList {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.acc-row {
    background: rgba(255,255,255,.04);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
    transition: .25s;
}

.acc-row:hover {
    background: rgba(255,255,255,.07);
}

.acc-head {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: #c7d2fe;
}

.acc-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-item {
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0,0,0,.35);
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
    user-select: none;
}

.acc-item:hover {
    background: rgba(99,102,241,.25);
}

/* ===============================
   GUARD CODE
================================ */
.guard {
    margin-top: 24px;
    padding: 22px;
    border-radius: 18px;
    background: radial-gradient(circle at top, #6366f133, #020617);
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 10px;
    color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.08),
        0 20px 60px rgba(0,0,0,.6);
    animation: guardPop .4s ease;
}

@keyframes guardPop {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 520px) {
    .panel {
        padding: 32px 24px;
    }

    .guard {
        font-size: 34px;
        letter-spacing: 6px;
    }
}





/* ======================
   HESAP KUTULARI
====================== */
.acc-row {
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.acc-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}

.acc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.acc-logo {
  width: 42px;
  height: 42px;
  background-size: contain;
  background-repeat: no-repeat;
}

.acc-body {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 14px;
}

.acc-item {
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
}

.acc-item small {
  display: block;
  font-size: 12px;
  opacity: .6;
  margin-bottom: 4px;
}

.acc-item span {
  font-size: 15px;
  word-break: break-all;
}

/* ======================
   PLATFORM RENKLERİ
====================== */

/* 🔵 STEAM */
.acc-steam {
  background: linear-gradient(135deg,#0f172a,#020617);
  border-color: #1e293b;
}
.acc-steam .acc-logo {
  background-image: url('/assets/img/steam.svg');
}

/* 🟠 EA */
.acc-ea {
  background: linear-gradient(135deg,#3b1d0a,#1a0f08);
  border-color: #f97316;
}
.acc-ea .acc-logo {
  background-image: url('/assets/img/ea.svg');
}

/* 🟡 ROCKSTAR */
.acc-rockstar {
  background: linear-gradient(135deg,#3a3205,#1f1b04);
  border-color: #facc15;
}
.acc-rockstar .acc-logo {
  background-image: url('/assets/img/rockstar.svg');
}

/* 🔵 UBISOFT */
.acc-ubisoft {
  background: linear-gradient(135deg,#0b1b2a,#050e16);
  border-color: #38bdf8;
}
.acc-ubisoft .acc-logo {
  background-image: url('/assets/img/ubisoft.svg');
}

/* 🟢 MICROSOFT */
.acc-microsoft {
  background: linear-gradient(135deg,#0a2a18,#04160c);
  border-color: #22c55e;
}
.acc-microsoft .acc-logo {
  background-image: url('/assets/img/microsoft.svg');
}



.acc-item span {
  cursor: pointer;
  transition: all .2s ease;
}

.acc-item span.copied {
  background: #16a34a;
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
}


.game-image {
    max-width: 300px;   /* genişlik sınırı */
    max-height: 300px;  /* yükseklik sınırı */
    width: auto;        /* orantıyı koru */
    height: auto;       /* orantıyı koru */
    border-radius: 8px; /* opsiyonel, köşeleri yuvarla */
    display: block;
    margin: 10px auto;  /* ortaya al */
}

