:root {
  --gold: #c8a045;       /* snail-shell gold */
  --black: #000000;
  --softgrey: #f3f3f3;
  --darkgrey: #1a1a1a;   /* Kang Joon grey */
  --lightgrey: #cccccc;
  --mint: #d8ffd8;       /* Kang Joon mint */
}

/* BODY */
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  font-family: "DejaVu Sans", sans-serif;
}

/* TOP BAR */
.top-bar {
  background: var(--black);
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.top-left {
  font-size: 14px;
  opacity: 0.9;
}

.login-btn {
  padding: 8px 20px;
  background: #e0e0e0;
  border: none;
  border-radius: 6px;
  color: #333;
  font-family: "Montserrat", sans-serif;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  text-align: center;
  padding: 40px 20px 20px 20px; /* reduced bottom */
  background: var(--black);
}

.hero-logo {
  width: 350px;
  margin-top: 40px;
  transform: translateX(-60px); /* moved left */
}

/* RING */
.coming-ring {
  position: absolute;
  right: 60px;
  top: 40px;
  width: 200px;
  height: 200px;
  opacity: 0.85;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* INTRO SECTION */
.intro-section {
  background: var(--softgrey);
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* INTRO TEXT */
.intro-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.gold-bold {
  color: var(--gold);
  font-weight: 600;
}

.intro-paragraph {
  font-size: 14px;
  line-height: 1.6;
  max-width: 450px;
}

/* YOUTUBE VIDEO BOX */
.video-box {
  background: white;
  border: 2px solid var(--lightgrey);
  border-radius: 6px;
  width: 450px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yt-frame {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

/* FOOTER */
.nyogo-footer {
  background: var(--darkgrey);
  color: var(--mint);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.nyogo-footer h3,
.nyogo-footer h4 {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
}

.yt-link {
  color: var(--mint);
  text-decoration: none;
}

.yt-link:hover {
  color: var(--gold);
}

/* LEGAL */
.legal-row {
  background: var(--darkgrey);
  color: var(--mint);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
