* {
  -webkit-tap-highlight-color: transparent;
}
.no-select {
    -webkit-user-select: none;   /* Для Chrome и Android-браузеров */
    user-select: none;
    -webkit-touch-callout: none; /* Запрет системного меню при долгом нажатии */
}
html, body {
    touch-action: manipulation;
    margin: 0; padding: 0; width: 100%; height: 100%;
    overflow: hidden; background-color: #f0f0f0;
    display: flex; justify-content: center; align-items: center;
    font-family: sans-serif;
}
/* Общий счетчик кликов */
#total-counter {
    position: absolute; top: 20px; left: 20px;
    font-size: 24px; font-weight: bold; color: #555;
}
/* Панель повторок справа */
#trophy-panel {
    position: absolute; 
    top:20px;
    right: 10px; 
    bottom: 20px;
    width: 100px; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    overflow-y: auto; 
    gap: 10px;
    
    scrollbar-width: none; /* Скрываем скролл */
}
#trophy-panel::-webkit-scrollbar { display: none; }
.small-emoji { font-size: 30px; animation: pop 0.3s ease-out; }
@keyframes pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
.pulse-layer {
    animation: pulse 2s infinite ease-in-out;
    display: flex; justify-content: center; align-items: center;
}
.emoji {
    font-size: 70vmin; 
    line-height: 1.1; cursor: pointer;
    user-select: none; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block; will-change: transform;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(5px 10px 1px rgba(0,0,0,0.1)); }
    50% { transform: scale(1.05); filter: drop-shadow(15px 40px 2px rgba(0,0,0,0.2)); }
}
#total-counter{
    width: 200px;
}
.rotated { transform: rotate(360deg); }
.count{
    font-size: 14px; vertical-align: middle; opacity: 0.7;
}
.reset{
    margin-left:15px; font-size:12px; cursor:pointer; text-decoration:none; opacity:0.5;
}