/* ===================================
   Kobe Basketball Game - ネコ投げ版
   =================================== */

.kobe-basketball-wrapper {
    text-align: center;
    margin: 0;
    overflow: hidden;
    cursor: grab;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    border-radius: 8px;
    box-sizing: border-box;
    background: #000;
}

.kobe-basketball-wrapper:active {
    cursor: grabbing;
}

/* ゲームキャンバス（Matter.js） */
.kobe-basketball-wrapper canvas {
    display: block;
    margin: 0 auto;
    width: 100% !important;
    height: 100% !important;
}

/* スコア表示 */
.kobe-basketball-wrapper .kobe-score {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.6em;
    opacity: 0.9;
    z-index: 1000;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    font-family: 'M PLUS Rounded 1c', 'Zhi Mang Xing', sans-serif;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Nyaa! テキスト */
.kobe-basketball-wrapper .kobe-text {
    position: absolute;
    top: 25%;
    left: 50%;
    font-size: 2em;
    opacity: 0;
    z-index: 10;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    background: none !important;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    transition: 800ms;
    transform: translate(-50%, -50%);
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 150, 50, 0.8), 0 0 40px rgba(255, 100, 0, 0.4);
}

/* 投げる人コンテナ */
.kobe-basketball-wrapper .kobe-thrower {
    position: absolute;
    bottom: 0;
    left: 20px;
    z-index: 5;
    pointer-events: none;
}
