* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--tg-theme-bg-color, #FFBD73);
    font-family: -apple-system, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: var(--tg-theme-text-color, #4a2e1a);
}

.wrapper {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.panda {
    width: 220px;
    height: 220px;
    image-rendering: pixelated;
    margin: 20px 0;
    transition: transform 0.15s ease;
}

.counter {
    background: rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: 60px;
    display: inline-block;
    margin: 20px auto;
    font-size: 1.1rem;
    font-weight: 600;
}

.counter span {
    font-size: 1.5rem;
    color: #2d6a4f;
    font-weight: 700;
}

.feed-btn {
    background: #f4a261;
    border: none;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 60px;
    cursor: pointer;
    margin: 10px 0;
    box-shadow: 0 4px 0 #b45f2b;
    color: #2c1a0f;
    width: 100%;
    transition: transform 0.1s;
}

.feed-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b45f2b;
}

.feed-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
