@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;500;600;700;800;900&display=swap");
* {
  box-sizing: border-box
}

html,body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial,Helvetica,sans-serif;
  background: #1b1f23;
  color: #f4f5f6
}

body {
  min-height: 100vh
}

.page {
  width: min(660px,100%);
  margin: 0 auto;
  padding: 45px 30px 70px;
  text-align: center
}

.brand-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 42px;
  border-radius: 32px;
  background: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
  color: #fff;
  box-shadow: 0 0 35px rgba(22,119,255,.2)
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -1.5px
}

.subtitle {
  font-size: 25px;
  color: #8e9398;
  margin: 0 0 58px;
  line-height: 1.45
}

.card {
  background: #24292e;
  border-radius: 40px;
  padding: 48px 40px 42px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,.15)
}

label {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #bfc3c7;
  margin: 0 0 22px
}

label span {
  font-size: 19px;
  color: #777d82;
  font-weight: 600;
  margin-left: 6px
}

.input-wrap {
  height: 104px;
  border: 2px solid #343a40;
  border-radius: 25px;
  background: #1b1f23;
  display: flex;
  align-items: center;
  margin-bottom: 38px;
  padding: 0 26px;
  transition: .2s
}

.input-wrap:focus-within {
  border-color: #1677ff;
  box-shadow: 0 0 0 4px rgba(22,119,255,.08)
}

.input-wrap>i {
  font-size: 31px;
  color: #777e84;
  width: 46px
}

.input-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f1f2f3;
  font-size: 29px;
  padding: 0 14px
}

.input-wrap input::placeholder {
  color: #70767b
}

.eye {
  border: 0;
  background: transparent;
  color: #777e84;
  font-size: 25px;
  cursor: pointer;
  padding: 10px
}

.primary {
  width: 100%;
  height: 104px;
  border: 0;
  border-radius: 25px;
  background: #1677ff;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  transition: .2s
}

.primary:hover {
  background: #0d6df2
}

.switch {
  text-align: center;
  color: #888e93;
  font-size: 25px;
  margin: 42px 0 0
}

.switch a,.link-button {
  color: #1677ff;
  font-weight: 700;
  text-decoration: none
}

.link-button {
  border: 0;
  background: transparent;
  font-size: inherit;
  padding: 0;
  cursor: pointer
}

.link-button:disabled {
  color: #777d82;
  cursor: not-allowed
}

.alert {
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.45
}

.alert i {
  margin-right: 10px
}

.alert.success {
  background: #163d2e;
  border: 2px solid #1c684b;
  color: #24cf75
}

.alert.error {
  background: #3d2022;
  border: 2px solid #693437;
  color: #ff7379
}

.verify-card {
  text-align: center
}

.verify-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #1c3457;
  color: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  margin: 0 auto 42px
}

.verify-card h2 {
  font-size: 48px;
  margin: 0 0 20px;
  font-weight: 800
}

.verify-text {
  font-size: 24px;
  color: #8e9398;
  line-height: 1.5;
  margin: 0 0 8px
}

.email {
  display: block;
  font-size: 24px;
  word-break: break-word;
  margin-bottom: 48px
}

.otp-boxes {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  margin-bottom: 40px
}

.otp {
  width: 100%;
  height: 108px;
  border: 2px solid #343a40;
  border-radius: 22px;
  background: #1b1f23;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  outline: 0
}

.otp:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 4px rgba(22,119,255,.08)
}

.resend-form {
  margin: 0
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #353a3f;
  font-size: 22px
}

.profile-row span {
  color: #8d9398
}

.profile-row strong {
  text-align: right;
  word-break: break-word
}

.logout {
  margin-top: 35px
}

.loading {
  opacity: .7;
  pointer-events: none
}

@media(max-width:500px) {
  .page {
    padding: 14px 15px 27px
  }

  .brand-icon {
    width: 75px;
    height: 75px;
    font-size: 29px;
    margin-bottom: 20px
  }

  h1 {
    font-size: 33px
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 26px
  }

  .card {
    border-radius: 12px;
    padding: 20px 20px 19px;
  }

  label {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .input-wrap {
    height: 45px;
    margin-bottom: 16px;
    padding: 0 12px
  }

  .input-wrap input {
    font-size: 14px
  }
  
  .input-wrap i {
    font-size: 18px
  }
  
  label span {
    font-size: 14px;
  }

  .primary {
    height: 50px;
    font-size: 16px;
    margin-top: 18px;
  }

  .switch {
    font-size: 16px
  }
  
  .alert {
    font-size: 14px;
    padding: 6px 4px;
    border-radius: 4px;
  }
  
  .verify-icon {
    height: 55px;
    width: 55px;
    font-size: 26px;
  }

  .verify-card h2 {
    font-size: 22px
  }

  .verify-text,.email {
    font-size: 14px
  }

  .otp-boxes {
    gap: 10px
  }

  .otp {
    height: 45px;
    font-size: 34px;
    border-radius: 4px;
  }}

.forgot-link {
  margin-top: -20px;
  margin-bottom: 0
  font-size: 16px;
}
.card>label{margin-top:18px}.card>.input{width:100%;height:58px;margin:0 0 18px;padding:0 16px;border:2px solid #343a40;border-radius:16px;background:#1b1f23;color:#fff;font-size:18px;outline:0}.card>.input:focus{border-color:#f5c542;box-shadow:0 0 0 4px rgba(245,197,66,.08)}
@media(max-width:500px){.card>.input{height:46px;font-size:15px}}
.kc-guest-language{position:fixed;top:max(14px,env(safe-area-inset-top));right:14px;z-index:10050;height:38px;min-width:54px;padding:0 12px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(20,25,31,.78);backdrop-filter:blur(14px);color:#fff;font-weight:900;font-size:11px;box-shadow:0 10px 25px rgba(0,0,0,.25);cursor:pointer}.kc-language-overlay{position:fixed;inset:0;z-index:10060;display:grid;place-items:center;padding:20px;background:rgba(4,7,10,.68);backdrop-filter:blur(12px)}.kc-language-card{width:min(380px,100%);padding:22px;border-radius:24px;background:linear-gradient(145deg,#20272e,#11161b);border:1px solid rgba(255,255,255,.1);box-shadow:0 24px 70px rgba(0,0,0,.45);color:#fff;position:relative;text-align:center}.kc-language-close{position:absolute;right:12px;top:12px;width:34px;height:34px;border-radius:11px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.05);color:#fff;font-size:20px}.kc-language-icon{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;margin:0 auto 12px;background:rgba(245,197,66,.12);color:#f5c542;font-size:24px;font-weight:900}.kc-language-card h3{margin:0;font-size:19px}.kc-language-card p{margin:7px 0 16px;color:#8f99a3;font-size:11px}.kc-language-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}.kc-language-grid button{min-height:64px;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:#171d23;color:#fff;font-weight:900;display:flex;align-items:center;justify-content:center;gap:8px}.kc-language-grid button:hover{border-color:#f5c542;box-shadow:0 0 0 2px rgba(245,197,66,.1)}

/* v19 auth/verification polish */
html{background:#0d1117;overflow-x:hidden}body{overflow-x:hidden;overflow-y:auto;background:radial-gradient(circle at 50% -15%,rgba(245,197,66,.10),transparent 35%),#0d1117}.page{padding-top:clamp(22px,6vh,58px);padding-bottom:90px}.brand-icon{background:linear-gradient(145deg,#f5c542,#b98518);box-shadow:0 18px 55px rgba(245,197,66,.16);border:1px solid rgba(255,255,255,.10)}.card{background:linear-gradient(145deg,#1b2229,#11161b);border:1px solid rgba(255,255,255,.07);box-shadow:0 24px 70px rgba(0,0,0,.30)}h1{font-size:clamp(32px,5vw,48px)}.subtitle{font-size:clamp(15px,2.4vw,20px);margin-bottom:32px}.input-wrap{height:64px;border-radius:18px;margin-bottom:20px;padding:0 16px;background:#0e1318}.input-wrap input{font-size:17px}.primary{min-height:52px;border:0;border-radius:16px;background:linear-gradient(135deg,#f5c542,#d8a92b);color:#17191c;font-weight:900;box-shadow:0 12px 26px rgba(245,197,66,.14);cursor:pointer}.alert{border-radius:16px!important;border:1px solid rgba(255,255,255,.08)!important;padding:12px 14px!important;line-height:1.5!important}.otp-boxes{gap:9px}.otp{border-radius:15px!important;background:#0f1419!important;border:1px solid rgba(255,255,255,.09)!important;box-shadow:inset 0 1px rgba(255,255,255,.03)}.otp:focus{border-color:#f5c542!important;box-shadow:0 0 0 3px rgba(245,197,66,.10)!important}@media(max-width:500px){.page{padding:18px 12px 76px}.card{padding:18px 15px;border-radius:22px}.brand-icon{margin-bottom:18px}.input-wrap{height:50px;border-radius:15px}.input-wrap input{font-size:15px}.primary{min-height:48px}.otp{height:48px!important;font-size:26px!important}}


/* v24 Myanmar typography + auth UI refinement */
body[data-lang="my"]{
  font-family:"Noto Sans Myanmar","Myanmar Text","Padauk",system-ui,sans-serif;
  font-synthesis:none;
}
body[data-lang="my"] h1{font-size:clamp(28px,7.5vw,38px);line-height:1.28;letter-spacing:0;margin-bottom:12px}
body[data-lang="my"] .subtitle{font-size:clamp(14px,3.8vw,17px);line-height:1.65;margin-bottom:24px}
body[data-lang="my"] .card{padding:24px 22px 22px}
body[data-lang="my"] label{font-size:15px;line-height:1.5;margin-bottom:9px}
body[data-lang="my"] label span{font-size:12px}
body[data-lang="my"] .input-wrap{height:56px;margin-bottom:16px;border-radius:16px}
body[data-lang="my"] .input-wrap input{font-family:inherit;font-size:15px;line-height:1.4}
body[data-lang="my"] .primary{min-height:50px;height:50px;font-family:inherit;font-size:15px;line-height:1.45;padding:0 16px}
body[data-lang="my"] .switch{font-size:14px;line-height:1.65;margin-top:20px}
body[data-lang="my"] .alert{font-size:13px;line-height:1.65!important}
body[data-lang="my"] .verify-card h2{font-size:22px;line-height:1.45;margin-bottom:12px}
body[data-lang="my"] .verify-text,body[data-lang="my"] .email{font-size:14px;line-height:1.65}
body[data-lang="my"] .otp{font-family:system-ui,sans-serif;font-size:25px;height:54px}

.auth-earn-visual{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
  width:min(620px,100%);
  margin:0 auto 24px;
}
.auth-earn-step{
  position:relative;
  min-height:86px;
  padding:12px 8px 10px;
  border:1px solid rgba(245,197,66,.16);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(34,43,51,.96),rgba(15,20,25,.96));
  box-shadow:0 12px 30px rgba(0,0,0,.16),inset 0 1px rgba(255,255,255,.035);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.auth-earn-step::after{
  content:"";
  position:absolute;
  width:46px;height:46px;
  right:-17px;top:-20px;
  border-radius:50%;
  background:rgba(245,197,66,.08);
}
.auth-earn-icon{
  width:34px;height:34px;
  border-radius:11px;
  display:grid;place-items:center;
  margin-bottom:6px;
  background:rgba(245,197,66,.12);
  color:#f5c542;
  font-size:16px;
}
.auth-earn-step strong{font-size:12px;line-height:1.35;font-weight:800;color:#f4f6f8}
.auth-earn-step small{font-size:9px;line-height:1.35;color:#8f99a3;margin-top:3px}
body[data-lang="my"] .auth-earn-step strong{font-family:inherit;font-size:12px;line-height:1.5}
body[data-lang="my"] .auth-earn-step small{font-family:inherit;font-size:10px;line-height:1.45}

@media(max-width:500px){
  .auth-earn-visual{gap:7px;margin-bottom:20px}
  .auth-earn-step{min-height:76px;padding:9px 5px;border-radius:15px}
  .auth-earn-icon{width:30px;height:30px;border-radius:9px;font-size:14px;margin-bottom:4px}
  .auth-earn-step strong{font-size:10px}
  .auth-earn-step small{font-size:8px}
  body[data-lang="my"] .card{padding:19px 15px 18px}
  body[data-lang="my"] .brand-icon{margin-bottom:15px}
  body[data-lang="my"] .otp-boxes{gap:7px}
  body[data-lang="my"] .otp{height:48px!important;font-size:24px!important;border-radius:13px!important}
}

/* ---------------------------------------------------------
   Explicit bilingual/auth typography refresh
   No automatic text replacement is used anymore.
   --------------------------------------------------------- */
html[lang="my"], html[lang="my"] body{
  font-family:"Noto Sans Myanmar","Myanmar Text","Padauk",sans-serif;
}
html[lang="my"] h1,
html[lang="my"] h2,
html[lang="my"] h3,
html[lang="my"] p,
html[lang="my"] label,
html[lang="my"] button,
html[lang="my"] input,
html[lang="my"] .subtitle,
html[lang="my"] .verify-text,
html[lang="my"] .switch{
  letter-spacing:0;
  word-break:normal;
  overflow-wrap:anywhere;
}
html[lang="my"] h1{font-size:clamp(27px,7vw,36px);line-height:1.35;margin-bottom:10px;letter-spacing:0}
html[lang="my"] h2{font-size:clamp(21px,5.5vw,28px);line-height:1.4}
html[lang="my"] .subtitle{font-size:clamp(14px,3.7vw,17px);line-height:1.7;margin-bottom:22px}
html[lang="my"] label{font-size:14px;line-height:1.5;margin-bottom:8px}
html[lang="my"] .input-wrap{height:54px;margin-bottom:16px;border-radius:15px}
html[lang="my"] .input-wrap input{font-size:15px;line-height:1.5;font-family:inherit}
html[lang="my"] .primary{min-height:50px;height:auto;padding:11px 16px;font-size:15px;line-height:1.5;border-radius:15px}
html[lang="my"] .switch{font-size:14px;line-height:1.7;margin-top:20px}
html[lang="my"] .alert{font-size:13px;line-height:1.65}
html[lang="my"] .verify-card h2{font-size:clamp(21px,5.5vw,28px)}
html[lang="my"] .verify-text{font-size:14px;line-height:1.7}
html[lang="my"] .email{font-size:15px;line-height:1.5}
html[lang="my"] .otp{font-family:system-ui,sans-serif;font-size:24px;height:52px}
.auth-earn-visual{margin:18px 0 24px;gap:8px}
.auth-earn-step{min-height:78px;padding:10px 7px;border-radius:16px}
.auth-earn-step strong{font-size:11px;line-height:1.45}
.auth-earn-step small{font-size:9px;line-height:1.4}
html[lang="my"] .auth-earn-step strong{font-family:inherit;font-size:11px;line-height:1.55}
html[lang="my"] .auth-earn-step small{font-family:inherit;font-size:9px;line-height:1.5}
.kc-explicit-lang{position:fixed;top:max(12px,env(safe-area-inset-top));right:12px;z-index:1000;display:flex;align-items:center;gap:8px;padding:6px 10px;border:1px solid rgba(255,255,255,.10);border-radius:999px;background:rgba(20,25,31,.86);backdrop-filter:blur(12px);box-shadow:0 8px 24px rgba(0,0,0,.24);font:700 11px/1.2 Arial,sans-serif}
.kc-explicit-lang a{color:#aeb6be;text-decoration:none;padding:4px 2px}
.kc-explicit-lang a[data-lang-link="en"]{color:#f5c542}
.kc-explicit-lang span{width:1px;height:14px;background:rgba(255,255,255,.15)}
@media(max-width:500px){
 .page{padding:18px 14px 70px}
 .brand-icon{width:82px;height:82px;margin-bottom:18px;border-radius:22px;font-size:36px}
 .card{padding:18px 15px 20px;border-radius:22px}
 .auth-earn-visual{gap:6px}
 .auth-earn-step{min-height:74px;padding:8px 4px}
 html[lang="my"] h1{font-size:28px}
 html[lang="my"] .subtitle{font-size:14px}
 html[lang="my"] .otp{height:48px;font-size:23px}
}

/* =========================================================
   Explicit bilingual UI — Myanmar typography
   Full sentence language selection is server-side; this block only
   controls shaping/size and never translates or replaces text.
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;500;600;700;800;900&display=swap');
html[lang="my"],html[lang="my"] body,html[lang="my"] button,html[lang="my"] input,html[lang="my"] textarea,html[lang="my"] select{font-family:"Noto Sans Myanmar","Myanmar Text","Padauk",system-ui,sans-serif!important;font-synthesis:none;text-rendering:optimizeLegibility;}
html[lang="my"] h1,html[lang="my"] h2,html[lang="my"] h3,html[lang="my"] h4,html[lang="my"] h5,html[lang="my"] h6{font-family:"Noto Sans Myanmar","Myanmar Text","Padauk",system-ui,sans-serif!important;line-height:1.35!important;letter-spacing:0!important;}
html[lang="my"] .page h1{font-size:clamp(25px,7vw,31px)!important;font-weight:800!important;margin-bottom:8px!important;}
html[lang="my"] .subtitle{font-size:14px!important;line-height:1.75!important;}
html[lang="my"] .auth-earn-step strong{font-size:11px!important;line-height:1.55!important;}
html[lang="my"] .auth-earn-step small{font-size:9px!important;line-height:1.55!important;}
html[lang="my"] .input-wrap input,html[lang="my"] input,html[lang="my"] textarea{font-size:15px!important;line-height:1.55!important;}
html[lang="my"] .primary,html[lang="my"] button{line-height:1.55;}
html[lang="my"] .switch{font-size:13.5px!important;line-height:1.75!important;}
html[lang="my"] .alert{line-height:1.7!important;}
html[lang="my"] .info-title{font-size:15px!important;}
html[lang="my"] .info-value,html[lang="my"] .info-label{line-height:1.55!important;}
html[lang="my"] .noti-title,html[lang="my"] .reel-header h1,.task-hero-copy h3,.hero-title{line-height:1.4!important;}

/* Compact, readable form placeholders across the app. */
input::placeholder, textarea::placeholder, select::placeholder{font-size:12px!important;line-height:1.35!important;}
html[lang="my"] input::placeholder, html[lang="my"] textarea::placeholder, html[lang="my"] select::placeholder{font-family:"Noto Sans Myanmar","Myanmar Text",sans-serif!important;font-size:11px!important;line-height:1.45!important;}


/* Local icon replacement: Font Awesome Free only */
.fa-app-icon{display:inline-flex;align-items:center;justify-content:center;line-height:1;flex:0 0 auto;font-size:24px;}
.fa-app-icon.w-100{width:auto!important;}
.c-btn .fa-app-icon{font-size:24px;}
#tab .fa-app-icon{font-size:25px;}
.fa-app-icon[style*="height: 40px"]{font-size:30px;}
.fa-app-icon[style*="height:40px"]{font-size:30px;}
