#obk-login-app {
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  box-sizing: border-box;
}

#obk-login-app::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.74),
      rgba(30, 64, 175, 0.52)
    );
  border-radius: 22px;
  z-index: 0;
}

#obk-login-app .obk-login-card {
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.30),
    0 8px 24px rgba(15, 23, 42, 0.14);
  padding: 38px;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#obk-login-app .obk-login-brand {
  text-align: center;
  margin-bottom: 28px;
}

#obk-login-app .obk-login-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #2563eb;
}

#obk-login-app .obk-login-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
  color: #111827;
}

#obk-login-app .obk-login-subtitle {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

#obk-login-status {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

#obk-login-app .obk-login-field {
  margin-bottom: 18px;
}

#obk-login-app .obk-login-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #334155;
}

#obk-login-app .obk-login-field input[type="text"],
#obk-login-app .obk-login-field input[type="password"] {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#obk-login-app .obk-login-field input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

#obk-login-app .obk-login-field input::placeholder {
  color: #94a3b8;
}

#obk-login-app .obk-password-wrap {
  position: relative;
}

#obk-login-app .obk-password-wrap input {
  padding-right: 76px;
}

#obk-login-app .obk-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  width: auto;
  min-width: 58px;
  height: 38px;
  padding: 0 10px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 9px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

#obk-login-app .obk-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 2px 0 22px;
}

#obk-login-app .obk-remember-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #475569;
  font-size: 14px;
  cursor: pointer;
}

#obk-login-app .obk-remember-label input {
  width: 17px;
  height: 17px;
  margin: 0;
}

#obk-login-app .obk-login-text-link {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

#obk-login-app .obk-login-text-link:hover {
  text-decoration: underline;
}

#obk-login-app .obk-login-primary-button,
#obk-login-app .obk-login-secondary-button {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#obk-login-app .obk-login-primary-button {
  border: 1px solid #1d4ed8;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

#obk-login-app .obk-login-primary-button:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

#obk-login-app .obk-login-secondary-button {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #1e293b;
}

#obk-login-app .obk-login-secondary-button:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

#obk-login-app .obk-login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

#obk-login-app .obk-login-divider span {
  height: 1px;
  background: #e2e8f0;
}

#obk-login-app .obk-login-divider p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  white-space: nowrap;
}

#obk-login-app .obk-login-note {
  margin: 20px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

body.page-id-0 .entry-title {
  display: none;
}

@media (max-width: 600px) {
  #obk-login-app {
    min-height: 560px;
    padding: 24px 12px;
  }

  #obk-login-app::before {
    border-radius: 16px;
  }

  #obk-login-app .obk-login-card {
    max-width: none;
    padding: 28px 20px;
    border-radius: 19px;
  }

  #obk-login-app .obk-login-title {
    font-size: 29px;
  }

  #obk-login-app .obk-login-options {
    align-items: flex-start;
    gap: 12px;
  }

  #obk-login-app .obk-login-note {
    font-size: 11px;
  }
}

body.obk-preview-gate-open {
  overflow: hidden;
}

.obk-login-app {
  width: 100%;
  max-width: 520px;
  margin: 48px auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.obk-login-card {
  width: 100%;
  padding: 38px 34px;
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

.obk-login-brand {
  margin-bottom: 28px;
  text-align: center;
}

.obk-login-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #2563eb;
}

.obk-login-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  color: #0f172a;
}

.obk-login-subtitle {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #64748b;
}

.obk-login-message {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1.5;
}

.obk-login-message[data-status="error"] {
  background: #fef2f2;
  color: #b91c1c;
}

.obk-login-form {
  width: 100%;
}

.obk-login-field {
  margin-bottom: 20px;
}

.obk-login-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.obk-login-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 16px;
  box-sizing: border-box;
  outline: none;
}

.obk-login-field input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.obk-password-wrap {
  position: relative;
}

.obk-password-wrap input {
  padding-right: 76px;
}

.obk-password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-width: 58px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%);
}

.obk-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 24px;
}

.obk-remember-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 14px;
  cursor: pointer;
}

.obk-remember-label input {
  width: 17px;
  height: 17px;
}

.obk-login-text-link,
.obk-login-back {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.obk-login-text-link:hover,
.obk-login-back:hover {
  text-decoration: underline;
}

.obk-login-primary-button,
.obk-login-secondary-button {
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-sizing: border-box;
}

.obk-login-primary-button {
  border: 1px solid #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.obk-login-primary-button:hover {
  background: #1d4ed8;
}

.obk-login-primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.obk-login-secondary-button {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
}

.obk-login-secondary-button:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.obk-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 0;
}

.obk-login-divider span {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.obk-login-divider p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  white-space: nowrap;
}

.obk-login-note {
  margin: 22px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.obk-login-back {
  display: block;
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 600px) {
  .obk-login-app {
    margin: 24px auto;
    padding: 0 14px;
  }

  .obk-login-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .obk-login-title {
    font-size: 29px;
  }

  .obk-login-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.obk-register-app {
  width: 100%;
  max-width: 520px;
  margin: 48px auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.obk-register-card {
  width: 100%;
  padding: 38px 34px;
  border: 1px solid #dbe4f0;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  box-sizing: border-box;
}

.obk-register-brand {
  margin-bottom: 28px;
  text-align: center;
}

.obk-register-kicker {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.obk-register-title {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.2;
}

.obk-register-subtitle {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.obk-register-message {
  margin: 0 0 20px;
  padding: 13px 15px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1.5;
}

.obk-register-message[data-status="error"] {
  background: #fef2f2;
  color: #b91c1c;
}

.obk-register-form {
  width: 100%;
}

.obk-register-field {
  margin-bottom: 22px;
}

.obk-register-field label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.obk-register-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
}

.obk-register-field input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.obk-register-help {
  margin: 7px 2px 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.obk-register-primary-button {
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid #2563eb;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-sizing: border-box;
}

.obk-register-primary-button:hover {
  background: #1d4ed8;
}

.obk-register-primary-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.obk-register-privacy {
  margin: 22px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.obk-register-login-row {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
  color: #475569;
  font-size: 14px;
}

.obk-register-login-row a,
.obk-register-back {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
}

.obk-register-login-row a:hover,
.obk-register-back:hover {
  text-decoration: underline;
}

.obk-register-back {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .obk-register-app {
    margin: 24px auto;
    padding: 0 14px;
  }

  .obk-register-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .obk-register-title {
    font-size: 29px;
  }

  .obk-register-login-row {
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
}

.obk-header{

    margin-bottom:20px;

}

#obk-progress{

    font-size:18px;
    font-weight:bold;
    color:#666;

}

.obk-korean{

    font-size:36px;
    font-weight:700;

    line-height:1.5;

    margin-top:20px;
    margin-bottom:15px;

    color:#111;

}

.obk-english{

    font-size:22px;

    color:#666;

    margin-bottom:25px;

}

.obk-image-box{

    width:100%;

    margin-bottom:25px;

}

#obk-image{

    width:100%;
    max-width:650px;

    border-radius:12px;

    display:block;

    margin:auto;

}

.obk-section{

    margin-top:15px;
    margin-bottom:15px;

}

.obk-btn{

    width:220px;

    padding:15px;

    margin:8px;

    font-size:18px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    background:#0a7cff;

    color:#fff;

    transition:.2s;

}

.obk-btn:hover{

    background:#005fd4;

}

.obk-footer{

    margin-top:30px;

}

.obk-next{

    width:260px;

    padding:18px;

    font-size:22px;

    font-weight:bold;

    border:none;

    border-radius:14px;

    cursor:pointer;

    background:#00b050;

    color:white;

}

.obk-next:hover{

    background:#008a3d;

}

@media (max-width:768px){

    .obk-korean{

        font-size:28px;

    }

    .obk-english{

        font-size:18px;

    }

    .obk-btn{

        width:100%;

        font-size:18px;

    }

    .obk-next{

        width:100%;

    }

}

#obk-record-again {
    display: none !important;
}

#obk-paywall[hidden] {
    display: none !important;
}

#obk-paywall {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

#obk-paywall,
#obk-paywall * {
    box-sizing: border-box;
}

#obk-paywall .obk-paywall-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#obk-paywall .obk-paywall-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    margin: 0;
    padding: 34px 30px 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.34);
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

#obk-paywall .obk-paywall-kicker {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #7c3aed;
}

#obk-paywall #obk-paywall-title {
    margin: 0;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.18;
    font-weight: 800;
    color: #111827;
    word-break: keep-all;
}

#obk-paywall .obk-paywall-description {
    margin: 16px auto 0;
    max-width: 460px;
    font-size: 17px;
    line-height: 1.65;
    color: #4b5563;
}

#obk-paywall .obk-paywall-benefits {
    width: min(100%, 430px);
    margin: 24px auto 0;
    padding: 20px 22px;
    border-radius: 18px;
    background: #f8fafc;
    list-style: none;
    text-align: left;
}

#obk-paywall .obk-paywall-benefits li {
    position: relative;
    margin: 0;
    padding: 7px 0 7px 30px;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2937;
}

#obk-paywall .obk-paywall-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    font-weight: 900;
    color: #16a34a;
}

#obk-paywall .obk-paywall-price {
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.4;
    color: #374151;
}

#obk-paywall .obk-paywall-price strong {
    font-size: 30px;
    color: #111827;
}

#obk-paywall .obk-paywall-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

#obk-paywall .obk-paywall-unlock,
#obk-paywall .obk-paywall-review {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

#obk-paywall .obk-paywall-unlock {
    border: 1px solid #7c3aed;
    background: #7c3aed;
    color: #ffffff;
}

#obk-paywall .obk-paywall-unlock:hover,
#obk-paywall .obk-paywall-unlock:focus-visible {
    background: #6d28d9;
    border-color: #6d28d9;
    color: #ffffff;
}

#obk-paywall .obk-paywall-review {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
}

#obk-paywall .obk-paywall-review:hover,
#obk-paywall .obk-paywall-review:focus-visible {
    background: #f3f4f6;
    color: #111827;
}

#obk-paywall .obk-paywall-unlock:focus-visible,
#obk-paywall .obk-paywall-review:focus-visible {
    outline: 3px solid rgba(124, 58, 237, 0.28);
    outline-offset: 3px;
}

body.obk-paywall-open {
    overflow: hidden !important;
}

#obk-record-again {
    display: none !important;
}

@media (max-width: 600px) {
    #obk-paywall {
        align-items: flex-end;
        padding: 12px;
    }

    #obk-paywall .obk-paywall-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 28px 20px 22px;
        border-radius: 22px 22px 18px 18px;
    }

    #obk-paywall #obk-paywall-title {
        font-size: 27px;
    }

    #obk-paywall .obk-paywall-description {
        font-size: 16px;
    }

    #obk-paywall .obk-paywall-benefits {
        padding: 16px 18px;
    }

    #obk-paywall .obk-paywall-benefits li {
        font-size: 15px;
    }
}

#obk-user-audio-player {
  display: none !important;
}

@keyframes obk-step5-builder-soft-reveal {

  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

@keyframes obk-step5-result-soft-glow {

  from {
    background: rgba(255, 213, 79, 0.08);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    transform: scale(0.97);
  }

  to {
    background: rgba(255, 213, 79, 0.22);
    box-shadow: 0 5px 14px rgba(255, 193, 7, 0.12);
    transform: scale(1);
  }

}

@keyframes obk-step5-final-result-soft-glow {

  from {
    background: rgba(255, 193, 7, 0.1);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    transform: scale(0.97);
  }

  to {
    background: rgba(255, 193, 7, 0.34);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.18);
    transform: scale(1);
  }

}

#obk-message-app {
  width: 100%;
  min-height: 100vh;
  padding: 32px 18px;
  box-sizing: border-box;
  background:
    radial-gradient(
      circle at top right,
      rgba(58, 122, 255, 0.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #f7faff 0%,
      #eef4ff 100%
    );
  font-family: Arial, Helvetica, sans-serif;
  color: #102b50;
}

#obk-message-app,
#obk-message-app * {
  box-sizing: border-box;
}

#obk-message-app .obk-message-card {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #dce6f4;
  border-radius: 24px;
  box-shadow:
    0 18px 45px rgba(32, 68, 120, 0.12);
}

#obk-message-app .obk-mr-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

#obk-message-app .obk-mr-photo {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      #173d72,
      #2f78dc
    );
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow:
    0 10px 24px rgba(30, 89, 168, 0.25);
}

#obk-message-app .obk-mr-intro {
  min-width: 0;
}

#obk-message-app .obk-mr-kicker {
  margin: 0 0 6px;
  color: #3974c8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

#obk-message-app .obk-mr-intro h1 {
  margin: 0 0 12px;
  color: #102b50;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

#obk-message-app .obk-mr-greeting {
  margin: 0;
  color: #51647d;
  font-size: 16px;
  line-height: 1.7;
}

#obk-message-app #obk-message-form {
  margin: 0;
}

#obk-message-app #obk-message-text {
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 20px;
  border: 2px solid #d8e3f1;
  border-radius: 16px;
  background: #fbfdff;
  color: #183657;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.65;
  resize: vertical;
  outline: none;
  appearance: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

#obk-message-app #obk-message-text::placeholder {
  color: #9aa9bd;
}

#obk-message-app #obk-message-text:focus {
  border-color: #2c73d2;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(44, 115, 210, 0.12);
}

#obk-message-app .obk-message-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

#obk-message-app #obk-message-count {
  color: #77879b;
  font-size: 14px;
  font-weight: 600;
}

#obk-message-app #obk-message-send {
  min-width: 170px;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 14px;
  background: #176fd1;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
  box-shadow:
    0 9px 20px rgba(23, 111, 209, 0.24);
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

#obk-message-app #obk-message-send:hover {
  background: #115fac;
  box-shadow:
    0 11px 24px rgba(23, 111, 209, 0.3);
  transform: translateY(-1px);
}

#obk-message-app #obk-message-send:active {
  transform: translateY(0);
}

#obk-message-app #obk-message-send:disabled {
  background: #9cacbf;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

#obk-message-app #obk-message-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: #176734;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

#obk-message-app .obk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 600px) {

  #obk-message-app {
    min-height: 100vh;
    padding: 18px 12px;
  }

  #obk-message-app .obk-message-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  #obk-message-app .obk-mr-profile {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  #obk-message-app .obk-mr-photo {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
    font-size: 23px;
  }

  #obk-message-app .obk-mr-intro h1 {
    font-size: 27px;
  }

  #obk-message-app .obk-mr-greeting {
    font-size: 15px;
  }

  #obk-message-app #obk-message-text {
    min-height: 210px;
    padding: 17px;
    font-size: 16px;
  }

  #obk-message-app .obk-message-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  #obk-message-app #obk-message-count {
    text-align: right;
  }

  #obk-message-app #obk-message-send {
    width: 100%;
  }

}

@media (max-width: 921px) {
  .ast-mobile-header-content {
    min-height: calc(100vh - 142px) !important;
    min-height: calc(100dvh - 142px) !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }
}

@media (min-width: 922px) {
  .main-header-menu .menu-item-has-children > .ast-menu-toggle,
  .main-header-menu .menu-item-has-children > a .ast-icon {
    display: none !important;
  }

  .main-header-menu .menu-item-has-children > a {
    padding-right: 1em !important;
  }
}

.obk-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: 100%;
}

.obk-header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 4px;
    color: #102f57;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.obk-header-login:hover,
.obk-header-login:focus {
    color: #1f5f9f;
    text-decoration: none;
}

.obk-menu-toggle {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(16, 47, 87, 0.18);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: none;
    cursor: pointer;
}

.obk-menu-toggle:hover,
.obk-menu-toggle:focus {
    border-color: rgba(16, 47, 87, 0.42);
    background: #f7f9fc;
}

.obk-menu-toggle-line {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: #102f57;
}

.obk-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    visibility: hidden;
    opacity: 0;
    background: rgba(5, 18, 34, 0.46);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.obk-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    width: min(430px, 92vw);
    height: 100vh;
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    background: #ffffff;
    box-shadow: -12px 0 38px rgba(5, 18, 34, 0.18);
    visibility: hidden;
    transform: translateX(105%);
    transition:
        transform 0.32s ease,
        visibility 0.32s ease;
    overscroll-behavior: contain;
}

.obk-menu-panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 28px 24px;
    border-bottom: 1px solid #e7ebf0;
    background: #ffffff;
}

.obk-menu-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.obk-menu-brand strong {
    color: #102f57;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.obk-menu-brand span {
    color: #637083;
    font-size: 13px;
    line-height: 1.45;
}

.obk-menu-close {
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid #dfe5ec;
    border-radius: 50%;
    background: #ffffff;
    color: #102f57;
    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.obk-menu-close:hover,
.obk-menu-close:focus {
    background: #f3f6f9;
}

.obk-menu-navigation {
    padding: 18px 28px 42px;
}

.obk-menu-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.obk-menu-navigation > ul > li {
    margin: 0;
    border-bottom: 1px solid #edf0f4;
}

.obk-menu-navigation a {
    display: block;
    padding: 17px 2px;
    color: #102f57;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
}

.obk-menu-navigation a:hover,
.obk-menu-navigation a:focus {
    color: #1f5f9f;
    text-decoration: none;
}

.obk-menu-navigation .sub-menu {
    display: block;
    margin: -5px 0 13px;
    padding: 0 0 3px 22px;
}

.obk-menu-navigation .sub-menu li {
    margin: 0;
    border: 0;
}

.obk-menu-navigation .sub-menu a {
    position: relative;
    padding: 9px 2px 9px 18px;
    color: #536276;
    font-size: 15px;
    font-weight: 400;
}

.obk-menu-navigation .sub-menu a::before {
    content: "└";
    position: absolute;
    top: 9px;
    left: 0;
    color: #9aa6b4;
}

body.obk-menu-open {
    overflow: hidden;
}

body.obk-menu-open .obk-menu-overlay {
    visibility: visible;
    opacity: 1;
}

body.obk-menu-open .obk-menu-panel {
    visibility: visible;
    transform: translateX(0);
}

body.obk-header-v2-ready .ast-primary-header-bar .main-header-menu,
body.obk-header-v2-ready .ast-below-header-bar .main-header-menu,
body.obk-header-v2-ready .ast-desktop .main-header-menu {
    display: none !important;
}

body.obk-header-v2-ready .ast-below-header-wrap {
    display: none !important;
}

.ast-header-html-1 {
    width: 100%;
}

.ast-header-html-1 .ast-builder-html-element {
    width: 100%;
}

@media (max-width: 767px) {
    .obk-header-actions {
        gap: 10px;
    }

    .obk-header-login {
        font-size: 16px;
    }

    .obk-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .obk-menu-panel {
        width: 100%;
        max-width: none;
    }

    .obk-menu-panel-header {
        padding: 22px 20px 18px;
    }

    .obk-menu-brand strong {
        font-size: 21px;
    }

    .obk-menu-navigation {
        padding: 12px 20px 34px;
    }

    .obk-menu-navigation a {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 17px;
    }
}

.obk-account-page,
.obk-account-page *,
.obk-account-page *::before,
.obk-account-page *::after {
  box-sizing: border-box;
}

.obk-account-page {
  width: 100%;
  margin: 0;
  padding: 32px 16px 50px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: #162033;
}

.obk-account-shell {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      #50596d 0%,
      #65728f 55%,
      #8095ca 100%
    );
  box-shadow:
    0 26px 60px rgba(37, 49, 83, 0.22);
}

.obk-account-card {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 52px 46px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow:
    0 24px 55px rgba(20, 32, 65, 0.2);
}

.obk-account-brand {
  margin: 0 0 16px;
  color: #2864ed;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 4px;
  text-align: center;
}

.obk-account-title {
  margin: 0;
  color: #111827;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -1.2px;
  text-align: center;
}

.obk-register-page .obk-account-title {
  font-size: 42px;
}

.obk-account-description {
  margin: 18px 0 38px;
  color: #64748b;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.obk-account-form {
  width: 100%;
  margin: 0;
}

.obk-account-field {
  width: 100%;
  margin: 0 0 21px;
}

.obk-account-field label {
  display: block;
  margin: 0 0 9px;
  color: #344054;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.obk-account-field input {
  display: block;
  width: 100%;
  height: 68px;
  margin: 0;
  padding: 0 19px;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  outline: none;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.obk-account-field input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.obk-account-field input:focus {
  border-color: #2d67e8;
  box-shadow:
    0 0 0 4px rgba(45, 103, 232, 0.12);
}

.obk-password-wrap {
  position: relative;
  width: 100%;
}

.obk-password-wrap input {
  padding-right: 104px;
}

.obk-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  min-width: 78px;
  height: 48px;
  margin: 0;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  background: #edf2ff;
  color: #2254d7;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transform: translateY(-50%);
  box-shadow: none;
}

.obk-password-toggle:hover,
.obk-password-toggle:focus {
  background: #dfe8ff;
  color: #1745c0;
}

.obk-account-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 3px 0 28px;
}

.obk-account-remember,
.obk-account-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #526078;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  cursor: pointer;
}

.obk-account-agreement {
  margin: 2px 0 24px;
}

.obk-account-remember input,
.obk-account-agreement input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: #2864ed;
  cursor: pointer;
}

.obk-account-forgot {
  color: #2460e8;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.obk-account-forgot:hover {
  color: #1748c7;
  text-decoration: underline;
}

.obk-account-primary-button {
  display: block;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  background: #2c66e8;
  color: #ffffff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow:
    0 15px 28px rgba(44, 102, 232, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.obk-account-primary-button:hover {
  background: #2459d2;
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(44, 102, 232, 0.27);
}

.obk-account-primary-button:active {
  transform: translateY(0);
}

.obk-account-divider {
  display: flex;
  align-items: center;
  gap: 17px;
  width: 100%;
  margin: 38px 0 18px;
  color: #6b778d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.obk-account-divider::before,
.obk-account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dce3ed;
}

.obk-account-divider span {
  flex: 0 0 auto;
}

.obk-account-secondary-button {
  display: block;
  width: fit-content;
  min-width: 210px;
  min-height: 62px;
  margin: 0 auto;
  padding: 17px 25px;
  border: 1px solid #cbd5e1;
  border-radius: 15px;
  background: #ffffff;
  color: #172033;
  font-family: inherit;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.obk-account-secondary-button:hover {
  border-color: #2c66e8;
  background: #f5f8ff;
  color: #1f55d5;
  text-decoration: none;
  transform: translateY(-1px);
}

.obk-account-note {
  max-width: 500px;
  margin: 16px auto 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.obk-account-back-link {
  display: block;
  width: fit-content;
  margin: 29px auto 0;
  color: #2460e8;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.obk-account-back-link:hover {
  color: #1748c7;
  text-decoration: underline;
}

.obk-account-message {
  display: none;
  width: 100%;
  margin: 0 0 18px;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.obk-account-message.is-visible {
  display: block;
}

.obk-account-message.is-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #b42318;
}

.obk-account-message.is-success {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

@media screen and (max-width: 921px) {

  .obk-account-page {
    padding: 25px 10px 40px;
  }

  .obk-account-shell {
    max-width: 620px;
    padding: 42px 26px;
    border-radius: 26px;
  }

  .obk-account-card {
    max-width: 540px;
    padding: 43px 38px 40px;
    border-radius: 28px;
  }

  .obk-account-title,
  .obk-register-page .obk-account-title {
    font-size: 39px;
  }

  .obk-account-description {
    margin-bottom: 32px;
    font-size: 18px;
  }

}

@media screen and (max-width: 600px) {

  .obk-account-page {
    padding: 12px 6px 30px;
  }

  .obk-account-shell {
    width: 100%;
    padding: 18px 10px;
    border-radius: 22px;
  }

  .obk-account-card {
    width: 100%;
    padding: 34px 20px 32px;
    border-radius: 22px;
  }

  .obk-account-brand {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .obk-account-title,
  .obk-register-page .obk-account-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.7px;
  }

  .obk-account-description {
    margin: 14px 0 28px;
    font-size: 16px;
    line-height: 1.5;
  }

  .obk-account-field {
    margin-bottom: 17px;
  }

  .obk-account-field label {
    margin-bottom: 7px;
    font-size: 16px;
  }

  .obk-account-field input {
    height: 58px;
    padding: 0 15px;
    border-radius: 13px;
    font-size: 16px;
  }

  .obk-password-wrap input {
    padding-right: 88px;
  }

  .obk-password-toggle {
    right: 7px;
    min-width: 70px;
    height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 44px;
  }

  .obk-account-options {
    align-items: flex-start;
    margin-bottom: 23px;
  }

  .obk-account-remember,
  .obk-account-agreement,
  .obk-account-forgot {
    font-size: 15px;
  }

  .obk-account-remember input,
  .obk-account-agreement input {
    width: 20px;
    height: 20px;
  }

  .obk-account-primary-button {
    height: 60px;
    border-radius: 13px;
    font-size: 19px;
    line-height: 60px;
  }

  .obk-account-divider {
    gap: 11px;
    margin: 30px 0 16px;
    font-size: 15px;
  }

  .obk-account-secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 16px 18px;
    border-radius: 13px;
    font-size: 17px;
  }

  .obk-account-note {
    margin-top: 14px;
    font-size: 14px;
  }

  .obk-account-back-link {
    margin-top: 25px;
    font-size: 16px;
  }

}

body:has(.obk-account-page) .entry-header,
body:has(.obk-account-page) header.entry-header,
body:has(.obk-account-page) .entry-title {
  display: none !important;
}

body:has(.obk-account-page) .site-content,
body:has(.obk-account-page) .ast-container,
body:has(.obk-account-page) .site-main,
body:has(.obk-account-page) article,
body:has(.obk-account-page) .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.obk-account-page {
  margin-top: -20px !important;
}

@media screen and (max-width: 921px) {
  .obk-account-page {
    margin-top: 0 !important;
  }
}

body:has(.obk-account-page) .entry-header,
body:has(.obk-account-page) .entry-title,
body:has(.obk-account-page) .page-title,
body:has(#obk-forgot-password-page) .entry-header,
body:has(#obk-forgot-password-page) .entry-title,
body:has(#obk-forgot-password-page) .page-title,
body:has(#obk-reset-password-page) .entry-header,
body:has(#obk-reset-password-page) .entry-title,
body:has(#obk-reset-password-page) .page-title {
  display: none !important;
}

body:has(.obk-account-page) .site-content,
body:has(.obk-account-page) .ast-container,
body:has(.obk-account-page) .site-main,
body:has(.obk-account-page) article,
body:has(.obk-account-page) .entry-content,
body:has(#obk-forgot-password-page) .site-content,
body:has(#obk-forgot-password-page) .ast-container,
body:has(#obk-forgot-password-page) .site-main,
body:has(#obk-forgot-password-page) article,
body:has(#obk-forgot-password-page) .entry-content,
body:has(#obk-reset-password-page) .site-content,
body:has(#obk-reset-password-page) .ast-container,
body:has(#obk-reset-password-page) .site-main,
body:has(#obk-reset-password-page) article,
body:has(#obk-reset-password-page) .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* OBK 1:1 Korean Tutor — Coming Soon menu lock */
.obk-menu-navigation a[href*="/11-korean-tutor/"],
.main-header-menu a[href*="/11-korean-tutor/"],
.ast-mobile-popup-content a[href*="/11-korean-tutor/"] {
  pointer-events: none !important;
  cursor: default !important;
  color: #7b8798 !important;
  opacity: 0.68;
  text-decoration: none !important;
}
