.my-cdk-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.my-cdk-hero {
  text-align: center;
  margin-bottom: 32px;
}

.my-cdk-hero .hero-badge { margin-bottom: 16px; }

.my-cdk-hero h1 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #fff 0%, #c8cdd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.my-cdk-hero p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.login-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cdk-list { display: flex; flex-direction: column; gap: 14px; }

.cdk-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}

.cdk-item:hover {
  border-color: rgba(212, 175, 95, 0.3);
  transform: translateY(-2px);
}

.cdk-game {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.cdk-code {
  font-family: "DM Sans", ui-monospace, monospace;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  word-break: break-all;
  margin-bottom: 8px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-gold);
}

.cdk-time {
  font-size: 12px;
  color: var(--text-muted);
}

.cdk-item .btn-copy {
  flex-shrink: 0;
  align-self: center;
  padding: 10px 18px;
  font-size: 13px;
}

.empty-state {
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.empty-state strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 8px;
}

.my-cdk-footer {
  margin-top: 36px;
  text-align: center;
}

.loading-pulse {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
}
