:root {
  --bg-cream: #f7dbb0;
  --bg-dark: #050505;
  --card-dark: #111111;
  --accent: #f9d49a;
  --accent-strong: #f6c571;
  --text-main: #fdf6e9;
  --text-dark: #0b0b0b;
  --text-muted: #c9c3b8;
  --border-subtle: #2b2b2b;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
}

/* Layout */

.login-layout {
  display: grid;
  grid-template-columns: 1.6fr 1.1fr;
  min-height: 100vh;
}

/* Left side */

.login-left {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 32px 56px 32px 80px;
  display: flex;
  flex-direction: column;
}

.left-header {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}

.brand-name {
  letter-spacing: 0.12em;
}

.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-shell {
  width: 100%;
  max-width: 760px;
  background: #0a0a0a;
  border-radius: 18px;
  position: relative;
  padding: 40px 40px 80px;
  color: #fdf6e9;
  box-shadow: var(--shadow-soft);
}

.video-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.video-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 16px;
}

.video-mute-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #191919;
  border-radius: 999px;
  border: none;
  color: #f5f5f5;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

.left-description {
  margin-top: 26px;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.6;
}

.left-footer-text {
  margin-top: 28px;
  font-size: 14px;
  color: #5b4b35;
}

.left-link {
  color: #c46b24;
  text-decoration: underline;
}

/* Right side */

.login-right {
  background: var(--bg-dark);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 32px 32px 40px;
}

.login-card {
  width: 100%;
  max-width: 420px;
}

.login-title {
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.login-subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Provider buttons */

.provider-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.provider-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #fdfbf7;
  color: #141414;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease;
}

.provider-btn:hover {
  background: #fffaf0;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.provider-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.provider-icon.fb {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
}

/* Email button */

.email-btn {
  margin-top: 14px;
  background: var(--accent);
  color: #111111;
}

.email-btn:hover {
  background: var(--accent-strong);
}

/* Divider */

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #272727;
}

.divider-label {
  text-transform: lowercase;
}

/* Terms text */

.tos-text {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

.tos-link {
  color: var(--accent);
  text-decoration: underline;
}

/* Footer */

.login-footer {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-links.secondary {
  font-size: 11px;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* Active state added by JS */

.provider-btn.active {
  outline: 2px solid var(--accent-strong);
  box-shadow: 0 0 0 1px #000, 0 6px 14px rgba(0, 0, 0, 0.55);
}

/* Responsive */

@media (max-width: 1024px) {
  .login-layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .login-left {
    padding: 24px 32px;
  }

  .login-right {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-left {
    padding: 24px 20px 32px;
  }

  .login-right {
    padding: 24px 20px 40px;
  }

  .login-card {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .video-shell {
    padding: 26px 20px 56px;
  }

  .video-title {
    font-size: 20px;
  }

  .login-title {
    font-size: 26px;
  }
}
/* ---------- Pika Login Guide Section ---------- */

.pika-login-guide {
  border-top: 1px solid var(--border-subtle);
  background: #050505;
  color: var(--text-main);
  padding: 32px 20px 48px;
}

.guide-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.guide-header h2 {
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.guide-header p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
  gap: 32px;
  margin-top: 24px;
}

.guide-summary {
  background: #111111;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #222222;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.guide-summary h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.guide-summary ol {
  margin-left: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.guide-summary li + li {
  margin-top: 4px;
}

.guide-steps h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.guide-steps h4 {
  font-size: 14px;
  margin-top: 14px;
  margin-bottom: 4px;
}

.guide-steps p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.guide-steps ul {
  margin: 4px 0 4px 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.guide-steps li + li {
  margin-top: 3px;
}

/* Responsive */

@media (max-width: 900px) {
  .guide-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-summary {
    order: 2;
  }

  .guide-steps {
    order: 1;
  }
}

@media (max-width: 600px) {
  .pika-login-guide {
    padding: 24px 16px 40px;
  }

  .guide-header h2 {
    font-size: 18px;
  }
}
