html {
    scroll-behavior: auto;
}

body {
    background: #212121;
    /* Sandstone Dark Charcoal */
    color: #E6E6E6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.safe-zone {
    width: 100%;
    margin: 0 auto;
    padding: 2% 5% 5% 5%;
    /* %5 safe zone padding */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@font-face {
    font-family: 'KuranHatti';
    src: url('/static/fonts/ShaikhHamdullahMushaf.ttf') format('truetype');
}

.okuma-alani {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    margin-top: 60px;
}

.arapca {
    font-family: 'KuranHatti', serif;
    font-size: 180px;
    color: #30AD6B;
    /* LG Standard Success Green */
    direction: rtl;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 20px;
    word-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
}

.meal {
    font-size: 100px;
    color: #EA9703;
    /* LG Standard Warning/Gold */
    line-height: 1.4;
    padding: 40px 20px;
    border-top: 2px solid #444;
    width: 100%;
    word-wrap: break-word;
    display: none;
    box-sizing: border-box;
}

.info-overlay {
    position: fixed;
    top: 40px;
    right: 60px;
    font-size: 40px;
    color: #ABAEB3;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 30px;
    border-radius: 40px;
    /* Pill-shaped */
    z-index: 100;
}

.page-overlay {
    position: fixed;
    top: 40px;
    left: 60px;
    font-size: 40px;
    color: #ABAEB3;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 30px;
    border-radius: 40px;
    /* Pill-shaped */
    z-index: 100;
}

#menuOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.menu-content {
    background: #212121;
    padding: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 700px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

label {
    font-size: 40px;
    color: #ABAEB3;
    font-weight: 700;
}

input {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    width: 350px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 4px solid transparent;
    padding: 20px;
    border-radius: 50px;
    /* Fully Rounded */
    transition: all 0.2s;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

button {
    font-family: 'Montserrat', sans-serif;
    font-size: 45px;
    padding: 25px 80px;
    background: #30AD6B;
    color: #fff;
    font-weight: bold;
    border: 4px solid transparent;
    cursor: pointer;
    border-radius: 60px;
    /* Fully Rounded */
    transition: all 0.2s ease-out;
}

button:focus,
input:focus {
    outline: none;
    background: #E6E6E6;
    color: #000;
    border-color: #fff;
    transform: scale(1.08);
    /* Enact style scaling */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

#btnKapat {
    background: #4D4D4D;
}

#btnKapat:focus {
    background: #E6E6E6;
    color: #000;
}

.hint {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 30px;
    color: #7D7E82;
    background: linear-gradient(to top, rgba(33, 33, 33, 1), rgba(33, 33, 33, 0));
    padding: 30px 0;
    z-index: 100;
}