@font-face {
    font-family: 'Baloo Bhaijaan 2';
    src: url('../fonts/BalooBhaijaan2-Bold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
body {
    font-family: 'Baloo Bhaijaan 2', sans-serif;
}

body {
    /* background:
            url('../img/bg-every-person.png') bottom center no-repeat,
            linear-gradient(135deg, #F9F4EF 0%, #F4E2C8 40%, #D7EAE2 100%); */
    background:
            url('../img/bg-every-person.png') bottom center no-repeat, 
            linear-gradient(90deg, #F9F4EF 0%, #f5efea 40%, #fbf9f7 100%); 
    background-size: 100% auto, cover;
    background-attachment: fixed;
    color: #3d2c20;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
}

.text-brown { color: #6a4c3b; }

/* ===== HEADER CARD ===== */
.header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    margin: 25px auto 40px;
    padding: 20px 30px;
    max-width: 950px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.header-title {
    font-size: 28px;
    color: #5a4b43;
}
.back-btn {
    background: #F4A261;
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}
.back-btn:hover {
    background: #E76F51;
}

/* ===== MODAL FULLSCREEN ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: #FFF8F0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    padding: 60px 20px;
    overflow-y: auto;
}

/* Close button with Play Now colors */
.close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #F4A261;
    color: white;
    font-size: 45px;
    line-height: 50px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}
.close-btn:hover {
    background: #E76F51;
}