/* ── Launch Button ───────────────────────────────────────────────────── */
#fishing-game-btn {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 99990;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #1a6fa8 0%, #0d3d6b 100%);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    outline: none;
}
#fishing-game-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
#fishing-game-btn:focus-visible {
    outline: 3px solid #7ec8ff;
    outline-offset: 2px;
}

/* ── Overlay ─────────────────────────────────────────────────────────── */
#fishing-game-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99995;
    background: rgba(0, 20, 40, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
#fishing-game-overlay.fg-open {
    display: flex;
}

/* ── Modal ───────────────────────────────────────────────────────────── */
#fishing-game-modal {
    position: relative;
    background: #0a1a2e;
    border-radius: 14px;
    padding: 14px 16px 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    animation: fg-pop-in 0.2s ease;
}
@keyframes fg-pop-in {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Title ───────────────────────────────────────────────────────────── */
#fishing-game-title {
    color: #7ec8ff;
    font-size: 18px;
    margin: 0;
    font-family: inherit;
    letter-spacing: 0.04em;
}

/* ── Close button ────────────────────────────────────────────────────── */
#fishing-game-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #aad4f5;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s;
    outline: none;
}
#fishing-game-close:hover { color: #fff; }
#fishing-game-close:focus-visible { outline: 2px solid #7ec8ff; border-radius: 3px; }

/* ── Canvas ──────────────────────────────────────────────────────────── */
#fishing-game-canvas {
    display: block;
    border-radius: 8px;
    border: 2px solid #1a4a6b;
    max-width: 100%;
}

/* ── Controls legend ─────────────────────────────────────────────────── */
#fishing-game-controls {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    color: #7ec8ff;
    font-size: 12px;
    font-family: monospace;
    opacity: 0.85;
}
