/*
 * Croz/Word game styles — vendored dari project crozword-desktop
 * (MAMP htdocs/gitkompas/crozword-desktop: style_pre.css + style_sandro.css).
 * File ini DITULIS TANGAN via script (bukan hasil compile SASS): seluruh selector
 * di-scope ke #crozwordApp dan nama class/keyframes yang bentrok dengan CSS
 * Kompas di-rename (.container>.cw-container, .row>.cw-krow,
 * .btn-secondary>.cw-btn-secondary, .text-left>.cw-text-left,
 * modal-open>cw-modal-open, blink>cwBlink, fall>cwFall).
 */

/* ===== vendor: style_pre.css ===== */
/* =========================================
   GLOBAL: Disable text cursor & selection
   for entire game UI
========================================= */

#crozwordApp {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  caret-color: transparent;
}
:root {
    --boxcol: 13;
    --boxrow: 15;
    --sizecol: 14px;
    --sizerow: 14px;
}

#crozwordApp {
    background-color: #fff;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;

    /* position: fixed; */
    height: calc(100% - 0px);
    width: 100vw;
    margin: auto;
}

#crozwordApp .crossword-loader {
    width: 130px;
    height: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

#crozwordApp .square {
    width: 43px;
    height: 16px;
    background-color: #FE98AD;
    animation: cwBlink 1.4s infinite ease-in-out both;
}

#crozwordApp .sq1 {
    background-color: #A5E8FD;
}

#crozwordApp .sq2 {
    background-color: #99E9A3;
}

#crozwordApp .square:nth-child(1) {
    animation-delay: 0s;
}

#crozwordApp .square:nth-child(2) {
    animation-delay: 0.2s;
}

#crozwordApp .square:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes cwBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}


#crozwordApp .confetti-container {
    /* position: fixed; */
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* top: 0;
    left: 0; */
}

#crozwordApp .confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    opacity: 0.8;
    transform: rotate(45deg);
    animation: cwFall linear infinite;
}

@keyframes cwFall {
  from {
    transform: translateY(-20px);
    opacity: 1;
  }
  to {
    transform: translateY(720px);
    opacity: 0;
  }
}


#crozwordApp #bgheader {
    position: absolute;
    width: 100%;
}

#crozwordApp #k1 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -10px;
    width: 100%;
}

#crozwordApp .circular-progress {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    background-color: #FEFAE8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 2px solid #FEF4D0;
}

#crozwordApp .circular-progress::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
}

#crozwordApp .circular-progress2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#4caf50 0%, #e0e0e0 0%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#crozwordApp .circular-progress2::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    background-color: #fff;
    border-radius: 50%;
}

#crozwordApp .progress-value {
    position: relative;
    font-size: 13px;
    font-weight: 600;
}

#crozwordApp .progress-value2 {
    position: relative;
    font-size: 38px;
    font-weight: bold;
    margin-left: 13px;
}

#crozwordApp .prgplayonthefly2 {
    width: 120px;
    height: 120px;
    font-size: 7px;
    margin: auto;
}

#crozwordApp .prgplayonthefly {
    width: 54px;
    height: 23px;
    font-size: 7px;
    font-weight: 600;
    font-family: 'Inter';
}

#crozwordApp #bgin {
    position: absolute;
    /* left: 0; */
    right: 10px;
    margin: auto;
    top: 6px;
    width: 145px;
}


#crozwordApp .cw-krow {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

#crozwordApp .key {
    flex: 1 0 auto;
    max-width: 9%;
    margin: 2px;
    padding: 11px 0;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    user-select: none;
    font-size: 16px;
    /* border: 1px solid #eee; */
}

#crozwordApp .key.space {
    flex: 1;
    max-width: none;
    padding: 15px;
}

#crozwordApp .key.wide {
    max-width: 20%;
}


#crozwordApp .cw-container {
    margin: auto;
}

#crozwordApp #cta {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 100px;
}

#crozwordApp #subcta {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 180px;
}

#crozwordApp .colsq {
    width: 44px;
    height: 55px;
    background-color: #fff;
    display: inline-block;
    margin: 2px;
    text-align: center;
    padding-top: 16px;
    border-radius: 7px;
    border: solid;
    font-size: 30px;
}

#crozwordApp .colsq2 {
    width: 24px;
    height: 30px;
    background-color: #fff;
    display: inline-block;
    margin: 2px;
    text-align: center;
    padding-top: 10px;
    border-radius: 7px;
    border: 1px solid #eee;
}

#crozwordApp .enterbtn {
    width: 50px;
    font-size: 10px;
    padding-top: 15px;
    height: 25px;
    background-color: #000;
    color: #fff;
    opacity: 0;
}


#crozwordApp .textcenter {
    text-align: center;
}

#crozwordApp #bingk {
  width: 180px;
  aspect-ratio: 1 / 1;   /* ⬅️ KUNCI PERSEGI */
  height: auto;          /* biar ratio yang pegang */

  background: #AEE8FF;
  background-image: url(images/kompaslogobg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 113px;

  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;
}

#crozwordApp #gameplay {

    width: 360px;
    top: 70px;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    display: none;
}

#crozwordApp #kk {
    position: absolute;
    z-index: 10;
    bottom: 100px;
}

#crozwordApp #ckeyboard {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    bottom: 10px;
    display: none;
    visibility: hidden !important;   /*hide keyboard desk*/
    pointer-events: none !important; /*hide keyboard desk*/
}

#crozwordApp #boards {
    position: absolute;
    width: 220px;
    padding: 50px;
    text-align: center;
    background-color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 220px;
    z-index: 100;

}

#crozwordApp .rowsq1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
}

#crozwordApp #ml {
    margin-top: 65px;
}

#crozwordApp .ans2 {
    font-size: 30px;
    color: #ffb700;
}

#crozwordApp .cw-text-left {
    text-align: left;
}

#crozwordApp #del {
    background-image: url(images/backspace.png);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
    width: 60px;
}

#crozwordApp #cover {
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

#crozwordApp #midcov {
    /* position: absolute; */
    width: 1070px;
    /* height: 300px; -- dihapus (modifikasi dummy): tinggi mengikuti konten,
       agar daftar seri tidak meluap dari kotaknya */
    overflow-y: hidden; /* modifikasi dummy */
    left: 0;
    right: 0;
    /* top: 100px; */
    /* bottom: 0; */
    margin: auto;
    opacity: 0;
    font-family: "Inter", serif;
}

#crozwordApp #brdtittle {
    line-height: .5;
    font-size: 22px;
}

#crozwordApp #brdpast {
    margin-top: 2;
    line-height: 1;
    margin-top: 8px; /* modifikasi dummy: semula 45px — rapatkan ke tombol share */
    margin-bottom: 8px;
}

#crozwordApp #brdpast1 {    
    margin-top: 2;
    line-height: 1;
    margin-top: 45px;
    margin-bottom: 8px;
    border-top: 1px solid #E5E7EB;
    padding-top: 16px; 
    color: #36383A;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.4px;
}
/* .brdpic_h {
    width: 89px;
    top: 0;
    left: 0pc;
    margin: auto;
} */

/* .brdpic_h img {
    width: 100%;
} */

#crozwordApp .brdpic {
    width: 80px;
    top: 0;
    left: 0pc;
    margin: auto;
    display: inline-block;
    height: 80px;
    background-color: #FE98AD;
    border-radius: 10px;
    margin-right: 10px;
}

#crozwordApp .brdpast {
    color: #36383A;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.4px;
}

#crozwordApp .brdpic img {
    width: 42px;
    height: 48px;
    margin-left: 20px;
    margin-top: 15px;
    border-radius: 8px;
}

#crozwordApp .brdinfo_h {
    font-size: 14px;
    width: 220px;
    margin-right: 10px;
    line-height: 1;
    margin: auto;
    margin-top: 79px;
    text-align: center;
}

#crozwordApp .brdname_h {
    margin-top: 0px;
}

#crozwordApp .brdinfo_hh {
    margin-top: 7px;
}

#crozwordApp .brdinfo {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    width: 220px;
    margin-right: 10px;
    line-height: 1;
}

#crozwordApp .brdname {
    font-weight: 700;
    font-size: 18px;
    height: 25px;
    line-height: 1;
}

#crozwordApp .brdbutton {
    display: inline-block;
    vertical-align: 24px;
    width: 60px;
    text-align: center;
}

#crozwordApp .brdbutton img {
    width: 30px;
}

#crozwordApp .prgbox {
    height: 6px;
    width: 45%;
    margin-top: 15px;
    background-color: #D9D9D9;
    overflow: hidden;
    display: inline-block;
    margin-right: 5px;
    border-radius: 40px;
}

#crozwordApp .brdpast2 {
    color: #6C6F75;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.5;
}

#crozwordApp .brdpast3 {
    color: #6C6F75;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: -30px;
}

#crozwordApp .brdpast2 a {
    color: #0F79C6;
    text-decoration: underline;
    font-weight: 700;
}


#crozwordApp .prgtext {
    display: inline-block;
    font-size: 10px;
}

#crozwordApp .prgval {
    transform-origin: left;
    width: 0%;
    background-color: #E55225;
    height: 6px;
}

#crozwordApp .cardboard {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px #E7E8E9 solid;
    /* border-radius: 25px; */
    /* padding-left: 15px; */
    padding-top: 0px;
    line-height: 1;
    width: 100%;
    margin: 0 0 18px;
}

#crozwordApp #howtocont {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 15;
    display: none;
}

#crozwordApp #howtotop {
    padding-top: 12px;
    padding-left: 20px;
    color: #36383A;
    font-weight: 500;
    font-size: 18px;
}

#crozwordApp .menutab {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}

#crozwordApp .activetab {
    color: #0F79C6 !important;
    font-weight: 700;
    border-bottom: 2px solid #0F79C6;
}

#crozwordApp #howtotop2 {
    display: flex;
    justify-content: space-evenly;
    padding-left: 20px;
    margin-top: 20px;
    padding-right: 20px;
}

#crozwordApp #howtotop3 {
    padding-left: 20px;
    margin-top: 20px;
    padding-right: 20px;
    overflow-y: scroll;
    height: 400px;
}

#crozwordApp #howtotop4 {
    padding-left: 20px;
    padding-right: 20px;
    height: 35px;
    background-color: #0F79C6;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    width: 330px;
    position: relative;
    margin: 20px auto;
    border-radius: 10px;
}

#crozwordApp #howtotop3 li {
    margin-bottom: 10px;
}

#crozwordApp .menutab {
    color: #666666;
}

#crozwordApp #tncpart {
    display: none;
}


#crozwordApp .howpartitem {
    margin-bottom: 40px;
}

#crozwordApp .imgconthow {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
}

#crozwordApp #closehowto {
    top: 4px;
    display: inline;
    position: relative;

}



#crozwordApp #howtowindow {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 600px;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
}

#crozwordApp #suksesbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 120px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 12;
    pointer-events: none;
    display: none;
}

#crozwordApp #sskcopy {
    position: absolute;
    width: 300px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#crozwordApp #sskg {
    position: absolute;
    width: 150px;
    top: 310px;
    left: 40px;
    right: 0;
}

#crozwordApp #sskb {
    position: absolute;
    width: 150px;
    top: 310px;
    right: 40px;
}

/* #confibox {
    position: fixed;
    font-family: "Kadwa", serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    display: none;
    z-index: 12;
} */

#crozwordApp #confibox {
    position: fixed;
    inset: 0; /* top right bottom left = 0 */

    display: none; /* default hidden */
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.5); /* black 50% */
    z-index: 2000;

    /* typography mengikuti global */
    font-family: 'Inter', sans-serif;
}

#crozwordApp #btnloadmore {
    bottom: 56px;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: 600;

    width: 200px;
    /* height: 20px; -- dihapus (modifikasi dummy): tinggi ikut konten */
    background-color: #fff;
    color: #0F79C6;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1.5px solid #0F78C6;
    display: none;
}

/* #butmulai {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: auto;
    width: 200px;
    height: 20px;
    background-color: #0F79C6;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    pointer-events: none;
} */

#crozwordApp #confiboxout {
    position: fixed;
    font-family: "Kadwa", serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    display: none;
    z-index: 12;
}

#crozwordApp #confiboxexit {
    position: fixed;
    font-family: "Kadwa", serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    /* display: none; */
    z-index: 12;
}

#crozwordApp #sublinetittle {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 375px;
    position: absolute;
    left: 0;
    z-index: 15;
    margin: auto;
    margin-top: 340px;
    width: 220px;
    text-align: center;
    right: 0;
    display: none !important;
}

#crozwordApp #confiboxinfo {
    position: fixed;
    font-family: "Kadwa", serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    display: none;
    z-index: 12;
}

#crozwordApp .headcw {
    display: flex;
    justify-content: space-between;
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 14px;
    margin-bottom: 30px;
}

#crozwordApp #loadinganim {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    margin: auto;
}

#crozwordApp #nonprem {
    position: fixed;
    font-family: "Kadwa", serif;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    display: none;
    z-index: 12;
}

#crozwordApp #nologinuser {
    /* modifikasi dummy: semula overlay fixed full-screen (menutup header/footer
       situs) — kini blok biasa di dalam alur konten halaman */
    position: static;
    font-family: "Kadwa", serif;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 32px 16px 48px;
    text-align: center;
    background-color: transparent;
    display: none;
}


#crozwordApp #btnlogin {
    position: static;
    display: block;
    margin: 24px auto 0;
    width: 200px;
    height: 45px;
    background-color: #0F79C6;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

#crozwordApp #nologinuser img {
    position: static;
    display: block;
    width: 340px;
    max-width: 85%;
    margin: 0 auto;
}


#crozwordApp #iconconfi {
    position: absolute;
    width: 125px;
    top: -139px;
    left: 0;
    right: 0;
    margin: auto;
}

#crozwordApp #iconmain {
    position: absolute;
    width: 295px;
    top: -130px;
    left: 0;
    right: 0;
    margin: auto;
}

#crozwordApp #modalconf {
    position: fixed;
    width: 100%;
    height: 526px;
    font-family: "Inter", serif;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 20px;
    text-align: center;
    /* padding: 15px 15px 0; */
    line-height: 1;
}


#crozwordApp #modalconf3 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 295px;
    height: 488px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px #000 solid;
    border-radius: 20px;
    padding-left: 15px;
    padding-top: 15px;
    line-height: 1;
    padding-right: 15px;
    text-align: center;

}

#crozwordApp #modalconf4 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 295px;
    height: 427px; /* modifikasi dummy: semula 517px */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px #000 solid;
    border-radius: 20px;
    padding-left: 15px;
    padding-top: 15px;
    line-height: 1;
    padding-right: 15px;
    text-align: center;
    background-color: #fff;
}

#crozwordApp #confiboxexit {
    display: none;
}

#crozwordApp #modalnonprem {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 330px; /* modifikasi dummy: semula 300px */
    height: 600px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px #000 solid;
    border-radius: 36px;
    padding-left: 15px;
    padding-top: 15px;
    line-height: 1;
    padding-right: 15px;
    background-color: #FFE240;
    text-align: center;
    overflow: hidden;
}

#crozwordApp #msgprem {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 8px;
}


#crozwordApp #imgconfnonprem {
    width: 300px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 348px;
}

#crozwordApp #btnpremclose {
    width: 30px;
    position: absolute;
    right: 16px;
    top: 16px;
}

#crozwordApp #nonpremtittle {
    font-size: 33px;
    font-family: "Kadwa", serif;
    line-height: 1.3;
    margin-top: 45px;
}

#crozwordApp #brdconss {
    font-size: 17px;
    font-weight: 400;
}

#crozwordApp .confboxplay {
    font-size: 26px !important;
    line-height: 1.2 !important;
}

#crozwordApp #imgconfbrd {
    width: 130px;
    left: 0;
    right: 0;
    margin: 0 auto 0;
    display: block;
}

#crozwordApp #conno {
    left: 0;
    right: 0;
    margin: auto;
    width: 85%;
    height: 20px;
    background-color: #fff;
    color: #0F79C6;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #E2E2E2;
}

#crozwordApp #conno2 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 90px;
    height: 30px;
    right: 186px;
    display: inline-block;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    border-radius: 50px;
}

#crozwordApp #conno3 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 90px;
    height: 30px;
    right: 186px;
    display: inline-block;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    top: 466px;
}

#crozwordApp #conyesnonprem {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 275px;
    height: 40px; /* modifikasi dummy: semula 30px */
    right: 0;
    display: inline-block;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    top: 538px;
    left: 0;
    margin: auto;
    border-radius: 16px
}

#crozwordApp #conyes2 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 115px;
    height: 30px;
    right: 48px;
    display: inline-block;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    border-radius: 50px;

}

#crozwordApp #conyes3 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 115px;
    height: 30px;
    right: 48px;
    display: inline-block;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    top: 466px;
}

#crozwordApp #conyes4 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 115px;
    height: 40px; /* modifikasi dummy: semula 30px */
    color: #fff;
    background-color: #000;
    text-align: center;
    padding-top: 13px;
    border: 1px #000 solid;
    top: 362px; /* modifikasi dummy: semula 466px */
    border-radius: 30px;
    margin: auto;
    left: 0;
    right: 0;
}

#crozwordApp #conyes {
    left: 0;
    right: 0;
    margin: auto auto 12px;
    width: 85%;
    height: 20px;
    background-color: #0F79C6;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

#crozwordApp #barr_right {
    position: absolute;
    width: 20px;
    right: 77px;
    top: 55px;
    bottom: 0;
    margin: auto;
}

#crozwordApp #barr_left {
    position: absolute;
    width: 20px;
    left: 77px;
    top: 55px;
    bottom: 0;
    margin: auto;
}

#crozwordApp #headergame {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /* background-color: #f8f8f8; */
    position: relative;
    margin-top: 8px;
    z-index: 13;
    display: none !important;
}

#crozwordApp #prpplayicon {
    display: none;
    height: 26px;
}

#crozwordApp #logo_kom {
    width: 130px;
}

#crozwordApp .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    /* display: none !important; */
}

#crozwordApp .header-arrow {
    min-width: 24px; /* modifikasi dummy: semula width 24px — muat tombol "Kembali" */
    display: flex;
    align-items: center;
}

#crozwordApp .header-right {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

#crozwordApp #hinticoncontainer {
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    transition: transform 0.2s ease;
}

#crozwordApp #hinticoncontainer:hover {
    transform: scale(1.1);
}

#crozwordApp #hint-icon {
    width: 24px;
    height: 24px;
}

#crozwordApp #hint-badge {
    position: absolute;
    top: 3px;
    right: -1px;
    background-color: #E55225;
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    border-radius: 50%;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}


#crozwordApp #timecountdown {
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#crozwordApp .timer-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 29px;
}

#crozwordApp #timer {
    font-family: "Inter", serif;
    font-size: 14px;
    font-weight: bold;
    color: #e91e63;
}

#crozwordApp #backarro_play {
    display: none;
    /* modifikasi dummy: panah diganti tombol biru "Kembali"
       (game.js men-set display:block saat in-game) */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background-color: #0F79C6;
    border: 0;
    border-radius: 20px;
    padding: 8px 18px;
    cursor: pointer;
    white-space: nowrap;
}

#crozwordApp #modalconf2 {
    position: absolute;
    font-family: "Kadwa", serif;
    width: 295px;
    height: 290px;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 3px #000 solid;
    border-radius: 20px;
    padding-left: 15px;
    padding-top: 0px;
    line-height: 1;
    padding-right: 15px;
    text-align: center;
}

#crozwordApp .conh {
    line-height: 1.1;
    /* modifikasi dummy: 3 properti di bawah tambahan */
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

#crozwordApp #botcov {
    position: absolute;
    width: 360px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;

}

#crozwordApp #logogame {
    width: 100%;
    /* margin-bottom: 60px; */
}

#crozwordApp #btnmulai {
    width: 210px;
    margin-top: 45px;
    background-color: #000;
    color: #FFF;
    font-family: "Kadwa", serif;
    font-weight: 700;
    left: 0;
    right: 0;
    position: relative;
    margin: auto;
    top: 43px;
    height: 45px;
    padding-top: 12px;
    border-radius: 14px;
    display: none;
}

#crozwordApp #coprt {
    position: absolute;
    bottom: 20px;
    text-align: center;
    font-size: 9px;
    width: 300px;
    left: 0;
    right: 0;
    margin: auto;
    color: #C0C0C0;
}

#crozwordApp #btncon {
    width: 210px;
    margin-top: 6px;
}

#crozwordApp #hht {
    position: fixed;
    width: 320px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30%;
    z-index: 200;
    background-color: white;
    padding: 10px;
    display: none;
}

/* Container for the board */
#crozwordApp .board {
    grid-template-columns: repeat(var(--boxcol), var(--sizecol));
    grid-template-rows: repeat(var(--boxrow), var(--sizerow));
    display: grid;
    width: fit-content;
    margin: 7px auto 10px auto;
    box-sizing: border-box;
    border: solid 2px #222;

    /* border-top: solid 1px #222; */
}

/* Each cell in the grid */
#crozwordApp .cell {
    width: 18px;
    height: 18px;
    /* Border for each cell */
    box-sizing: border-box;
    /* Include border in width and height */
}

#crozwordApp .s-board {
    justify-content: space-evenly;
    border-right: solid 1px #acacac;
    justify-content: space-evenly;
    border-bottom: solid 1px #acacac;
    /* text-align: center; */
    vertical-align: middle;
    font-size: 13px;
}

#crozwordApp .s-b-black {
    background-color: #000;
    border-right: solid 1px #222;
    border-bottom: solid 1px #222;
}

#crozwordApp .lblnum {
    position: relative;
    top: -15px;
    left: 2px;
    font-size: 6px;
    pointer-events: none;
    /* color: #e91e63; */
    display: flex;
}

#crozwordApp .anwbox {
    position: relative;
    font-size: 13px;
    pointer-events: none;
    left: 0;
    right: 0;
    justify-content: center;
    display: flex;
    top: 5px;
    font-weight: 600;
}

#crozwordApp .mb-50 {
    margin-bottom: 50px !important;
}

#crozwordApp #hrdy {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
}

#crozwordApp #statusq {
    left: 0;
    right: 0;
    bottom: 254px;
    width: 190px;
    height: 30px;
    margin: auto;
    max-width: 360px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    pointer-events: none;
}

#crozwordApp #boardnum {
    /* modifikasi dummy: badge di-flex-center agar angka presisi di tengah
       (semula inline-block 15x10 + padding ganjil) */
    border-radius: 30px;
    background-color: #0f79c6;
    font-size: 9px;
    padding: 0;
    width: 20px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
    color: #fff;
}

#crozwordApp #howtobutton {
    background-color: #D52A42;
    margin-top: -29px;
    position: relative;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 16px;
    height: 39px;
    padding-top: 33px;
    display: none;
}

/* .headlineboard {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: 55px;
    height: 392px;
} */

#crozwordApp #qdisp {
    width: 100%;
    height: 47px;
    /* border-radius: 10px; */
    /* border: 1px solid #eee; */
    background-color: #EBF6FE;
    margin: auto;
    /* max-width: 360px; */
    display: flex;
    margin-top: 10px;
    border-radius: 0 !important;
}

#crozwordApp #magnifybox {
    /* position: absolute; */
    left: 0;
    right: 0;
    top: 170px;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    display: none !important;

}

#crozwordApp #bghut {
    position: absolute;
    width: 100%;
}

#crozwordApp #hutcont {
    /* background-image: url(assets/nor_bg.png); */
    background-size: cover;
    background-position: center;
    height: 454px;
    margin-top: -13px;
    position: relative;
    z-index: 1;
    /* border: 1px solid aliceblue; */
    border-radius: 8px;
    border: 1px solid #F3F3F4;
    /* background: #FFF; */
    /* box-shadow: 0 4px 20px 0 rgba(18, 18, 18, 0.05); */
    overflow: hidden;
    margin-bottom: 40px;
}


/* 
#bghutbg {
    position: absolute;
    width: 100%;
    height: 209px;
    background-color: #A5E8FD;
    background-image: url(images/kompaslogobg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 130px;
} */

#crozwordApp .magtiles {
    width: 28px;
    height: 28px;
    border: 1px solid #E0E0E0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 2px;
    background: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
}

/* Hint Popup Styles */
#crozwordApp #hint-popup,
#crozwordApp #hint-subscription-popup {
    position: fixed;
    bottom: -437px;
    left: 0;
    width: 100%;
    height: 437px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

#crozwordApp #hint-popup.show,
#crozwordApp #hint-subscription-popup.show {
    transform: translateY(0);
    bottom: 0;
}

#crozwordApp .hint-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    /* border-bottom: 1px solid #eee; */
}

#crozwordApp .hint-popup-header span {
    font-weight: bold;
    font-size: 18px;
}

#crozwordApp .hint-popup-header img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#crozwordApp .hint-popup-content {
    padding: 20px;
    text-align: center;
}

#crozwordApp .hint-popup-content p {
    margin-bottom: 15px;
    color: #333;
}

#crozwordApp .hint-image {
    max-width: 100%;
    margin: 0 auto 15px;
    display: block;
}

#crozwordApp #hint-remaining {
    font-weight: bold;
    color: #FE98AD;
}

#crozwordApp #use-hint-btn {
    margin: auto auto 12px;
    width: 100%;
    height: 43px;
    background-color: #0F79C6;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

#crozwordApp #use-hint-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#crozwordApp #use-hint-btn:not(:disabled):hover,
#crozwordApp #subscribe-now-btn:hover {
    background-color: #0d6aad;
}

#crozwordApp #subscribe-now-btn {
    margin: auto auto 12px;
    width: 100%;
    height: 43px;
    background-color: #0F79C6;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

#crozwordApp #qcont {
    width: 600px;
    align-items: center;
    justify-content: left;
    height: 100%;
    width: 90%;
    display: flex;
    text-align: center;
    font-size: 14px;
    color: #36383A;
}

#crozwordApp #larr {
    background-image: url(images/arr_left.svg?v=1);
    height: 100%;
    width: 4%;
    margin-left: -10px;
    background-repeat: no-repeat;
    background-position: center;
}

#crozwordApp #rarr {
    background-image: url(images/arr_right.svg?v=1);
    height: 100%;
    width: 4%;
    background-repeat: no-repeat;
    background-position: center;
}

#crozwordApp #infotts {
    /* display: none; */
}

#crozwordApp #ttsinfo1 {
    font-size: 12px;
    font-weight: bold;
}

#crozwordApp #ttsinfo2 {
    font-size: 10px;
    color: #bfbebe;
}

#crozwordApp .leftcontrolbtn {
    display: flex;
    gap: 10px;
    justify-content: end;
}

#crozwordApp .finput {
    font-family: 'Open Sans';
    width: 310px;
    font-weight: 500;
    margin-bottom: 6px;
    height: 47px;
    border-radius: 50px;
    border: 1px #bebbbb solid;
    text-align: center;
    background-color: rgba(255, 255, 255, .6);
    color: #000;
}

#crozwordApp #reguser {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 200px;
    height: 170px;
    display: none;
}

#crozwordApp #btnsave1 {
    width: 210px;
    margin-top: 16px;
}

#crozwordApp #btncancel1 {
    width: 210px;
    margin-top: 6px;
}

#crozwordApp .tittles {
    font-size: 12px;
    font-weight: bold;
}

#crozwordApp .ft-wght-300 {
    font-weight: 300 !important;
}

#crozwordApp #welcomemsg {
    line-height: 1.3;
    font-weight: 500;
}

#crozwordApp h4 {
    line-height: 1.3;
}

@media screen and (min-width: 400px) {

    #crozwordApp #gameplay {
        /* position: absolute; */
        top: 70px;
        left: 0;
        right: 0;
        margin: auto;
        width: 410px;
        max-width: 410px;
        display: none;
    }

    /* Container for the board */
    #crozwordApp .board {
        grid-template-columns: repeat(var(--boxcol), var(--sizecol));
        grid-template-rows: repeat(var(--boxrow), var(--sizerow));
        display: grid;
        width: fit-content;
        margin: 7px auto 10px auto;
        box-sizing: border-box;
        border: solid 2px #222;
        /* border-top: solid 1px #222; */
    }


    #crozwordApp .s-board {
        justify-content: space-evenly;
        border-right: solid 1px #E7E8E9;
        justify-content: space-evenly;
        border-bottom: solid 1px #E7E8E9;
        /* text-align: center; */
        vertical-align: middle;
        font-size: 13px;
    }

    #crozwordApp #qdisp {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        height: 47px;
        background-color: #EBF6FE;
        margin: auto;
        display: flex;
        margin-top: 10px;
        bottom: 176px;
        width: 100%;
        height: 47px;
        border-radius: 10px;
        border: 1px solid #eee;
        background-color: #D9EAFD;
        margin: auto;
        max-width: 410px;
        display: flex;
    }

    #crozwordApp .colsq2 {
        width: 30px;
        height: 30px;
        background-color: #fff;
        display: inline-block;
        margin: 2px;
        text-align: center;
        padding-top: 10px;
        border-radius: 7px;
        border: 1px solid #eee;
    }

    #crozwordApp .anwbox {
        position: relative;
        font-size: 14px;
        pointer-events: none;
        left: 0;
        right: 0;
        justify-content: center;
        display: flex;
    }
}

#crozwordApp #prgconf {
    font-size: 14px;
    display: none;
}

@media only screen and (min-height: 650px) {
    #crozwordApp #statusq {
        display: none;
    }
}

@media only screen and (min-height: 660px) {
    #crozwordApp #statusq {
        display: none;
    }

    #crozwordApp #magnifybox {
        display: none;
    }
}

@media only screen and (min-height: 690px) {
    #crozwordApp #statusq {
        display: block;
    }

    #crozwordApp #magnifybox {
        display: flex;
    }
}

@media only screen and (max-width: 400px) {
    #crozwordApp #midcov {
        width: 90%;
        /* height: 485px; -- dihapus (modifikasi dummy): tinggi ikut konten */
        left: 0;
        right: 0;
        margin: auto;
        opacity: 0;
        font-family: "Inter", serif;
    }

    #crozwordApp .brdinfo {
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
        width: 220px;
        margin-right: 10px;
        line-height: 1;
    }

    #crozwordApp #brdpast {
        margin-top: 16px;

    }

    #crozwordApp .confboxplay {
        /* font-size: 20px !important;
        line-height: 1.2 !important;
        margin-block-start: 0px;
        margin-bottom: 20px; */
    }
}

/* Exit Confirmation Popup Styles */
#crozwordApp #exit-confirmation-popup {
    position: fixed;
    bottom: -437px;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, bottom 0.3s ease;
    transform: translateY(100%);
    height: 419px;
    overflow-y: auto;
}

#crozwordApp #exit-confirmation-popup.show {
    transform: translateY(0);
    bottom: 0;
}

#crozwordApp #exit-confirmation-popup .hint-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

#crozwordApp #exit-confirmation-popup .hint-popup-header span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

#crozwordApp #exit-confirmation-popup .hint-popup-header img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#crozwordApp #exit-confirmation-popup .hint-popup-content {
    padding: 20px;
    text-align: center;
}

#crozwordApp #exit-confirmation-popup .hint-popup-content p {
    margin: 0 0 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

#crozwordApp .confirmation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

#crozwordApp .btn-primary, #crozwordApp .btn-cancel {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

#crozwordApp .btn-primary {
    background-color: #0F79C6;
    color: white;
}

#crozwordApp .btn-cancel {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

#crozwordApp .btn-primary:hover {
    background-color: #0d6aad;
}

#crozwordApp .btn-cancel:hover {
    background-color: #e0e0e0;
}

/* Make sure the popup is visible on top of other elements */
#crozwordApp #exit-confirmation-popup {
    z-index: 2000;
}

    #crozwordApp #conno {
        left: 0;
        right: 0;
        margin: auto;
        width: 85%;
        height: 20px;
        background-color: #fff;
        color: #0F79C6;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
        border: 1px solid #E2E2E2;
    }

    #crozwordApp #conyes {
        left: 0;
        right: 0;
        margin: auto auto 12px;
        width: 85%;
        height: 20px;
        background-color: #0F79C6;
        color: #fff;
        text-align: center;
        padding: 10px;
        border-radius: 10px;
    }

    #crozwordApp #conno2 {
        position: absolute;
        font-family: "Inter", serif;
        width: 90px;
        height: 30px;
        right: 186px;
        display: inline-block;
        text-align: center;
        padding-top: 13px;
        border: 1px #000 solid;
        top: 210px;
        border-radius: 30px;
    }

    #crozwordApp #conyes2 {
        position: absolute;
        font-family: "Inter", serif;
        width: 115px;
        height: 30px;
        right: 48px;
        display: inline-block;
        color: #fff;
        background-color: #000;
        text-align: center;
        padding-top: 13px;
        border: 1px #000 solid;
        top: 210px;
        border-radius: 30px;
    }

    #crozwordApp #conno3 {
        position: absolute;
        font-family: "Inter", serif;
        width: 90px;
        height: 30px;
        right: 186px;
        display: inline-block;
        text-align: center;
        padding-top: 13px;
        border: 1px #000 solid;
        border-radius: 30px;
        top: 420px;
    }

    #crozwordApp #conyes3 {
        position: absolute;
        font-family: "Inter", serif;
        width: 115px;
        height: 30px;
        right: 48px;
        display: inline-block;
        color: #fff;
        background-color: #000;
        text-align: center;
        padding-top: 13px;
        border: 1px #000 solid;
        border-radius: 30px;
        top: 420px;
    }


@media (max-height: 749px) {
    #crozwordApp #statusq {
        display: none !important;
    }

    #crozwordApp #magnifybox {
        display: none !important;
    }
}



/* ===== vendor: style_sandro.css ===== */
/*=====================================================
  =====================================================
  DESKTOP - MENU 
  SANDRO
  =====================================================
  ===================================================== */

@media (min-width: 1024px) {
  /* default: menu */
  #crozwordApp .question-panel {
    display: none;
  }
  /* ===============================
     WRAPPER UTAMA
  =============================== */
  #crozwordApp .desktop-menu #hutcont {
    position: relative;
    width: 1070px; /* 700 + 370 */
    height: 300px;
    margin: 24px auto 0;
    background: transparent;

    border: none !important;
    box-shadow: none !important;
    outline: none !important;

    margin-bottom: -20px;
  }

  /* ===============================
     LEFT-SECTION – 700px
  =============================== */
  #crozwordApp .desktop-menu #bghutbg {
    position: absolute;
    top: 0;
    left: 0;

    width: 535px;
    height: 100%;

    background-color: #a5e8fd;
    background-image: url(images/kompaslogobg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 220px; /* modifikasi dummy: semula 130px */

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
  }

  /* Wrapper gambar – TANPA ukuran */
  #crozwordApp .desktop-menu #bghutbg .brdpic_h {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Gambar – SATU-SATUNYA YANG PUNYA SIZE */
  #crozwordApp .desktop-menu #bghutbg .brdpic_h img {
    width: 150px; /* modifikasi dummy: semula 125px */
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  /* ===============================
     RIGHT-SECTION – 370px
  =============================== */
  #crozwordApp .desktop-menu .cardboard_h.headlineboard {
    position: absolute;
    top: 0;
    right: 0;

    width: 535px;
    height: 300px;

    padding: 24px;
    box-sizing: border-box;

    background: #ffffff;
    border-radius: 12px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    align-items: flex-start;
    justify-content: center;

    z-index: 2;
  }

  /* ===============================
     CENTER-CARD 
    =============================== */
  #crozwordApp .desktop-menu .card-center {
    display: flex;
    flex-direction: column;
    gap: 12px;

    justify-content: center; /* CENTER VERTICAL */
    align-items: flex-start;

    height: 100%;
    width: 100%;
  }

  #crozwordApp .desktop-menu .brdtimer {
    margin-top: 16px;
  }

  #crozwordApp .desktop-menu .brdtimer #timer {
    font-size: 12px;
  }

  /* ===============================
     INFO-CW
  =============================== */
  #crozwordApp .desktop-menu .brdinfo_h {
    margin: 0;
    width: 100%;
    text-align: left;
  }

  #crozwordApp .desktop-menu .brdname_h {
    display: block;
    width: 100%;

    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
  }

  #crozwordApp .desktop-menu .brdinfo_hh {
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
  }

  /* ===============================
     PROGRESS - BAR & PERCENTAGE
  =============================== */
  #crozwordApp .desktop-menu .brdprog {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #crozwordApp .desktop-menu .brdprog .prgbox {
    width: 100%;
    max-width: 100px;
    height: 4px;
    border-radius: 4px;
    margin-top: -1px;
  }

  #crozwordApp .desktop-menu .prgbox {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    overflow: hidden;
  }

  #crozwordApp .desktop-menu .prgtext {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
  }

  /* ===============================
     BUTTON - BUTMULAI
  =============================== */
  #crozwordApp .desktop-menu .headlineboard #butmulai {
    margin-top: auto;
    width: 100%;
    height: 44px;
    margin-top: 12px;

    background: #0f79c6;
    color: #ffffff;
    border-radius: 12px;

    text-align: center;
    line-height: 44px;
    cursor: pointer;
  }

  /* ===============================
    TIMER – DALAM CARD CENTER
    =============================== */

  #crozwordApp .brdtimer {
    background: #fee9e9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-left: 6px;
    margin-top: 6px;

    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
  }

  /* Label "Sisa waktu" */
  #crozwordApp .brdtimer-label {
    font-size: 12px;
    color: #c11c1c;
  }

  /* Value timer */
  #crozwordApp .brdtimer #timer {
    color: #c11c1c;

    padding: 4px 8px;
    border-radius: 6px;

    font-weight: 600;
    line-height: 1;
  }
}

/*  =====================================================
    ===================================================== */

/*=====================================================
  =====================================================
  DESKTOP - IN GAME 
  SANDRO
  =====================================================
  ===================================================== */
@media (min-width: 1024px) {
  /* ===============================
     TOP GAME
    =============================== */

  #crozwordApp .top-game {
    background: #ffffff;
    width: 1070px;
    height: 60px;
    margin: 16px auto 12px;

    display: none;
    justify-content: space-between;
    align-items: center;

    padding: 0 16px;
    box-sizing: border-box;
    border: 0.5px solid #e5e7eb; /* ← outline abu tipis */
  }

  /* Bagian kiri: judul & tanggal board */
  #crozwordApp .top-game-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #crozwordApp .top-game-left .brdname_h {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
  }

  #crozwordApp .top-game-left .brdinfo_hh {
    font-size: 12px;
    color: #6b7280;
    margin-top: -0.5px;
  }

  /* arrow + title wrapper */
  #crozwordApp .top-game-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* arrow */
  #crozwordApp .top-game-title-wrap .header-arrow {
    display: flex;
    align-items: center;
  }

  /* teks kanan (atas-bawah) */
  #crozwordApp .top-game-text {
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  /* Bagian kanan: progress & hint */
  #crozwordApp .top-game-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  #crozwordApp .top-game-right .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* ===============================
     RESET OLD CSS | QUESTION-BAR 
  =============================== */
  #crozwordApp #qdisp,
  #crozwordApp #statusq,
  #crozwordApp #magnifybox {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    width: 100%;
    max-width: none;
    margin: 0;
  }

  #crozwordApp .ingame-layout {
    display: none;
  }

  /* ===============================
    WRAPPER QUESTION BAR
=============================== */
  #crozwordApp .question-bar {
    width: 1070px;
    margin: 0 auto 12px;
    margin-top: -12px;
  }

  /* ===============================
     QDISP CONTAINER
  =============================== */
  #crozwordApp .question-bar #qdisp {
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;
    box-sizing: border-box;

    background: #e6f1f9;
    border: 0.5px solid #e5e7eb;
  }

  /* ===============================
     TENGAH (STATUS + SOAL)
  =============================== */
  #crozwordApp .question-center {
    display: flex;
    width: 800px;
    flex-direction: row; /* sejajar */
    align-items: center;
    gap: 12px;
    text-align: left;

    justify-content: flex-start;
    margin-left: -135px;
    align-items: center; /* Penting */
  }

  #crozwordApp #statusq {
    margin-top: 8px;
    display: flex;
    gap: 6px;

    width: 150px; /* sesuai Figma */
    height: 24px; /* sesuai Figma */

    justify-content: center;
    align-items: center;

    white-space: nowrap;

    font-size: 14px;
    color: #000000;
  }
  #crozwordApp #statusq::after {
    content: "•";
    margin: 0 12px;
    color: #5a5a5a;
    font-weight: 200;
  }

  #crozwordApp #boardnum {
    font-weight: 700;
    color: #ffffff;
    /* modifikasi dummy: padding 4px 6px & top -2px dihapus —
       centering kini dari flex di rule dasar */
    margin-right: 5px;
  }

  #crozwordApp #qcont {
    width: 600px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-left: 35px;
    margin-top: 2.5px;
  }
}

/* =====================================================
   DESKTOP IN-GAME SANDRO
   BOARD-GAME PLAY DAN QUESTION PANEL
===================================================== */
@media (min-width: 1024px) {
  /* ===============================
     TOP GAME AKTIF SAAT INGAME
  =============================== */
  body.is-ingame #crozwordApp .top-game {
    display: flex;
  }

  /* ===============================
     INGAME LAYOUT (FIX SIZE)
  =============================== */
  body.is-ingame #crozwordApp .ingame-layout {
    position: relative; /* penting */
    width: 1070px;
    height: 700px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    overflow: hidden;
  }

  /* ===============================
     DESKTOP INGAME CONTENT
  =============================== */
  body.is-ingame #crozwordApp .desktop-ingame-layout {
    flex: 1;
    width: 100%;
    margin: 0 auto;

    display: flex;
    gap: 24px;
    align-items: flex-start;

    overflow: hidden;

    margin-top: 20px;
  }

  /* ===============================
     GAMEPLAY CONTAINER
  =============================== */
  body.is-ingame #crozwordApp #gameplay {
    position: static !important;

    width: 416px !important;
    height: 480px !important;

    max-width: 416px !important;
    min-width: 416px !important;

    margin: 0 !important;
    padding: 0;

    display: block !important;
    opacity: 1 !important;

    flex-shrink: 0;
  }

  /* ===============================
     BOARD GRID
  =============================== */
  body.is-ingame #crozwordApp #gameplay .board {
    width: 100% !important;
    height: 100% !important;

    grid-template-columns: repeat(var(--boxcol), 1fr) !important;
    grid-template-rows: repeat(var(--boxrow), 1fr) !important;

    margin: 0 !important;
  }

  /* 
  body.is-ingame #gameplay .s-board,
  body.is-ingame #gameplay .s-b-black {
    width: 100%;
    height: 100%;
  } */

  body.is-ingame #crozwordApp #gameplay .cell {
    box-sizing: border-box;
    border-right: 1px solid #e7e8e9;
    border-bottom: 1px solid #e7e8e9;
  }

  /* ===============================
     QUESTION PANEL
  =============================== */
  body.is-ingame #crozwordApp .question-panel {
    width: 630px;
    height: 480px;

    display: flex;
    gap: 16px;

    background: #ffffff;
    overflow: hidden;

    flex-shrink: 0;
  }

  body.is-ingame #crozwordApp .question-title {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  body.is-ingame #crozwordApp .question-group {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 307px;
  }

  body.is-ingame #crozwordApp .question-group.mendatar {
    border-right: 1px solid #e5e7eb;
    width: 307px;
  }

  body.is-ingame #crozwordApp .question-list {
    flex: 1;
    min-height: 0;

    display: flex;
    flex-direction: column;
    gap: 6px;

    overflow-y: auto;
    padding-right: 6px;
  }

  body.is-ingame #crozwordApp .question-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 4px;
    color: #111827;
  }

  body.is-ingame #crozwordApp .question-item:hover {
    background: #f3f4f6;
  }

  body.is-ingame #crozwordApp .question-item.active {
    background: #e6f1f9;
    padding: 10px;
    position: relative;
  }

  body.is-ingame #crozwordApp .question-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;
    background: #0f79c6;
    border-radius: 16px 0 0 16px; /* rounded ikut shape */
  }

  body.is-ingame #crozwordApp .question-item .q-num {
    min-width: 22px;
    font-weight: 600;
  }
}

/* =====================================================
CONFIBOX | MODALCONFBUTMULAI -> MODALCONF
===================================================== */

@media (min-width: 1024px) {
  #crozwordApp #conyes,
  #crozwordApp #conno {
    box-sizing: border-box;
  }

  #crozwordApp #confibox {
    pointer-events: auto;
  }

  #crozwordApp #modalconf {
    pointer-events: auto;
  }

  #crozwordApp #modalconf .brdname_h {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #111;
  }

  /* ===============================
    OVERLAY
    =============================== */
  #crozwordApp #confibox {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    height: 100vh;
    width: 100vw;

    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;

    font-family: "Inter", sans-serif;
  }

  /* ===============================
    MODAL BOX
    =============================== */
  #crozwordApp #modalconf {
    width: 560px;
    height: 442px;
    /* margin-top: 150px; */

    background: #ffffff;
    border-radius: 16px;

    padding: 40px 40px 32px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    text-align: center;

    opacity: 0;
    transform: scale(0.95);
    transform-origin: center;

    font-family: "Inter", sans-serif;
  }

  /* ===============================
    QR / BOARD PREVIEW
    =============================== */
  #crozwordApp #bingk {
    width: 180px;
    height: 180px;

    background: #aee8ff;
    background-image: url(images/kompaslogobg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 130px; /* ⬅️ kontrol logo bg */

    border-radius: 24px;

    /* ⬇️ INI KUNCI CENTER */
    display: flex;
    align-items: center;
    justify-content: center;

    /* ⬇️ MATIKAN LEGACY */
    padding: 0 !important;

    margin: 0 auto 24px;
  }

  #crozwordApp #imgconfbrd {
    width: 69px;
    height: 79.5px;

    display: block;
    object-fit: contain;

    border: 1px solid #000000;

    margin: 0; /* ⬅️ jangan pakai auto */
  }

  /* ===============================
    TITLE & DESCRIPTION
    =============================== */
  #crozwordApp #brdtittlepop,
  #crozwordApp #brdtittle {
    margin: 0;
    padding: 0;
  }

  #crozwordApp #brdtittlepop {
    margin: 0 !important; /* ⬅️ ini yang ngilangin area oren */
    padding: 0;
  }

  #crozwordApp #brdtittle {
    margin: 0;
    padding: 0;
  }

  #crozwordApp .confboxplay {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111111;
  }

  #crozwordApp #brdconss {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
  }

  #crozwordApp #prgconf {
    font-size: 14px;
    line-height: 1.4;
    color: #6b7280;
    margin-top: 8px;
  }

  /* ===============================
    PRIMARY BUTTON
    =============================== */
  #crozwordApp #conyes,
  #crozwordApp .desktop-menu .headlineboard #butmulai {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
  }

  #crozwordApp #conyes {
    width: 100%;
    height: 44px;

    background: #0f79c6;
    color: #ffffff;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    margin-top: 24px;
    font-weight: 600;
  }

  /* ===============================
    SECONDARY BUTTON
    =============================== */
  #crozwordApp #conno {
    width: 100%;
    height: 44px;

    background: #ffffff;
    color: #0f79c6;

    border: 1.5px solid #0f79c6;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    /* margin-top: 12px; */
  }

  body.cw-modal-open {
    overflow: hidden;
    height: 100vh;
  }
}

/* =====================================================
   DESKTOP – HINT POPUP 
===================================================== */
@media (min-width: 1024px) {
  /* OVERLAY */
  #crozwordApp #hint-popup {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;

    font-family: "Inter", sans-serif;
  }

  #crozwordApp #hint-popup.show {
    display: flex;
  }

  /* MODAL */
  #crozwordApp #hint-modal {
    width: 560px;
    height: 402px;

    background: #ffffff;
    border-radius: 16px;

    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
  }

  /* INNER (CONTENT PADDING) */
  #crozwordApp .hint-inner {
    width: 100%;
    height: 100%;

    padding: 40px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CLOSE */
  #crozwordApp #close-hint-popup {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  /* IMAGE */
  #crozwordApp .hint-image {
    width: 200px;
    margin-top: -30px;
    height: auto;
    margin-bottom: 0px;
  }

  /* TEXT */
  #crozwordApp .hint-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
  }

  #crozwordApp .hint-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
    margin-bottom: 20px;
  }

  #crozwordApp #hint-remaining {
    font-weight: 600;
    color: #0f79c6;
  }

  /* BUTTON BASE — PIXEL LOCK */
  #crozwordApp #use-hint-btn,
  #crozwordApp .cw-btn-secondary {
    width: 512px;
    height: 44px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0; /* LOCK */
    margin: 0;

    font-size: 16px;
    font-weight: 600;
    line-height: 44px; /* LOCK HEIGHT */

    border-radius: 12px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
  }

  /* PRIMARY */
  #crozwordApp #use-hint-btn {
    background-color: #0f79c6;
    color: #ffffff;
    border: none;
    margin-bottom: 12px;
  }

  #crozwordApp #use-hint-btn:hover {
    background-color: #0d6aad;
  }

  /* SECONDARY */
  #crozwordApp .cw-btn-secondary {
    background-color: #ffffff;
    color: #0f79c6;
    border: 1.5px solid #0f79c6;
  }
}

/* =====================================================
   DESKTOP – HINT SUBSCRIPTION POPUP (FINAL, SERAGAM)
===================================================== */
@media (min-width: 1024px) {
  /* ===============================
     OVERLAY (KILL LEGACY BOTTOM SHEET)
  =============================== */
  #crozwordApp #hint-subscription-popup {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5) !important;

    display: none;
    align-items: center;
    justify-content: center;

    border-radius: 0 !important;
    box-shadow: none !important;

    transform: none !important;
    bottom: auto !important;
    left: auto !important;

    z-index: 2000;
    font-family: "Inter", sans-serif;
  }

  #crozwordApp #hint-subscription-popup.show {
    display: flex;
  }

  /* ===============================
     MODAL BOX (SAMA DENGAN HINT)
  =============================== */
  #crozwordApp #hint-subscription-modal {
    width: 560px;
    height: 402px;

    background: #ffffff;
    border-radius: 16px;

    box-sizing: border-box;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===============================
     INNER CONTENT
  =============================== */
  #crozwordApp .hint-subscription-inner {
    width: 100%;
    height: 100%;

    padding: 40px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ===============================
     CLOSE BUTTON
  =============================== */
  #crozwordApp #close-subscription-popup {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  /* ===============================
     IMAGE
  =============================== */
  #crozwordApp .hint-subscription-inner .hint-image {
    width: 180px;
    margin-top: -20px;
    height: auto;
    margin-bottom: 15px;
  }

  /* ===============================
     TEXT
  =============================== */
  #crozwordApp .hint-subscription-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    margin-top: -1px;
  }

  #crozwordApp .hint-subscription-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    margin-top: 4px;
  }

  /* ===============================
     PRIMARY BUTTON (512 x 44)
  =============================== */
  #crozwordApp .btn-primary-link {
    width: 512px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0f79c6;
    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    line-height: 44px;

    border-radius: 12px;
    border: none;

    margin-bottom: 12px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
  }

  #crozwordApp .btn-primary-link:hover {
    background-color: #0d6aad;
  }

  /* ===============================
     SECONDARY BUTTON
  =============================== */
  #crozwordApp .cw-btn-secondary {
    width: 512px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #0f79c6;

    border: 1.5px solid #0f79c6;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;
    line-height: 44px;

    cursor: pointer;
  }
}
/* =====================================================
   DESKTOP – EXIT CONFIRMATION POPUP (FINAL, SERAGAM)
   (MATCH HINT SUBSCRIPTION POPUP)
===================================================== */
@media (min-width: 1024px) {
  /* ===============================
     OVERLAY
  =============================== */
  #crozwordApp #exit-confirmation-popup {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    background: rgba(0, 0, 0, 0.5);

    display: none;
    align-items: center;
    justify-content: center;

    /* kill legacy bottom sheet */
    bottom: auto !important;
    transform: none !important;
    border-radius: 0 !important;

    z-index: 2000;
    font-family: "Inter", sans-serif;
  }

  #crozwordApp #exit-confirmation-popup.show {
    display: flex;
  }

  /* ===============================
     MODAL BOX
  =============================== */
  #crozwordApp #exit-confirmation-modal {
    width: 560px;
    height: 402px;

    background: #ffffff;
    border-radius: 16px;

    position: relative;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ===============================
     INNER CONTENT
  =============================== */
  #crozwordApp .exit-confirmation-inner {
    width: 100%;
    height: 100%;

    padding: 40px;
    padding-top: 56px; /* optical center */

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ===============================
     CLOSE BUTTON
  =============================== */
  #crozwordApp #close-exit-confirmation {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  /* ===============================
     IMAGE
  =============================== */
  #crozwordApp .exit-confirmation-inner .hint-image {
    width: 290px;
    height: auto;

    margin-top: -16px;
    margin-bottom: 16px;
  }

  /* ===============================
     TITLE & DESC
  =============================== */
  #crozwordApp .exit-confirmation-inner h2 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;

    margin: 0 0 8px;
  }

  #crozwordApp .exit-confirmation-inner p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;

    margin: 0 0 24px;
  }

  /* ===============================
     BUTTONS (512 x 44)
     REUSE SYSTEM BUTTON
  =============================== */

  #crozwordApp .btn-primary-link {
    width: 512px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0f79c6;
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
    line-height: 44px;

    border-radius: 12px;
    border: none;

    margin-bottom: 12px;
    cursor: pointer;

    padding: 0;
    appearance: none;
    -webkit-appearance: none;
  }

  #crozwordApp .btn-primary-link:hover {
    background-color: #0d6aad;
  }

  #crozwordApp .cw-btn-secondary {
    width: 512px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    color: #0f79c6;

    border: 1.5px solid #0f79c6;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;
    line-height: 44px;

    cursor: pointer;

    padding: 0;
    appearance: none;
    -webkit-appearance: none;
  }
}

/* ===============================
   OVERLAY – MODALCONF4
=============================== */
#crozwordApp #confiboxinfo {
  position: fixed;
  inset: 0;

  display: none; /* tetap dikontrol JS */
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5); /* 🔥 overlay hitam 50% */
  z-index: 2000;

  font-family: "Inter", sans-serif;
}

/* ===============================
   OVERLAY – MODALNONPREM
=============================== */
#crozwordApp #nonprem {
  position: fixed;
  inset: 0;

  display: none; /* tetap dikontrol JS */
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5); /* 🔥 overlay hitam 50% */
  z-index: 2000;

  font-family: "Inter", sans-serif;
}

/* ===============================
   WIN Animation
=============================== */
@media (min-width: 1024px) {
  body.is-ingame #crozwordApp #suksesbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    width: 1070px;
    height: 700px;

    margin: 0 auto;

    z-index: 50;
  }

  body.is-ingame #crozwordApp #sskcopy {
    top: 200px;
  }
}

@media (min-width: 1024px) {
  #crozwordApp .keyboard-info-text {
    display: none;
    margin-top: 25px;
  }

  body.is-ingame #crozwordApp .keyboard-info-text {
    display: block;
    width: 1070px;
    margin: 16px auto 0;
    font-size: 12px;
    color: #6b7280;
    margin-top: 25px;
  }

  body.is-ingame #crozwordApp .keyboard-label {
    font-weight: 600;
    color: rgb(0, 0, 0);
  }

  body.is-ingame #crozwordApp .shortcut {
    font-weight: 600;
    color: #525252;
  }

  body.is-ingame #crozwordApp .desc {
    font-weight: 400;
    color: #6b7280;
  }

  body.is-ingame #crozwordApp .keyboard-info-text {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  body.is-ingame #crozwordApp .ingame-layout {
    position: relative;
    width: 1070px;
    height: 700px;
    margin: 0 auto;
  }

  body.is-ingame #crozwordApp .confetti-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 1070px;
    height: 700px;

    pointer-events: none;
    overflow: hidden;
    z-index: 40;
  }
}

/* ===============================
   PORT INLINE STYLE (dummy-kompascom)
   Markup asli game memakai atribut style="…"; di repo ini inline style
   dilarang pada .handlebars (lint-hbs / CLAUDE.md), jadi nilainya dipindah
   ke sini apa adanya. Dua img di .headcw tidak punya hook sendiri, jadi
   diberi class cw-headcw-logo / cw-headcw-brand.
   Catatan #brdtittlepop: di >=1024px masih dimenangkan rule
   `margin: 0 !important` di atas — sama seperti perilaku inline sebelumnya.
   =============================== */
#crozwordApp #idtemp {
  display: none;
  font-size: 10px;
  text-align: center;
  opacity: 0.5;
  margin-top: 10px;
  margin-bottom: 20px;
}

#crozwordApp #brdtittlepop {
  margin-bottom: 36px;
}

#crozwordApp .headcw .cw-headcw-logo {
  width: 65px;
}

#crozwordApp .headcw .cw-headcw-brand {
  width: 80px;
}

#crozwordApp #boxinfodetail {
  font-size: 10px;
}

#crozwordApp .progress-value2 small {
  font-size: 14px;
}
