@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;600;700&family=Playfair+Display:wght@400;700&display=swap');

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

body {
  font-family: "Noto Sans KR", sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0e2e 50%, #0a0a0a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* ·°¼Å¸® ¹è°æ È¿°ú */
.luxury-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.light-ray {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(218, 165, 32, 0.3), transparent);
  filter: blur(1px);
  animation: rayMove 8s infinite ease-in-out;
}

.light-1 {
  top: -100px;
  left: 20%;
  animation-delay: 0s;
}

.light-2 {
  top: -100px;
  left: 50%;
  animation-delay: 2s;
}

.light-3 {
  top: -100px;
  left: 80%;
  animation-delay: 4s;
}

@keyframes rayMove {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0; }
  50% { transform: translateY(100vh) scaleY(1.5); opacity: 1; }
}

/* ¹ÝÂ¦ÀÌ´Â ÀÔÀÚ */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 10px #d4af37;
  animation: sparkle 3s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 40%; right: 20%; animation-delay: 0.6s; }
.particle-3 { bottom: 30%; left: 25%; animation-delay: 1.2s; }
.particle-4 { top: 60%; right: 15%; animation-delay: 1.8s; }
.particle-5 { bottom: 20%; right: 30%; animation-delay: 2.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

.container {
  background: linear-gradient(135deg, rgba(26, 14, 46, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 35px;
  border-radius: 2px;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(218, 165, 32, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(218, 165, 32, 0.2),
    0 0 60px rgba(138, 43, 226, 0.15);
}

/* ¸ð¼­¸® Àå½Ä */
.corner-decoration {
  position: absolute;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #d4af37;
  opacity: 0.6;
}

.corner-decoration.top-left {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.corner-decoration.top-right {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.corner-decoration.bottom-left {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.corner-decoration.bottom-right {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.header {
  padding-bottom: 28px;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
}

.logo {
  font-size: 46px;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37 0%, #f8e45f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  font-family: 'Playfair Display', serif;
}

.logo img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.subtitle {
  font-size: 14px;
  color: #b896d4;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.content {
  padding: 0;
}

.status-indicator {
  position: relative;
  padding: 20px 25px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
  border-left: 3px solid #8a2be2;
  border-right: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: inset 0 0 20px rgba(138, 43, 226, 0.1);
}

.status-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #8a2be2, #d4af37);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
  animation: lineGlow 2s infinite ease-in-out;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.status-text {
  font-size: 16px;
  font-weight: 400;
  color: #d4af37;
  letter-spacing: 1px;
}

.desc {
  font-size: 16px;
  color: #b8b8c8;
  line-height: 1.9;
  margin-bottom: 40px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 18px 55px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #d4af37;
  border-radius: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(138, 43, 226, 0.1));
  z-index: 1;
  transition: all 0.4s ease;
}

.btn-text {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #d4af37 0%, #f8e45f 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  z-index: 3;
  transition: left 0.6s ease;
}

.btn:hover .btn-bg {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(138, 43, 226, 0.2));
}

.btn:hover .btn-shine {
  left: 100%;
}

.btn:hover {
  border-color: #f8e45f;
  box-shadow: 
    0 0 20px rgba(212, 175, 55, 0.4),
    inset 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* ¹ÝÀÀÇü */
@media (max-width: 600px) {
  .container {
    padding: 40px 30px;
  }
  
  .logo {
    font-size: 38px;
    letter-spacing: 4px;
  }
  
  .subtitle {
    font-size: 12px;
    letter-spacing: 6px;
  }
  
  .desc {
    font-size: 15px;
  }
  
  .btn {
    padding: 16px 45px;
    font-size: 15px;
    letter-spacing: 2px;
  }
}