body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #18589d;
    font-family: 'Roboto Serif', serif;
}

#top-strip, #bottom-strip {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}

/* ==================== TOP STRIP ==================== */
#top-strip {
    top: 0;
    height: 43px;
    background: rgb(52, 50, 208);
    color: #faf9f9;
    justify-content: center;
    font-size: 20px;
    gap: 25px;
    /* border-bottom: 4px solid #1c04b7; */
    padding: 0 10px;   
}

#kitty-title {
    font-weight: 900;
    font-size: 30px;
    color: #ffffff;
    text-shadow: 
        -3px -3px 0 #f905e9,
         3px -3px 0 #f905e9,
        -3px  3px 0 #f905e9,
         3px  3px 0 #f905e9,
        0 0 12px #00ffff;
    letter-spacing: 8px;
}

/* ==================== BOTTOM STRIP ==================== */
#bottom-strip {
    bottom: 15px;
    height: 42px;                    /* ← Shorten / lengthen the lower hub HERE (common) */
    background: rgba(139, 69, 146, 0.65);
    border-top: 4px solid #1c04b7;
    border-bottom: 4px solid #1c04b7;
    color: #ffeeaa;
}

.bottom-content {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;                 /* ← Moves Sound button left & Expand button right (common) */
}

/* Buttons - Sound and Expand */
.kitty-button {
    width: 58px;                     /* Default size */
    height: 58px;
    font-size: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.kitty-button:active {
    transform: scale(0.9);
}

#sound-kitty { background: #ffcc88; }
#fullscreen-kitty { background: #88ffcc; }

/* Message hub text */
#message-center {
    flex: 1;
    text-align: center;
    font-size: 18px;                 /* ← Lower hub text size (common) */
    font-weight: bold;
    color: #ffeeaa;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    padding: 0 10px;
}

/* ==================== MEAL ICONS ==================== */
#meals-left, #meals-right {
    position: absolute;
    top: 52px;
    bottom: 78px;          
    width: 75px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px;
    z-index: 20;
}

#meals-left  { left: 8px; }
#meals-right { right: 134px; }

.meal-icon {
    width: 105px;                     /* ← Meal icon holder size (common) */
    height: 105px;
    background: #0e2f00;
    border: 4px solid #8B4513;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;                 /* ← Size of the food emoji itself (common) */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Meal Icons - Left and Right Sides */
#meals-left, #meals-right {
    position: absolute;
    top: 50px;
    bottom: 90px;
    width: 90px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px;
    z-index: 20;
}

#meals-left {
    left: 10px;
    align-items: flex-start;
}

#meals-right {
    right: 10px;
    align-items: flex-end;
}

/* Labels */
.meal-label {
    font-size: 15px;
    color: #ffcc77;
    margin-top: 6px;
    width: 100%;
}

#meals-left .meal-label  { text-align: left;  padding-left: 6px; }
#meals-right .meal-label { text-align: right; padding-right: 6px; }

/* ===================== ANDROID ONLY ===================== */
@media (max-width: 900px) {     

    #bottom-strip {
        bottom: 0px;                 /* ← LOWER the bar (smaller number = lower) */
        height: 24px;                /* ← Android: shorten lengthen lower hub */
    }
    .kitty-button {
        width: 13px;                 /* ← Android: button size */
        height: 13px;
        font-size: 15px;             /* ← Android: button icon size */
    }
    #message-center {
        font-size: 17px;             /* ← Android: lower hub text size */
    }
    #meals-left, #meals-right {
        bottom: 44px;                /* ← Android: space above bottom hub */
        width: 72px;                 /* ← Android: meal column width */
    }
    .meal-icon {
        width: 52px;                 /* ← Android: meal icon holder size */
        height: 30px;
        font-size: 27px;             /* ← Android: food emoji size */
    }

 /* ==================== ANDROID TOP HUB ==================== */

  #meals-left, #meals-right {
        top: 29px;           /* ← Smaller number = higher up */
        bottom: 78px;        /* you can adjust this too */
    }

    #top-strip {
        height: 16px;           /* change height */
        font-size: 10px;        /* overall text size */
        gap: 9px;              /* space between items */
        padding: 0 8px;         /* left/right padding */
    }

    #kitty-title {
        font-size: 12px;        /* title size on Android */
        letter-spacing: 2px;    /* reduce spacing on small screens */
    }

}

/* ===================== DESKTOP ONLY ===================== */
@media (min-width: 901px) {     

    .kitty-button {
        width: 55px;                /* ← Desktop: button size */
        height: 55px;
        font-size: 34px;             /* ← Desktop: button icon size */
    }
    #message-center {
        font-size: 34px;             /* ← Desktop: lower hub text size */
    }
    /* Add desktop meal sizes here if you want different from common */
    .meal-icon {
        width: 190px;                /* ← Desktop: meal icon holder size */
        height: 190px;
        font-size: 100px;             /* ← Desktop: food emoji size */
        justify-content: center;
    }
}

#top-strip, #bottom-strip,
#meals-left, #meals-right,
.meal-icon,
#message-center {
    -webkit-touch-callout: none;   /* iOS */
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
}

#message-center {
    transition: all 0.3s ease;
    text-shadow: 0 3px 8px rgba(0,0,0,0.7);
}

.kitty-button {
    transition: all 0.12s cubic-bezier(0.4, 0, 0.2, 1);
}

.meal-icon:active {
    transform: scale(0.88) rotate(8deg);
}