/**
 * Plinko Game Styles
 * Стили для игры Plinko
 */

/* ========== ПЛАТФОРМО-ЗАВИСИМЫЕ ПОЗИЦИИ ========== */

/* По умолчанию (Default) */
#plinko-screen {
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: 
        url('../assets/bg-plinko.svg') center top / cover no-repeat fixed,
        linear-gradient(180deg, #0d0d1a 0%, #1a1035 50%, #0a0a18 100%) !important;
}

#plinko-screen header {
    top: 25px !important;
    background: transparent !important;
    padding: 8px 12px !important;
}
#plinko-screen header::before { display: none !important; }

/* iOS: настройка позиций для Plinko */
html[data-platform="ios"] #plinko-screen header {
    top: 90px !important;
}

/* Android: настройка позиций для Plinko */
html[data-platform="android"] #plinko-screen header {
    top: 60px !important;
}

/* ========== ОСНОВНОЙ ЛЕЙАУТ ========== */

.plinko-main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    padding: 45px 8px 10px 8px;
    box-sizing: border-box;
}

html[data-platform="ios"] .plinko-main {
    padding-top: 75px;
}

html[data-platform="android"] .plinko-main {
    padding-top: 55px;
}

/* Контейнер игры - занимает всё доступное место */
#plinko-game-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#plinko-canvas {
    flex: 1;
    width: 100%;
    min-height: 200px;
    max-height: calc(100vh - 280px);
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
}

html[data-platform="ios"] #plinko-canvas {
    max-height: calc(100vh - 320px);
}

/* Множители - подняты вверх чтобы входить в canvas */
#plinko-multipliers {
    position: relative;
    height: 20px;
    margin-top: -18px;
    margin-bottom: 5px;
    z-index: 5;
}

#plinko-multipliers > span {
    position: absolute;
    padding: 4px 0;
    border-radius: 0 0 3px 3px;
    text-align: center;
    font-size: 0.55rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plinko-mult-low { 
    background: #22c55e; 
    color: #fff; 
}
.plinko-mult-mid { 
    background: #eab308; 
    color: #000; 
}
.plinko-mult-high { 
    background: #ef4444; 
    color: #fff; 
}

/* Блок управления */
.plinko-controls {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.plinko-settings {
    padding: 8px !important;
}

/* ========== ИГРОВЫЕ СТИЛИ ========== */

/* Plinko кнопки настроек */
.plinko-balls-btn,
.plinko-rows-btn,
.plinko-risk-btn {
    transition: all 0.2s ease;
}

.plinko-balls-btn.active,
.plinko-rows-btn.active,
.plinko-risk-btn.active {
    background: #ffd700 !important;
    color: #000 !important;
    font-weight: bold;
    transform: scale(1.05);
}

.plinko-balls-btn:hover:not(.active),
.plinko-rows-btn:hover:not(.active),
.plinko-risk-btn:hover:not(.active) {
    background: #4a5568 !important;
}

/* Plinko кнопка броска */
#plinko-drop-btn {
    transition: all 0.2s ease;
}

#plinko-drop-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#plinko-drop-btn:not(:disabled):hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Plinko результат */
#plinko-result {
    min-height: 2rem;
}

#plinko-result-text {
    transition: all 0.3s ease;
}

#plinko-result-text.win { 
    color: #22c55e; 
}

#plinko-result-text.lose { 
    color: #ef4444; 
}

#plinko-result-text.jackpot { 
    color: #ffd700; 
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
    animation: plinko-jackpot 0.5s ease-in-out;
}

@keyframes plinko-jackpot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Plinko ставка */
#plinko-bet-display {
    font-variant-numeric: tabular-nums;
}

#plinko-bet-minus,
#plinko-bet-plus {
    transition: background 0.2s ease;
}

#plinko-bet-minus:hover,
#plinko-bet-plus:hover {
    background: #4a5568 !important;
}

/* Plinko контейнер игры */
#plinko-game-container {
    position: relative;
}

/* Шарик в анимации (если будет вне canvas) */
.plinko-ball {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, #ffd700);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    position: absolute;
    pointer-events: none;
}

/* Лобби карточка Plinko */
#play-plinko-btn.game-card {
    background-image: url('../content/plinko.png');
    background-image: image-set(
        url('../content/plinko.avif') type('image/avif'),
        url('../content/plinko.webp') type('image/webp'),
        url('../content/plinko.png') type('image/png')
    );
    background-size: 100%;
    background-position: center 34%;
    background-repeat: no-repeat;
    background-color: #1a1a2e;
}
