/*=============== FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Fredoka:wght@300..700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --thm-font: "Bangers", sans-serif;
    --body-font: "Fredoka", sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-yellow: #FFD900;
    --color-purple: #63277E;

    /* Typography */
    --fs-h1: 1.5rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.75rem;
    --fs-smallest: 0.5rem;

    /* Font Weight */
    --fw-reg: 400;
    --fw-med: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
}

/*=============== MEDIA QUERY CSS ===============*/
@media (min-width: 992px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*=============== BASE ===============*/
html {
    scroll-behavior: smooth;
    overflow: hidden;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: var(--body-font);
}

a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-style: normal;
    line-height: 1.2;
}

img {
    vertical-align: middle;
    border-style: none;
}

p {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--thm-text);
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.text-start {
    text-align: start;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.row {
    display: flex;
}

.d-flex {
    display: flex;
}

.jc-center {
    justify-content: center;
}

.jc-start {
    justify-content: flex-start;
}

.jc-end {
    justify-content: flex-end;
}

.jc-sb {
    justify-content: space-between;
}

.ai-start {
    align-items: flex-start;
}

.ai-center {
    align-items: center;
}

.ai-end {
    align-items: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-0 {
    margin-top: 0rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.px-0 {
    padding-inline: 0;
}

.px-1 {
    padding-inline: 1rem;
}

.text-upp {
    text-transform: uppercase;
}

.w-100 {
    width: 100%;
    height: auto;
}

.img-fit {
    width: 100%;
    height: auto;
    display: block;
}

/*=============== CUSTOM CSS STARTS ===============*/

.page-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--thm-dark-blue);
}

.main-wrapper {
    position: relative;
    width: 100%;
    height: 100svh;
    max-height: 100vh;
    overflow: hidden;
}

.page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    min-height: 100dvh;
    object-fit: cover;
    z-index: 0;
}

.page-container {
    position: relative;
    z-index: 1;
}

h1.page-heading {
    color: var(--thm-white);
    font-size: var(--fs-h1);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}

h3.sub-heading {
    font-family: var(--body-font);
    color: var(--purple-light);
    font-size: var(--fs-h3);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 1rem auto;
}

.pos-rel {
    position: relative;
}

.pos-stat {
    position: static;
}

/* ========== ROTATE SCREEN START ========== */
html.rotate-lock,
body.rotate-lock {
    height: 100%;
    overflow: hidden !important;
    touch-action: none;
    /* stops touch scrolling */
}

.rotate-screen-container {
    display: none;
}

/* ========== ROTATE SCREEN END ========== */

/* ========== DESKTOP SCREEN START ========== */
.desk-screen {
    display: block;
    width: 100%;
}

.page-wrapper {
    display: none;
}

/* ========== DESKTOP SCREEN END ========== */

/* ========== HEADER START ========== */
.header {
    position: relative;
    width: 100%;
}

.yellow-top-bg {
    background-color: var(--color-yellow);
    width: 100%;
    height: 12px;
}

.header-con {
    width: 100%;
    padding: 1rem;
}

.tiger-krunch-logo img {
    width: 100px;
    height: auto;
}

.lang-drop .lang-btn {
    padding: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;

    border-radius: 5px;
    border: 1px solid var(--color-white);
    background-color: transparent;
}

.lang-btn span {
    font-size: 10px;
    line-height: 1;
    color: var(--color-white);
}

.lang-btn .lang-globe {
    width: 14px;
    height: 14px;
}

.lang-arrow {
    width: 6px;
}

.lang-drop {
    position: relative;
}

.lang-dropdown {
    display: none;
    min-width: 100px;
    position: absolute;
    top: 26px;
    right: 0;
    background: #fff;
    color: #000;
    padding: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    list-style: none;
    z-index: 9;
}

.lang-dropdown li {
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
}

.lang-dropdown li:hover {
    background: #eee;
}

.lang-drop.active .lang-dropdown {
    display: block;
}

.header-hero-hunt {
    width: 100%;
    margin-top: -62px;
}

.header-hero-hunt img {
    width: 90px;
}

/* ========== HEADER END ========== */

/* ========== HOME SCREEN START ========== */
.header-packs {
    width: 100%;
    margin-top: -56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    width: 100%;
}

/* Story CSS Start */
.story-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.story {
    display: flex;
    width: 100%;
    align-items: center;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Hover effect (optional, for desktop) */
.story:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Press/active effect */
.story:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.story * {
    color: inherit;
}

.story-image img {
    width: 122px;
    height: 122px;
    object-fit: cover;
    border: none;
}

.story-box {
    flex: 1;
    height: 85px;
    border: 2px solid var(--color-yellow);
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 16px;
    margin: 5px 0;
    box-sizing: border-box;
}

/* TEXT & FONT */
.story-title {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: var(--fw-reg);
    text-transform: uppercase;
    color: var(--color-yellow);
    margin-bottom: 3px;
    letter-spacing: 2px;
}

.story-subtitle {
    font-size: var(--fs-smallest);
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: var(--color-white);
}

/* IMAGE LEFT */
.image-left {
    flex-direction: row;
}

.image-left .story-box {
    border-left: none;
    /* remove border touching image */
}

/* IMAGE RIGHT */
.image-right {
    flex-direction: row-reverse;
}

.image-right .story-box {
    border-right: none;
    /* remove border touching image */
}

/* Story CSS End */

/* ========== HOME SCREEN END ========== */

/* Head Bar CSS Start */
.head-bar {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--color-purple);
    text-align: center;
}

.head-bar h2 {
    margin: 0;
    font-size: var(--fs-h2);
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-yellow);
    letter-spacing: 2px;
}

/* Head Bar CSS End */

/* ========== BULLYING STORIES START ========== */
.bullying-rows {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    background: transparent;
    padding-top: 4px;
}

.story-card {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    background: transparent;
    border: 2px solid var(--color-yellow);
    padding: 6px;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
    border-radius: 0;
}

/* Hover effect (desktop only) */
.story-card:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Press effect */
.story-card:active {
    transform: scale(0.94);
    opacity: 0.9;
}

.story-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.story-card h3 {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-yellow);
    letter-spacing: 0.8px;
}

/* ========== BULLYING STORIES END ========== */

/* ========== VERBAL BULLYING SCREEN START ========== */
.verbal-bullying-con {
    padding-top: 5px;
}

.back-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-yellow);
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Hover (desktop only) */
.back-btn:hover {
    transform: translateY(-1px);
}

/* Press effect */
.back-btn:active {
    transform: scale(0.88);
    opacity: 0.8;
}

.back-btn .back-btn-icon {
    width: 8px;
    height: auto;
}

.video-verbal-con {
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Bullying Video Start */
.bullying-video {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: 100%;
    border: 1px solid var(--color-yellow);
    padding: 6px;
    margin: 0 auto;
    position: relative;
}

.video-element {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--color-yellow);
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Icon size */
.video-btn img {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

/* Press effect */
.video-btn:active {
    transform: scale(0.9);
    opacity: 0.8;
}

/* Button positions */
.mute-btn {
    bottom: 10px;
    left: 10px;
}

.play-btn {
    bottom: 10px;
    right: 10px;
}

.cust-h-size {
    height: calc(100dvh - 300px);
}

/* Bullying Video End */

/* Bottom Bar Start */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 16px;
    background-color: var(--color-purple);
    gap: 30px;
}

.bottom-bar h3 {
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    font-family: var(--body-font);
    margin: 0;
}

.next-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-yellow);
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Hover (desktop only) */
.next-btn:hover {
    transform: translateY(-1px);
}

/* Press effect */
.next-btn:active {
    transform: scale(0.88);
    opacity: 0.8;
}

.next-btn .next-btn-icon {
    width: 8px;
    height: auto;
}

/* Bottom Bar End */

/* === Screen 2 Start === */
.tiger-scene {
    width: 100%;
    max-width: 265px;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
    position: relative;
}

/* Speech Box */
.speech-box {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.chat-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -68%);
    z-index: 2;

    width: 100%;
    padding: 5px 20px;
}

.chat-text p {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

/* Highlighted name */
.speech-box span {
    color: var(--color-yellow);
}

/* Pointer under the box */
.speech-pointer {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #FFA800;
    /* same border color */
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

/* Tiger image container */
.tiger-stand img {
    width: 95%;
    height: auto;
    /* margin-top: 4px; */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* === Screen 2 End === */

/* === HELP SCREEN START === */
.help-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--body-font);
    padding: 14px 0 10px 0;
}

.help-head h3 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin: 0;
    font-family: var(--body-font);
    margin-bottom: 2px;
}

.help-head p {
    font-size: 10px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: var(--color-white);
}

.help-con {
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.help-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 6px;
    border: 1px solid var(--color-yellow);
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.help-inner:active {
    transform: scale(0.95);
}

.help-img {
    width: 90px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    border: none;
}

.help-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-text p {
    max-width: 140px;
    font-family: var(--body-font);
    color: var(--color-yellow);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    margin: 0;
}

/* NAME POPUP START */
.name-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.name-popup {
    background: var(--color-purple);
    padding: 28px 22px;
    width: 90%;
    max-width: 400px;
    border: 2px solid var(--color-yellow);
    text-align: center;
    border-radius: 0;
    animation: popIn 0.2s ease;
    font-family: var(--body-font);
}

.name-popup h2 {
    font-family: var(--body-font);
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-yellow);
    margin-top: 0;
    margin-bottom: 8px;
}

.name-popup p {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.input-wrap {
    border: 2px solid var(--color-yellow);
    margin-bottom: 20px;
}

.input-wrap input {
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 1rem;
    outline: none;
    font-family: var(--body-font);
    border-radius: 0;
}

.input-wrap input::placeholder {
    color: rgb(255, 255, 255);
}

.field-label {
    display: block;
    text-align: left;
    color: var(--color-yellow);
    font-size: 1rem;
    margin-bottom: 6px;
    font-family: var(--body-font);
}

.input-wrap select {
    width: 100%;
    border: none;
    padding: 10px 40px 10px 10px;
    font-size: 1rem;
    outline: none;
    font-family: var(--body-font);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background-color: var(--color-white); */
    background-image: url("data:image/svg+xml,%3Csvg width='26' height='15' viewBox='0 0 26 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L13 13L24 2' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    cursor: pointer;
}

.btn-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn-skip {
    flex: 1;
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    padding: 10px 0;
    font-family: var(--body-font);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: var(--fw-med);
    cursor: pointer;
}

.btn-continue {
    flex: 1;
    border: none;
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 10px 0;
    font-family: var(--body-font);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: var(--fw-med);
    cursor: pointer;
}

.btn-skip:active,
.btn-continue:active {
    transform: scale(0.95);
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* NAME POPUP END */

/* === HELP SCREEN END === */

/* ========== VERBAL BULLYING SCREEN END ========== */

/* ========== REWARDS SCREEN START ========== */
.reward-card {
    width: 100%;
    position: relative;
    border: 1px solid var(--color-yellow);
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.reward-card h2 {
    color: var(--color-yellow);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.6px;
    display: inline-block;
    word-break: break-all;
    margin-top: 4px;
    margin-bottom: 10px;
}

.reward-box {
    width: 100%;
    max-width: 180px;
    box-sizing: border-box;
    background: transparent;
    padding-bottom: 80px;
}

.reward-box img {
    width: 180px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.reward-box p {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    text-align: center;
    margin: 10px 0;
}

.reward-box p span {
    color: var(--color-yellow);
}

.panel-img {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.biscuit-elements {
    width: 100%;
    height: 100%;
}

.biscuit-elements .biscuit-1 {
    position: absolute;
    top: 44px;
    left: 0;
    width: 52px;
}

.biscuit-elements .biscuit-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62px;
}

.biscuit-elements .biscuit-3 {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 68px;
}

.biscuit-elements .biscuit-4-tiger {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 116px;
}

.chocko-elements {
    width: 100%;
    height: 100%;
}

.chocko-elements .chocko-1 {
    position: absolute;
    top: 40%;
    left: 28px;
    width: 20px;
}

.chocko-elements .chocko-2 {
    position: absolute;
    bottom: 55px;
    right: 25%;
    width: 20px;
}

.chocko-elements .chocko-3 {
    position: absolute;
    top: 51px;
    right: 29px;
    width: 20px;
}

.reward-btns {
    display: flex;
    gap: 10px;
    padding-top: 14px;
}

.reward-btns button {
    flex: 1;
    padding: 10px 0;
    font-size: 1rem;
    line-height: 1;
    font-weight: var(--fw-med);
    cursor: pointer;
    font-family: var(--body-font);
}

.reward-btns button:active {
    transform: scale(0.97);
    opacity: 0.9;
}

/* Left button (outline) */
.btn-outline {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

/* Right button (solid) */
.btn-solid {
    background: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    color: var(--color-black);
}

/* ========== REWARDS SCREEN END ========== */

/* ========== SHARE STORY SCREEN START ========== */
.share-story-con {
    width: 100%;
}

.share-story-text {
    padding-top: 12px;
}

.share-story-text p {
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
}

.share-story-text p span {
    font-weight: var(--fw-bold);
    display: block;
}

.share-story-rows {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    background: transparent;
    padding-top: 16px;
}

.your-story-card {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    background: transparent;
    border: 2px solid var(--color-yellow);
    padding: 6px;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, opacity 0.15s ease;
    border-radius: 0;
}

/* Hover effect (desktop only) */
.your-story-card:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Press effect */
.your-story-card:active {
    transform: scale(0.94);
    opacity: 0.9;
}

.your-story-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.your-story-card h3 {
    margin-top: 10px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-yellow);
    letter-spacing: 0.8px;
}

/* Write Story Screen Start */
.write-story-con {
    width: 100%;
    padding-top: 12px;
}

.story-form {
    width: 100%;
    margin: 0 auto;
    font-family: var(--body-font);
    color: var(--color-white);
}

#storyInput {
    width: 100%;
    height: 138px;
    border: 2px solid var(--color-yellow);
    background: var(--color-white);
    padding: 10px;
    resize: none;
    border-radius: 0;
    color: var(--color-black);
    font-size: 13px;
    line-height: 1.2;
}

#storyInput::placeholder {
    color: rgba(0, 0, 0, 0.24);
}

.confirm-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 8px 0;
    font-size: 12px;
    font-weight: var(--fw-reg);
    border: 1px solid #E57825;
    padding: 6px;
}

/* Hide default checkbox */
.confirm-line input[type="checkbox"] {
    opacity: 0;
    width: 16px;
    height: 16px;
    position: absolute;
    cursor: pointer;
}

/* Custom checkbox box */
.confirm-line .checkmark {
    width: 27px;
    height: 16px;
    border: 1px solid var(--color-white);
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Orange box on checked */
.confirm-line input[type="checkbox"]:checked+.checkmark {
    background-color: #E57825;
    /* ORANGE */
    border-color: #E57825;
}

/* Tick mark */
.confirm-line .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

/* Show tick when checked */
.confirm-line input[type="checkbox"]:checked+.checkmark::after {
    display: block;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.safety-box {
    border: 1px solid #E57825;
    padding: 10px;
    border-radius: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.safety-box .safety-icon-img {
    width: 29px;
}

.safety-text strong {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 3px;
}

.safety-text p {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
}

#submitBtn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: var(--fw-med);
    border: none;
    border-radius: 0;
    background: #D4D4D4;
    cursor: not-allowed;
    color: #9F9F9F;
    transition: 0.2s ease-in-out;
    font-family: var(--body-font);
    margin-top: 8px;
}

#submitBtn.enabled {
    background: var(--color-yellow);
    cursor: pointer;
    color: var(--color-black);
}

/* Write Story Screen End */

/* Record Screen Start */
.record-box {
    width: 100%;
    height: 138px;
    border: 1px solid var(--color-yellow);
    padding: 10px;
    background-color: var(--color-purple);

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main inner holder */
.tap-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* Mic circle */
.mic-circle {
    width: 72px;
    height: 72px;
    background-color: #FEBC10;
    border: 2px solid #000;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mic image */
.mic-img {
    background-color: #E57825;
    border: 2px solid var(--color-black);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 10px;
}

/* Text below */
.tap-text {
    font-size: 12px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.timer {
    font-size: 12px;
    font-weight: var(--fw-reg);
    color: var(--color-white);
}

.tap-box.saved .mic-circle {
    background-color: #E57825;
}

.tap-box.saved .mic-circle .mic-img {
    border: 2px solid #e57825;
}

/* Record Screen End */

/* ========== SHARE STORY SCREEN END ========== */

/* ========== RESPONSIVE MEDIA QUERIES START ========== */

@media (min-width: 768px) {
    body {
        overflow: hidden;
    }
}

/* SMALL HEIGHT DEVICES */
@media (max-height: 620px) {

    html,
    body {
        height: auto;
        overflow-y: auto;
    }

    .main-wrapper {
        height: auto;
        min-height: 100svh;
        overflow-y: auto;
    }

    .page-wrapper {
        height: auto;
        overflow-y: auto;
    }

}

@media (max-height: 666px) {
    .tiger-krunch-logo img {
        width: 85px;
    }

    .header-packs {
        margin-top: -45px;
    }

    .header-packs .tiger-pack {
        width: 90%;
    }

    .header-hero-hunt img {
        width: 85px;
    }

    .story-image img {
        width: 112px;
        height: 112px;
    }

    .story-box {
        height: 78px;
    }

    .bullying-rows {
        max-width: 346px;
    }

    .tiger-stand img {
        width: 90%;
    }

    .help-img {
        width: 85px;
    }

    .share-story-rows {
        max-width: 346px;
    }
}

@media (max-width: 576px) {

    .page-wrapper {
        display: block;
    }

    .desk-rotate-screen {
        display: none;
    }
}

/* ========== RESPONSIVE MEDIA QUERIES END ========== */