  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1724;
    color: #fff;
    margin: 0;
    padding: 0;
  }


  /* === HEADER === */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background-color: #111827;
    border-bottom: 2px solid #1f2937;
    border-radius: 10px;
  }

  .logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #f59e0b;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 20px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: #f59e0b;
  }

  /* ===== HERO / INTRO ===== */
  .event-hero {
    text-align: center;
    padding: 80px 20px 20px 20px;
    background: linear-gradient(135deg, #1e293b, #0f1724);
  }

  .event-hero h1 {
    font-size: 2.6rem;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 20px;
  }

  .event-hero p {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 640px;
    margin: auto;
  }

  .event-btn {
    margin-top: 30px;
    background-color: #e63946;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
  }

  .event-btn:hover { background-color: #c92c38; }


  /* === FOOTER === */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #1e293b;
    border-radius: 12px;
    font-size: 0.95em;
    color: #cbd5e1;
  }

  footer a {
    color: #f59e0b;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  .return-message {
    margin-bottom:15px;
    color:#fbbf24;
    font-weight:normal;
    min-height: 22px;
  }


  @media (max-width: 900px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }
  }



/* =================================== */
.vault-card {
  background: linear-gradient(145deg, #1f2937, #111827);
  border-radius: 18px;
  border: 1px solid #374151;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vault-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25);
}

.vault-header {
  background: rgba(245,158,11,0.15);
  border-bottom: 1px solid #374151;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vault-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f59e0b; /* i.name 강조 컬러 */
  letter-spacing: 0.5px;
}

.vault-desc {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* 버튼 */
.vault-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.vault-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  transform: scale(1.02);
}

/* ===== Desktop ===== */
.vault-table {
  width: 70%;
  min-width: 680px;
}
.addr {
  word-break: break-all;
}
.refresh {
  cursor: pointer;
  font-size: 1.2rem;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .vault-table {
    width: 100%;
    min-width: 100%;
  }

  .vault-table thead {
    display: none;
  }

  .vault-table tr {
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: #0f172a;
    border: 1px solid #334155;
  }

  .vault-table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .4rem 0;
    border: none;
  }

  .vault-table td::before {
    content: attr(data-label);
    color: #94a3b8;
    font-size: .8rem;
    font-weight: 600;
    min-width: 90px;
  }

  .refresh {
    font-size: 1.4rem;
  }
}
